google-apis-bigquery_v2 0.14.0 → 0.18.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 1a4653c7423f2b5a5c57fd9a1c9e8929254715a8a5b94d06f366b70e23451b31
4
- data.tar.gz: e7120403ea5d46bc7875d0d4b7f8f7f0653669a8821c29b548568a41f50c2210
3
+ metadata.gz: 6c082777d1a37ba7df706c5336f96162243eb74a9c7d4edde72bc2f361597936
4
+ data.tar.gz: 0ce0a5e5a816b2a6c04c5dcbb92a3dc6fd4e1bdfdf20ec11acadc9b9237c938e
5
5
  SHA512:
6
- metadata.gz: b92f1746473036f8161c1275e6a09feff1c1d35a7b1812b926f7e3574d7789a4ae0679b7b9952f9fbbb3411792cdb705ca5cee6eaad75f5ef81c03b48d0a4dd4
7
- data.tar.gz: cc20dfeb62e89fbed175602ed0cbac4a4ec455a30f8ba80a0269e192adfcf80e138e3dcf8c29c0dbfa78b4fb424388a86b7016d91927685fe65fb45b703e4fb3
6
+ metadata.gz: b8fe4c55df36369dd41395201c9104f89e5f938c68fecc99b3e6f42082bf7a60e9e7f7c6a7e59a097be533c1888f00667b7ea87522681e0ef44b2b3b5866d1a2
7
+ data.tar.gz: be656d8f9db8c9d97b7795abd3d05f84ab9f728ae10e87d98b3b254341eab84b94b21a0aa7c5a9ef22659f07086f1a2cb73dc5fc9d51d074906e7e6773a73e43
data/CHANGELOG.md CHANGED
@@ -1,5 +1,21 @@
1
1
  # Release history for google-apis-bigquery_v2
2
2
 
3
+ ### v0.18.0 (2021-09-21)
4
+
5
+ * Regenerated from discovery document revision 20210910
6
+
7
+ ### v0.17.0 (2021-09-10)
8
+
9
+ * Regenerated from discovery document revision 20210904
10
+
11
+ ### v0.16.0 (2021-09-02)
12
+
13
+ * Regenerated from discovery document revision 20210828
14
+
15
+ ### v0.15.0 (2021-06-29)
16
+
17
+ * Regenerated using generator version 0.4.0
18
+
3
19
  ### v0.14.0 (2021-06-27)
4
20
 
5
21
  * Regenerated from discovery document revision 20210617
@@ -537,6 +537,28 @@ module Google
537
537
  end
538
538
  end
539
539
 
540
+ #
541
+ class AvroOptions
542
+ include Google::Apis::Core::Hashable
543
+
544
+ # [Optional] If sourceFormat is set to "AVRO", indicates whether to interpret
545
+ # logical types as the corresponding BigQuery data type (for example, TIMESTAMP),
546
+ # instead of using the raw type (for example, INTEGER).
547
+ # Corresponds to the JSON property `useAvroLogicalTypes`
548
+ # @return [Boolean]
549
+ attr_accessor :use_avro_logical_types
550
+ alias_method :use_avro_logical_types?, :use_avro_logical_types
551
+
552
+ def initialize(**args)
553
+ update!(**args)
554
+ end
555
+
556
+ # Update properties of this object
557
+ def update!(**args)
558
+ @use_avro_logical_types = args[:use_avro_logical_types] if args.key?(:use_avro_logical_types)
559
+ end
560
+ end
561
+
540
562
  #
541
563
  class BiEngineReason
542
564
  include Google::Apis::Core::Hashable
@@ -1387,6 +1409,12 @@ module Google
1387
1409
  # @return [String]
1388
1410
  attr_accessor :field_delimiter
1389
1411
 
1412
+ # [Optional] An custom string that will represent a NULL value in CSV import
1413
+ # data.
1414
+ # Corresponds to the JSON property `null_marker`
1415
+ # @return [String]
1416
+ attr_accessor :null_marker
1417
+
1390
1418
  # [Optional] The value that is used to quote data sections in a CSV file.
1391
1419
  # BigQuery converts the string to ISO-8859-1 encoding, and then uses the first
1392
1420
  # byte of the encoded string to split the data in its raw, binary state. The
@@ -1423,6 +1451,7 @@ module Google
1423
1451
  @allow_quoted_newlines = args[:allow_quoted_newlines] if args.key?(:allow_quoted_newlines)
1424
1452
  @encoding = args[:encoding] if args.key?(:encoding)
1425
1453
  @field_delimiter = args[:field_delimiter] if args.key?(:field_delimiter)
