Class: Google::Cloud::Bigquery::Table::Updater
- Inherits:
-
Google::Cloud::Bigquery::Table
- Object
- Google::Cloud::Bigquery::Table
- Google::Cloud::Bigquery::Table::Updater
- Defined in:
- lib/google/cloud/bigquery/table.rb
Overview
Yielded to a block to accumulate changes for a patch request.
Lifecycle collapse
-
#updates ⇒ Object
readonly
A list of attributes that were updated.
Lifecycle collapse
-
#initialize(gapi) ⇒ Updater
constructor
Create an Updater object.
Schema collapse
-
#boolean(name, description: nil, mode: :nullable) ⇒ Object
Adds a boolean field to the schema.
-
#check_for_mutated_schema! ⇒ Object
Make sure any access changes are saved.
-
#float(name, description: nil, mode: :nullable) ⇒ Object
Adds a floating-point number field to the schema.
-
#integer(name, description: nil, mode: :nullable) ⇒ Object
Adds an integer field to the schema.
-
#record(name, description: nil, mode: nil) {|nested_schema| ... } ⇒ Object
Adds a record field to the schema.
-
#schema(replace: false) {|schema| ... } ⇒ Google::Cloud::Bigquery::Schema
Returns the table's schema.
-
#string(name, description: nil, mode: :nullable) ⇒ Object
Adds a string field to the schema.
-
#timestamp(name, description: nil, mode: :nullable) ⇒ Object
Adds a timestamp field to the schema.
- #to_gapi ⇒ Object
Methods inherited from Google::Cloud::Bigquery::Table
#api_url, #bytes_count, #copy, #created_at, #data, #dataset_id, #delete, #description, #description=, #etag, #expires_at, #extract, #fields, #headers, #id, #insert, #load, #location, #modified_at, #name, #name=, #project_id, #query_id, #reload!, #rows_count, #table?, #table_id, #view?
Constructor Details
#initialize(gapi) ⇒ Updater
Create an Updater object.
854 855 856 857 858 |
# File 'lib/google/cloud/bigquery/table.rb', line 854 def initialize gapi @updates = [] @gapi = gapi @schema = nil end |
Instance Attribute Details
#updates ⇒ Object (readonly)
A list of attributes that were updated.
850 851 852 |
# File 'lib/google/cloud/bigquery/table.rb', line 850 def updates @updates end |
Instance Method Details
#boolean(name, description: nil, mode: :nullable) ⇒ Object
Adds a boolean field to the schema.
See Schema#boolean.
1018 1019 1020 |
# File 'lib/google/cloud/bigquery/table.rb', line 1018 def boolean name, description: nil, mode: :nullable schema.boolean name, description: description, mode: mode end |
#check_for_mutated_schema! ⇒ Object
Make sure any access changes are saved
1090 1091 1092 1093 1094 1095 1096 |
# File 'lib/google/cloud/bigquery/table.rb', line 1090 def check_for_mutated_schema! return if @schema.nil? @schema.check_for_mutated_schema! return unless @schema.changed? @gapi.schema = @schema.to_gapi patch_gapi! :schema end |
#float(name, description: nil, mode: :nullable) ⇒ Object
Adds a floating-point number field to the schema.
See Schema#float.
990 991 992 |
# File 'lib/google/cloud/bigquery/table.rb', line 990 def float name, description: nil, mode: :nullable schema.float name, description: description, mode: mode end |
#integer(name, description: nil, mode: :nullable) ⇒ Object
Adds an integer field to the schema.
See Schema#integer.
962 963 964 |
# File 'lib/google/cloud/bigquery/table.rb', line 962 def integer name, description: nil, mode: :nullable schema.integer name, description: description, mode: mode end |
#record(name, description: nil, mode: nil) {|nested_schema| ... } ⇒ Object
Adds a record field to the schema. A block must be passed describing the nested fields of the record. For more information about nested and repeated records, see Preparing Data for BigQuery .
See Schema#record.
1084 1085 1086 |
# File 'lib/google/cloud/bigquery/table.rb', line 1084 def record name, description: nil, mode: nil, &block schema.record name, description: description, mode: mode, &block end |
#schema(replace: false) {|schema| ... } ⇒ Google::Cloud::Bigquery::Schema
Returns the table's schema. This method can also be used to set, replace, or add to the schema by passing a block. See Schema for available methods.
894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 |
# File 'lib/google/cloud/bigquery/table.rb', line 894 def schema replace: false # Same as Table#schema, but not frozen # TODO: make sure to call ensure_full_data! on Dataset#update @schema ||= Schema.from_gapi @gapi.schema if block_given? if replace @schema = Schema.from_gapi \ Google::Apis::BigqueryV2::TableSchema.new(fields: []) end yield @schema check_for_mutated_schema! end # Do not freeze on updater, allow modifications @schema end |
#string(name, description: nil, mode: :nullable) ⇒ Object
Adds a string field to the schema.
See Schema#string.
934 935 936 |
# File 'lib/google/cloud/bigquery/table.rb', line 934 def string name, description: nil, mode: :nullable schema.string name, description: description, mode: mode end |
#timestamp(name, description: nil, mode: :nullable) ⇒ Object
Adds a timestamp field to the schema.
See Schema#timestamp.
1046 1047 1048 |
# File 'lib/google/cloud/bigquery/table.rb', line 1046 def name, description: nil, mode: :nullable schema. name, description: description, mode: mode end |
#to_gapi ⇒ Object
1098 1099 1100 1101 |
# File 'lib/google/cloud/bigquery/table.rb', line 1098 def to_gapi check_for_mutated_schema! @gapi end |