1454
+ @null_marker = args[:null_marker] if args.key?(:null_marker)
1426
1455
  @quote = args[:quote] if args.key?(:quote)
1427
1456
  @skip_leading_rows = args[:skip_leading_rows] if args.key?(:skip_leading_rows)
1428
1457
  end
@@ -1481,6 +1510,11 @@ module Google
1481
1510
  # @return [Google::Apis::BigqueryV2::DatasetReference]
1482
1511
  attr_accessor :dataset_reference
1483
1512
 
1513
+ # [Output-only] The default collation of the dataset.
1514
+ # Corresponds to the JSON property `defaultCollation`
1515
+ # @return [String]
1516
+ attr_accessor :default_collation
1517
+
1484
1518
  #
1485
1519
  # Corresponds to the JSON property `defaultEncryptionConfiguration`
1486
1520
  # @return [Google::Apis::BigqueryV2::EncryptionConfiguration]
@@ -1539,6 +1573,12 @@ module Google
1539
1573
  # @return [String]
1540
1574
  attr_accessor :id
1541
1575
 
1576
+ # [Optional] Indicates if table names are case insensitive in the dataset.
1577
+ # Corresponds to the JSON property `isCaseInsensitive`
1578
+ # @return [Boolean]
1579
+ attr_accessor :is_case_insensitive
1580
+ alias_method :is_case_insensitive?, :is_case_insensitive
1581
+
1542
1582
  # [Output-only] The resource type.
1543
1583
  # Corresponds to the JSON property `kind`
1544
1584
  # @return [String]
@@ -1584,6 +1624,7 @@ module Google
1584
1624
  @access = args[:access] if args.key?(:access)
1585
1625
  @creation_time = args[:creation_time] if args.key?(:creation_time)
1586
1626
  @dataset_reference = args[:dataset_reference] if args.key?(:dataset_reference)
1627
+ @default_collation = args[:default_collation] if args.key?(:default_collation)
1587
1628
  @default_encryption_configuration = args[:default_encryption_configuration] if args.key?(:default_encryption_configuration)
1588
1629
  @default_partition_expiration_ms = args[:default_partition_expiration_ms] if args.key?(:default_partition_expiration_ms)
1589
1630
  @default_table_expiration_ms = args[:default_table_expiration_ms] if args.key?(:default_table_expiration_ms)
@@ -1591,6 +1632,7 @@ module Google
1591
1632
  @etag = args[:etag] if args.key?(:etag)
1592
1633
  @friendly_name = args[:friendly_name] if args.key?(:friendly_name)
1593
1634
  @id = args[:id] if args.key?(:id)
1635
+ @is_case_insensitive = args[:is_case_insensitive] if args.key?(:is_case_insensitive)
1594
1636
  @kind = args[:kind] if args.key?(:kind)
1595
1637
  @labels = args[:labels] if args.key?(:labels)
1596
1638
  @last_modified_time = args[:last_modified_time] if args.key?(:last_modified_time)
@@ -2350,6 +2392,11 @@ module Google
2350
2392
  attr_accessor :autodetect
2351
2393
  alias_method :autodetect?, :autodetect
2352
2394
 
2395
+ # Additional properties to set if sourceFormat is set to Avro.
2396
+ # Corresponds to the JSON property `avroOptions`
2397
+ # @return [Google::Apis::BigqueryV2::AvroOptions]
2398
+ attr_accessor :avro_options
2399
+
2353
2400
  # [Optional] Additional options if sourceFormat is set to BIGTABLE.
2354
2401
  # Corresponds to the JSON property `bigtableOptions`
2355
2402
  # @return [Google::Apis::BigqueryV2::BigtableOptions]
@@ -2466,6 +2513,7 @@ module Google
2466
2513
  # Update properties of this object
2467
2514
  def update!(**args)
2468
2515
  @autodetect = args[:autodetect] if args.key?(:autodetect)
2516
+ @avro_options = args[:avro_options] if args.key?(:avro_options)
2469
2517
  @bigtable_options = args[:bigtable_options] if args.key?(:bigtable_options)
2470
2518
  @compression = args[:compression] if args.key?(:compression)
2471
2519
  @connection_id = args[:connection_id] if args.key?(:connection_id)
@@ -3311,9 +3359,9 @@ module Google
3311
3359
  # @return [Google::Apis::BigqueryV2::TimePartitioning]
3312
3360
  attr_accessor :time_partitioning
3313
3361
 
3314
- # [Optional] If sourceFormat is set to "AVRO", indicates whether to enable
3315
- # interpreting logical types into their corresponding types (ie. TIMESTAMP),
3316
- # instead of only using their raw types (ie. INTEGER).
3362
+ # [Optional] If sourceFormat is set to "AVRO", indicates whether to interpret
3363
+ # logical types as the corresponding BigQuery data type (for example, TIMESTAMP),
3364
+ # instead of using the raw type (for example, INTEGER).
3317
3365
  # Corresponds to the JSON property `useAvroLogicalTypes`
3318
3366
  # @return [Boolean]
3319
3367
  attr_accessor :use_avro_logical_types
@@ -4754,7 +4802,7 @@ module Google
4754
4802
  # resourcemanager.organizationAdmin - members: - user:eve@example.com role:
4755
4803
  # roles/resourcemanager.organizationViewer condition: title: expirable access
4756
4804
  # description: Does not grant access after Sep 2020 expression: request.time <
4757
- # timestamp('2020-10-01T00:00:00.000Z') - etag: BwWWja0YfJA= - version: 3 For a
4805
+ # timestamp('2020-10-01T00:00:00.000Z') etag: BwWWja0YfJA= version: 3 For a
4758
4806
  # description of IAM and its features, see the [IAM documentation](https://cloud.
4759
4807
  # google.com/iam/docs/).
4760
4808
  class Policy
@@ -5291,9 +5339,9 @@ module Google
5291
5339
  attr_accessor :schema
5292
5340
 
5293
5341
  # [Output-only] [Preview] Information of the session if this job is part of one.
5294
- # Corresponds to the JSON property `sessionInfoTemplate`
5342
+ # Corresponds to the JSON property `sessionInfo`
5295
5343
  # @return [Google::Apis::BigqueryV2::SessionInfo]
5296
- attr_accessor :session_info_template
5344
+ attr_accessor :session_info
5297
5345
 
5298
5346
  # The total number of bytes processed for this query. If this query was a dry
5299
5347
  # run, this is the number of bytes that would be processed if the query were run.
@@ -5323,7 +5371,7 @@ module Google
5323
5371
  @page_token = args[:page_token] if args.key?(:page_token)
5324
5372
  @rows = args[:rows] if args.key?(:rows)
5325
5373
  @schema = args[:schema] if args.key?(:schema)
5326
- @session_info_template = args[:session_info_template] if args.key?(:session_info_template)
5374
+ @session_info = args[:session_info] if args.key?(:session_info)
5327
5375
  @total_bytes_processed = args[:total_bytes_processed] if args.key?(:total_bytes_processed)
5328
5376
  @total_rows = args[:total_rows] if args.key?(:total_rows)
5329
5377
  end
@@ -5549,13 +5597,12 @@ module Google
5549
5597
  # @return [String]
5550
5598
  attr_accessor :definition_body
5551
5599
 
5552
- # Optional. [Experimental] The description of the routine if defined.
5600
+ # Optional. The description of the routine, if defined.
5553
5601
  # Corresponds to the JSON property `description`
5554
5602
  # @return [String]
5555
5603
  attr_accessor :description
5556
5604
 
5557
- # Optional. [Experimental] The determinism level of the JavaScript UDF if
5558
- # defined.
5605
+ # Optional. The determinism level of the JavaScript UDF, if defined.
5559
5606
  # Corresponds to the JSON property `determinismLevel`
5560
5607
  # @return [String]
5561
5608
  attr_accessor :determinism_level
@@ -5605,6 +5652,16 @@ module Google
5605
5652
  # @return [String]
5606
5653
  attr_accessor :routine_type
5607
5654
 
5655
+ # Optional. Can be set for procedures only. If true (default), the definition
5656
+ # body will be validated in the creation and the updates of the procedure. For
5657
+ # procedures with an argument of ANY TYPE, the definition body validtion is not
5658
+ # supported at creation/update time, and thus this field must be set to false
5659
+ # explicitly.
5660
+ # Corresponds to the JSON property `strictMode`
5661
+ # @return [Boolean]
5662
+ attr_accessor :strict_mode
5663
+ alias_method :strict_mode?, :strict_mode
5664
+
5608
5665
  def initialize(**args)
5609
5666
  update!(**args)
5610
5667
  end
@@ -5624,6 +5681,7 @@ module Google
5624
5681
  @return_type = args[:return_type] if args.key?(:return_type)
5625
5682
  @routine_reference = args[:routine_reference] if args.key?(:routine_reference)
5626
5683
  @routine_type = args[:routine_type] if args.key?(:routine_type)
5684
+ @strict_mode = args[:strict_mode] if args.key?(:strict_mode)
5627
5685
  end
5628
5686
  end
5629
5687
 
@@ -5917,7 +5975,7 @@ module Google
5917
5975
  # resourcemanager.organizationAdmin - members: - user:eve@example.com role:
5918
5976
  # roles/resourcemanager.organizationViewer condition: title: expirable access
5919
5977
  # description: Does not grant access after Sep 2020 expression: request.time <
5920
- # timestamp('2020-10-01T00:00:00.000Z') - etag: BwWWja0YfJA= - version: 3 For a
5978
+ # timestamp('2020-10-01T00:00:00.000Z') etag: BwWWja0YfJA= version: 3 For a
5921
5979
  # description of IAM and its features, see the [IAM documentation](https://cloud.
5922
5980
  # google.com/iam/docs/).
5923
5981
  # Corresponds to the JSON property `policy`
@@ -6123,6 +6181,11 @@ module Google
6123
6181
  # @return [Fixnum]
6124
6182
  attr_accessor :creation_time
6125
6183
 
6184
+ # [Output-only] The default collation of the table.
6185
+ # Corresponds to the JSON property `defaultCollation`
6186
+ # @return [String]
6187
+ attr_accessor :default_collation
6188
+
6126
6189
  # [Optional] A user-friendly description of this table.
6127
6190
  # Corresponds to the JSON property `description`
6128
6191
  # @return [String]
@@ -6299,6 +6362,7 @@ module Google
6299
6362
  def update!(**args)
6300
6363
  @clustering = args[:clustering] if args.key?(:clustering)
6301
6364
  @creation_time = args[:creation_time] if args.key?(:creation_time)
6365
+ @default_collation = args[:default_collation] if args.key?(:default_collation)
6302
6366
  @description = args[:description] if args.key?(:description)
6303
6367
  @encryption_configuration = args[:encryption_configuration] if args.key?(:encryption_configuration)
6304
6368
  @etag = args[:etag] if args.key?(:etag)
@@ -6532,6 +6596,12 @@ module Google
6532
6596
  # @return [Google::Apis::BigqueryV2::TableFieldSchema::Categories]
6533
6597
  attr_accessor :categories
6534
6598
 
6599
+ # Optional. Collation specification of the field. It only can be set on string
6600
+ # type field.
6601
+ # Corresponds to the JSON property `collationSpec`
6602
+ # @return [String]
6603
+ attr_accessor :collation_spec
6604
+
6535
6605
  # [Optional] The field description. The maximum length is 1,024 characters.
6536
6606
  # Corresponds to the JSON property `description`
6537
6607
  # @return [String]
@@ -6612,6 +6682,7 @@ module Google
6612
6682
  # Update properties of this object
6613
6683
  def update!(**args)
6614
6684
  @categories = args[:categories] if args.key?(:categories)
6685
+ @collation_spec = args[:collation_spec] if args.key?(:collation_spec)
6615
6686
  @description = args[:description] if args.key?(:description)
6616
6687
  @fields = args[:fields] if args.key?(:fields)
6617
6688
  @max_length = args[:max_length] if args.key?(:max_length)
@@ -6998,12 +7069,37 @@ module Google
6998
7069
  # @return [Fixnum]
6999
7070
  attr_accessor :batch_size
7000
7071
 
7072
+ # Booster type for boosted tree models.
7073
+ # Corresponds to the JSON property `boosterType`
7074
+ # @return [String]
7075
+ attr_accessor :booster_type
7076
+
7001
7077
  # If true, clean spikes and dips in the input time series.
7002
7078
  # Corresponds to the JSON property `cleanSpikesAndDips`
7003
7079
  # @return [Boolean]
7004
7080
  attr_accessor :clean_spikes_and_dips
7005
7081
  alias_method :clean_spikes_and_dips?, :clean_spikes_and_dips
7006
7082
 
7083
+ # Subsample ratio of columns for each level for boosted tree models.
7084
+ # Corresponds to the JSON property `colsampleBylevel`
7085
+ # @return [Float]
7086
+ attr_accessor :colsample_bylevel
7087
+
7088
+ # Subsample ratio of columns for each node(split) for boosted tree models.
7089
+ # Corresponds to the JSON property `colsampleBynode`
7090
+ # @return [Float]
7091
+ attr_accessor :colsample_bynode
7092
+
7093
+ # Subsample ratio of columns when constructing each tree for boosted tree models.
7094
+ # Corresponds to the JSON property `colsampleBytree`
7095
+ # @return [Float]
7096
+ attr_accessor :colsample_bytree
7097
+
7098
+ # Type of normalization algorithm for boosted tree models using dart booster.
7099
+ # Corresponds to the JSON property `dartNormalizeType`
7100
+ # @return [String]
7101
+ attr_accessor :dart_normalize_type
7102
+
7007
7103
  # The data frequency of a time series.
7008
7104
  # Corresponds to the JSON property `dataFrequency`
7009
7105
  # @return [String]
@@ -7164,6 +7260,11 @@ module Google
7164
7260
  # @return [Float]
7165
7261
  attr_accessor :min_split_loss
7166
7262
 
7263
+ # Minimum sum of instance weight needed in a child for boosted tree models.
7264
+ # Corresponds to the JSON property `minTreeChildWeight`
7265
+ # @return [Fixnum]
7266
+ attr_accessor :min_tree_child_weight
7267
+
7167
7268
  # Google Cloud Storage URI from which the model was imported. Only applicable
7168
7269
  # for imported models.
7169
7270
  # Corresponds to the JSON property `modelUri`
@@ -7185,6 +7286,12 @@ module Google
7185
7286
  # @return [Fixnum]
7186
7287
  attr_accessor :num_factors
7187
7288
 
7289
+ # Number of parallel trees constructed during each iteration for boosted tree
7290
+ # models.
7291
+ # Corresponds to the JSON property `numParallelTree`
7292
+ # @return [Fixnum]
7293
+ attr_accessor :num_parallel_tree
7294
+
7188
7295
  # Optimization strategy for training linear regression models.
7189
7296
  # Corresponds to the JSON property `optimizationStrategy`
7190
7297
  # @return [String]
@@ -7224,6 +7331,11 @@ module Google
7224
7331
  # @return [String]
7225
7332
  attr_accessor :time_series_timestamp_column
7226
7333
 
7334
+ # Tree construction algorithm for boosted tree models.
7335
+ # Corresponds to the JSON property `treeMethod`
7336
+ # @return [String]
7337
+ attr_accessor :tree_method
7338
+
7227
7339
  # User column specified for matrix factorization models.
7228
7340
  # Corresponds to the JSON property `userColumn`
7229
7341
  # @return [String]
@@ -7250,7 +7362,12 @@ module Google
7250
7362
  @auto_arima = args[:auto_arima] if args.key?(:auto_arima)
7251
7363
  @auto_arima_max_order = args[:auto_arima_max_order] if args.key?(:auto_arima_max_order)
7252
7364
  @batch_size = args[:batch_size] if args.key?(:batch_size)
7365
+ @booster_type = args[:booster_type] if args.key?(:booster_type)
7253
7366
  @clean_spikes_and_dips = args[:clean_spikes_and_dips] if args.key?(:clean_spikes_and_dips)
7367
+ @colsample_bylevel = args[:colsample_bylevel] if args.key?(:colsample_bylevel)
7368
+ @colsample_bynode = args[:colsample_bynode] if args.key?(:colsample_bynode)
7369
+ @colsample_bytree = args[:colsample_bytree] if args.key?(:colsample_bytree)
7370
+ @dart_normalize_type = args[:dart_normalize_type] if args.key?(:dart_normalize_type)
7254
7371
  @data_frequency = args[:data_frequency] if args.key?(:data_frequency)
7255
7372
  @data_split_column = args[:data_split_column] if args.key?(:data_split_column)
7256
7373
  @data_split_eval_fraction = args[:data_split_eval_fraction] if args.key?(:data_split_eval_fraction)
@@ -7279,10 +7396,12 @@ module Google
7279
7396
  @max_tree_depth = args[:max_tree_depth] if args.key?(:max_tree_depth)
7280
7397
  @min_relative_progress = args[:min_relative_progress] if args.key?(:min_relative_progress)
7281
7398
  @min_split_loss = args[:min_split_loss] if args.key?(:min_split_loss)
7399
+ @min_tree_child_weight = args[:min_tree_child_weight] if args.key?(:min_tree_child_weight)
7282
7400
  @model_uri = args[:model_uri] if args.key?(:model_uri)
7283
7401
  @non_seasonal_order = args[:non_seasonal_order] if args.key?(:non_seasonal_order)
7284
7402
  @num_clusters = args[:num_clusters] if args.key?(:num_clusters)
7285
7403
  @num_factors = args[:num_factors] if args.key?(:num_factors)
7404
+ @num_parallel_tree = args[:num_parallel_tree] if args.key?(:num_parallel_tree)
7286
7405
  @optimization_strategy = args[:optimization_strategy] if args.key?(:optimization_strategy)
7287
7406
  @preserve_input_structs = args[:preserve_input_structs] if args.key?(:preserve_input_structs)
7288
7407
  @subsample = args[:subsample] if args.key?(:subsample)
@@ -7290,6 +7409,7 @@ module Google
7290
7409
  @time_series_id_column = args[:time_series_id_column] if args.key?(:time_series_id_column)
7291
7410
  @time_series_id_columns = args[:time_series_id_columns] if args.key?(:time_series_id_columns)
7292
7411
  @time_series_timestamp_column = args[:time_series_timestamp_column] if args.key?(:time_series_timestamp_column)
7412
+ @tree_method = args[:tree_method] if args.key?(:tree_method)
7293
7413
  @user_column = args[:user_column] if args.key?(:user_column)
7294
7414
  @wals_alpha = args[:wals_alpha] if args.key?(:wals_alpha)
7295
7415
  @warm_start = args[:warm_start] if args.key?(:warm_start)
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module BigqueryV2
18
18
  # Version of the google-apis-bigquery_v2 gem
19
- GEM_VERSION = "0.14.0"
19
+ GEM_VERSION = "0.18.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.3.0"
22
+ GENERATOR_VERSION = "0.4.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20210617"
25
+ REVISION = "20210910"
26
26
  end
27
27
  end
28
28
  end
@@ -88,6 +88,12 @@ module Google
88
88
  include Google::Apis::Core::JsonObjectSupport
89
89
  end
90
90
 
91
+ class AvroOptions
92
+ class Representation < Google::Apis::Core::JsonRepresentation; end
93
+
94
+ include Google::Apis::Core::JsonObjectSupport
95
+ end
96
+
91
97
  class BiEngineReason
92
98
  class Representation < Google::Apis::Core::JsonRepresentation; end
93
99
 
@@ -996,6 +1002,13 @@ module Google
996
1002
  end
997
1003
  end
998
1004
 
1005
+ class AvroOptions
1006
+ # @private
1007
+ class Representation < Google::Apis::Core::JsonRepresentation
1008
+ property :use_avro_logical_types, as: 'useAvroLogicalTypes'
1009
+ end
1010
+ end
1011
+
999
1012
  class BiEngineReason
1000
1013
  # @private
1001
1014
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1207,6 +1220,7 @@ module Google
1207
1220
  property :allow_quoted_newlines, as: 'allowQuotedNewlines'
1208
1221
  property :encoding, as: 'encoding'
1209
1222
  property :field_delimiter, as: 'fieldDelimiter'
1223
+ property :null_marker, as: 'null_marker'
1210
1224
  property :quote, as: 'quote'
1211
1225
  property :skip_leading_rows, :numeric_string => true, as: 'skipLeadingRows'
1212
1226
  end
@@ -1230,6 +1244,7 @@ module Google
1230
1244
  property :creation_time, :numeric_string => true, as: 'creationTime'
1231
1245
  property :dataset_reference, as: 'datasetReference', class: Google::Apis::BigqueryV2::DatasetReference, decorator: Google::Apis::BigqueryV2::DatasetReference::Representation
1232
1246
 
1247
+ property :default_collation, as: 'defaultCollation'
1233
1248
  property :default_encryption_configuration, as: 'defaultEncryptionConfiguration', class: Google::Apis::BigqueryV2::EncryptionConfiguration, decorator: Google::Apis::BigqueryV2::EncryptionConfiguration::Representation
1234
1249
 
1235
1250
  property :default_partition_expiration_ms, :numeric_string => true, as: 'defaultPartitionExpirationMs'
@@ -1238,6 +1253,7 @@ module Google
1238
1253
  property :etag, as: 'etag'
1239
1254
  property :friendly_name, as: 'friendlyName'
1240
1255
  property :id, as: 'id'
1256
+ property :is_case_insensitive, as: 'isCaseInsensitive'
1241
1257
  property :kind, as: 'kind'
1242
1258
  hash :labels, as: 'labels'
1243
1259
  property :last_modified_time, :numeric_string => true, as: 'lastModifiedTime'
@@ -1434,6 +1450,8 @@ module Google
1434
1450
  # @private
1435
1451
  class Representation < Google::Apis::Core::JsonRepresentation
1436
1452
  property :autodetect, as: 'autodetect'
1453
+ property :avro_options, as: 'avroOptions', class: Google::Apis::BigqueryV2::AvroOptions, decorator: Google::Apis::BigqueryV2::AvroOptions::Representation
1454
+
1437
1455
  property :bigtable_options, as: 'bigtableOptions', class: Google::Apis::BigqueryV2::BigtableOptions, decorator: Google::Apis::BigqueryV2::BigtableOptions::Representation
1438
1456
 
1439
1457
  property :compression, as: 'compression'
@@ -2123,7 +2141,7 @@ module Google
2123
2141
 
2124
2142
  property :schema, as: 'schema', class: Google::Apis::BigqueryV2::TableSchema, decorator: Google::Apis::BigqueryV2::TableSchema::Representation
2125
2143
 
2126
- property :session_info_template, as: 'sessionInfoTemplate', class: Google::Apis::BigqueryV2::SessionInfo, decorator: Google::Apis::BigqueryV2::SessionInfo::Representation
2144
+ property :session_info, as: 'sessionInfo', class: Google::Apis::BigqueryV2::SessionInfo, decorator: Google::Apis::BigqueryV2::SessionInfo::Representation
2127
2145
 
2128
2146
  property :total_bytes_processed, :numeric_string => true, as: 'totalBytesProcessed'
2129
2147
  property :total_rows, :numeric_string => true, as: 'totalRows'
@@ -2200,6 +2218,7 @@ module Google
2200
2218
  property :routine_reference, as: 'routineReference', class: Google::Apis::BigqueryV2::RoutineReference, decorator: Google::Apis::BigqueryV2::RoutineReference::Representation
2201
2219
 
2202
2220
  property :routine_type, as: 'routineType'
2221
+ property :strict_mode, as: 'strictMode'
2203
2222
  end
2204
2223
  end
2205
2224
 
@@ -2348,6 +2367,7 @@ module Google
2348
2367
  property :clustering, as: 'clustering', class: Google::Apis::BigqueryV2::Clustering, decorator: Google::Apis::BigqueryV2::Clustering::Representation
2349
2368
 
2350
2369
  property :creation_time, :numeric_string => true, as: 'creationTime'
2370
+ property :default_collation, as: 'defaultCollation'
2351
2371
  property :description, as: 'description'
2352
2372
  property :encryption_configuration, as: 'encryptionConfiguration', class: Google::Apis::BigqueryV2::EncryptionConfiguration, decorator: Google::Apis::BigqueryV2::EncryptionConfiguration::Representation
2353
2373
 
@@ -2451,6 +2471,7 @@ module Google
2451
2471
  class Representation < Google::Apis::Core::JsonRepresentation
2452
2472
  property :categories, as: 'categories', class: Google::Apis::BigqueryV2::TableFieldSchema::Categories, decorator: Google::Apis::BigqueryV2::TableFieldSchema::Categories::Representation
2453
2473
 
2474
+ property :collation_spec, as: 'collationSpec'
2454
2475
  property :description, as: 'description'
2455
2476
  collection :fields, as: 'fields', class: Google::Apis::BigqueryV2::TableFieldSchema, decorator: Google::Apis::BigqueryV2::TableFieldSchema::Representation
2456
2477
 
@@ -2577,7 +2598,12 @@ module Google
2577
2598
  property :auto_arima, as: 'autoArima'
2578
2599
  property :auto_arima_max_order, :numeric_string => true, as: 'autoArimaMaxOrder'
2579
2600
  property :batch_size, :numeric_string => true, as: 'batchSize'
2601
+ property :booster_type, as: 'boosterType'
2580
2602
  property :clean_spikes_and_dips, as: 'cleanSpikesAndDips'
2603
+ property :colsample_bylevel, as: 'colsampleBylevel'
2604
+ property :colsample_bynode, as: 'colsampleBynode'
2605
+ property :colsample_bytree, as: 'colsampleBytree'
2606
+ property :dart_normalize_type, as: 'dartNormalizeType'
2581
2607
  property :data_frequency, as: 'dataFrequency'
2582
2608
  property :data_split_column, as: 'dataSplitColumn'
2583
2609
  property :data_split_eval_fraction, as: 'dataSplitEvalFraction'
@@ -2606,11 +2632,13 @@ module Google
2606
2632
  property :max_tree_depth, :numeric_string => true, as: 'maxTreeDepth'
2607
2633
  property :min_relative_progress, as: 'minRelativeProgress'
2608
2634
  property :min_split_loss, as: 'minSplitLoss'
2635
+ property :min_tree_child_weight, :numeric_string => true, as: 'minTreeChildWeight'
2609
2636
  property :model_uri, as: 'modelUri'
2610
2637
  property :non_seasonal_order, as: 'nonSeasonalOrder', class: Google::Apis::BigqueryV2::ArimaOrder, decorator: Google::Apis::BigqueryV2::ArimaOrder::Representation
2611
2638
 
2612
2639
  property :num_clusters, :numeric_string => true, as: 'numClusters'
2613
2640
  property :num_factors, :numeric_string => true, as: 'numFactors'
2641
+ property :num_parallel_tree, :numeric_string => true, as: 'numParallelTree'
2614
2642
  property :optimization_strategy, as: 'optimizationStrategy'
2615
2643
  property :preserve_input_structs, as: 'preserveInputStructs'
2616
2644
  property :subsample, as: 'subsample'
@@ -2618,6 +2646,7 @@ module Google
2618
2646
  property :time_series_id_column, as: 'timeSeriesIdColumn'
2619
2647
  collection :time_series_id_columns, as: 'timeSeriesIdColumns'
2620
2648
  property :time_series_timestamp_column, as: 'timeSeriesTimestampColumn'
2649
+ property :tree_method, as: 'treeMethod'
2621
2650
  property :user_column, as: 'userColumn'
2622
2651
  property :wals_alpha, as: 'walsAlpha'
2623
2652
  property :warm_start, as: 'warmStart'
@@ -340,14 +340,14 @@ module Google
340
340
  execute_or_queue_command(command, &block)
341
341
  end
342
342
 
343
- # Requests that a job is deleted. This call will return when the job is deleted.
344
- # This method is available in limited preview.
343
+ # Requests the deletion of the metadata of a job. This call returns when the job'
344
+ # s metadata is deleted.
345
345
  # @param [String] project_id
346
- # Required. Project ID of the job to be deleted.
346
+ # Required. Project ID of the job for which metadata is to be deleted.
347
347
  # @param [String] job_id
348
- # Required. Job ID of the job to be deleted. If this is a parent job which has
349
- # child jobs, all child jobs will be deleted as well. Deletion of child jobs
350
- # directly is not allowed.
348
+ # Required. Job ID of the job for which metadata is to be deleted. If this is a
349
+ # parent job which has child jobs, the metadata from all child jobs will be
350
+ # deleted as well. Direct deletion of the metadata of child jobs is not allowed.
351
351
  # @param [String] location
352
352
  # The geographic location of the job. Required. See details at: https://cloud.
353
353
  # google.com/bigquery/docs/locations#specifying_your_location.
@@ -29,25 +29,25 @@ module Google
29
29
  # This is NOT the gem version.
30
30
  VERSION = 'V2'
31
31
 
32
- # View and manage your data in Google BigQuery
32
+ # View and manage your data in Google BigQuery and see the email address for your Google Account
33
33
  AUTH_BIGQUERY = 'https://www.googleapis.com/auth/bigquery'
34
34
 
35
35
  # Insert data into Google BigQuery
36
36
  AUTH_BIGQUERY_INSERTDATA = 'https://www.googleapis.com/auth/bigquery.insertdata'
37
37
 
38
- # See, edit, configure, and delete your Google Cloud Platform data
38
+ # See, edit, configure, and delete your Google Cloud data and see the email address for your Google Account.
39
39
  AUTH_CLOUD_PLATFORM = 'https://www.googleapis.com/auth/cloud-platform'
40
40
 
41
- # View your data across Google Cloud Platform services
41
+ # View your data across Google Cloud services and see the email address of your Google Account
42
42
  AUTH_CLOUD_PLATFORM_READ_ONLY = 'https://www.googleapis.com/auth/cloud-platform.read-only'
43
43
 
44
- # Manage your data and permissions in Google Cloud Storage
44
+ # Manage your data and permissions in Cloud Storage and see the email address for your Google Account
45
45
  AUTH_DEVSTORAGE_FULL_CONTROL = 'https://www.googleapis.com/auth/devstorage.full_control'
46
46
 
47
47
  # View your data in Google Cloud Storage
48
48
  AUTH_DEVSTORAGE_READ_ONLY = 'https://www.googleapis.com/auth/devstorage.read_only'
49
49
 
50
- # Manage your data in Google Cloud Storage
50
+ # Manage your data in Cloud Storage and see the email address of your Google Account
51
51
  AUTH_DEVSTORAGE_READ_WRITE = 'https://www.googleapis.com/auth/devstorage.read_write'
52
52
  end
53
53
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-bigquery_v2
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.14.0
4
+ version: 0.18.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-06-28 00:00:00.000000000 Z
11
+ date: 2021-09-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -16,7 +16,7 @@ dependencies:
16
16
  requirements:
17
17
  - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: '0.3'
19
+ version: '0.4'
20
20
  - - "<"
21
21
  - !ruby/object:Gem::Version
22
22
  version: 2.a
@@ -26,7 +26,7 @@ dependencies:
26
26
  requirements:
27
27
  - - ">="
28
28
  - !ruby/object:Gem::Version
29
- version: '0.3'
29
+ version: '0.4'
30
30
  - - "<"
31
31
  - !ruby/object:Gem::Version
32
32
  version: 2.a
@@ -58,7 +58,7 @@ licenses:
58
58
  metadata:
59
59
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
60
60
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-bigquery_v2/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-bigquery_v2/v0.14.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-bigquery_v2/v0.18.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-bigquery_v2
63
63
  post_install_message:
64
64
  rdoc_options: []