google-apis-bigquery_v2 0.94.0 → 0.96.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: b5cb4217438b5c1494cf4fed1d90cbdac77ad343adad71724804015192043ace
4
- data.tar.gz: f24aa7205d1737c7bd36b73e3cf8bea14145b73a4af0d3be7a1dfa93ac94c54c
3
+ metadata.gz: e7a3eadffc0e8f959a005d5c9707c4315e6ccb7bb6f0eec13b335f07166f0112
4
+ data.tar.gz: 212ba6badd521899e0bd983caf09198c833ff38f7dcc52a7f4709017a5552c03
5
5
  SHA512:
6
- metadata.gz: eb8fd87f19322d3b8d2ea7a864791206f353343722f2c42fdf8915b02aa60468e0a75d24da57cf478463a5f78a500e0759fbabb09959bfeaec15e0e92ca4d2e8
7
- data.tar.gz: 328337b2ac0ee99b4f3b6abaace152b3a061f55d4033c7a6e3bfe028d08c2bc3d9f647bc0388ba4fa0ece1c700440d1538dfa71566fe2f0917f1afd655d45f92
6
+ metadata.gz: 26887ad44bb81cb7fb2b3be19ca8bb86ab1d2529f25f2bf3cf71ffb650c363e299d5209fc2e1bcc311511c60261f31de3416beaa2c37840e24c5bf3bde60593e
7
+ data.tar.gz: d4461486e39d3001972594dba0bc758d154d5bd99ac528e168b0bb08f33705f6015e9201e92938fb98c5a1478876dd141c857c5ec5b26cb71bc432bc3178cdee
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-bigquery_v2
2
2
 
3
+ ### v0.96.0 (2025-10-26)
4
+
5
+ * Regenerated from discovery document revision 20251012
6
+
7
+ ### v0.95.0 (2025-10-05)
8
+
9
+ * Regenerated from discovery document revision 20250928
10
+
3
11
  ### v0.94.0 (2025-09-28)
4
12
 
5
13
  * Regenerated from discovery document revision 20250919
@@ -3362,6 +3362,20 @@ module Google
3362
3362
  # @return [String]
3363
3363
  attr_accessor :timestamp_format
3364
3364
 
3365
+ # Precisions (maximum number of total digits in base 10) for seconds of
3366
+ # TIMESTAMP types that are allowed to the destination table for autodetection
3367
+ # mode. Available for the formats: CSV. For the CSV Format, Possible values
3368
+ # include: Not Specified, [], or [6]: timestamp(6) for all auto detected
3369
+ # TIMESTAMP columns [6, 12]: timestamp(6) for all auto detected TIMESTAMP
3370
+ # columns that have less than 6 digits of subseconds. timestamp(12) for all auto
3371
+ # detected TIMESTAMP columns that have more than 6 digits of subseconds. [12]:
3372
+ # timestamp(12) for all auto detected TIMESTAMP columns. The order of the
3373
+ # elements in this array is ignored. Inputs that have higher precision than the
3374
+ # highest target precision in this array will be truncated.
3375
+ # Corresponds to the JSON property `timestampTargetPrecision`
3376
+ # @return [Array<Fixnum>]
3377
+ attr_accessor :timestamp_target_precision
3378
+
3365
3379
  def initialize(**args)
3366
3380
  update!(**args)
3367
3381
  end
@@ -3394,6 +3408,7 @@ module Google
3394
3408
  @time_format = args[:time_format] if args.key?(:time_format)
3395
3409
  @time_zone = args[:time_zone] if args.key?(:time_zone)
3396
3410
  @timestamp_format = args[:timestamp_format] if args.key?(:timestamp_format)
3411
+ @timestamp_target_precision = args[:timestamp_target_precision] if args.key?(:timestamp_target_precision)
3397
3412
  end
3398
3413
  end
3399
3414
 
@@ -4220,6 +4235,11 @@ module Google
4220
4235
  # @return [Google::Apis::BigqueryV2::TableReference]
4221
4236
  attr_accessor :base_table
4222
4237
 
4238
+ # The index id.
4239
+ # Corresponds to the JSON property `indexId`
4240
+ # @return [String]
4241
+ attr_accessor :index_id
4242
+
4223
4243
  # The number of parallel inputs after index pruning.
4224
4244
  # Corresponds to the JSON property `postIndexPruningParallelInputCount`
4225
4245
  # @return [Fixnum]
@@ -4237,6 +4257,7 @@ module Google
4237
4257
  # Update properties of this object
4238
4258
  def update!(**args)
4239
4259
  @base_table = args[:base_table] if args.key?(:base_table)
4260
+ @index_id = args[:index_id] if args.key?(:index_id)
4240
4261
  @post_index_pruning_parallel_input_count = args[:post_index_pruning_parallel_input_count] if args.key?(:post_index_pruning_parallel_input_count)
4241
4262
  @pre_index_pruning_parallel_input_count = args[:pre_index_pruning_parallel_input_count] if args.key?(:pre_index_pruning_parallel_input_count)
4242
4263
  end
@@ -4633,9 +4654,12 @@ module Google
4633
4654
  # @return [Google::Apis::BigqueryV2::JobConfigurationLoad]
4634
4655
  attr_accessor :load
4635
4656
 
4636
- # Optional. INTERNAL: DO NOT USE. The maximum rate of slot consumption to allow
4637
- # for this job. If set, the number of slots used to execute the job will be
4638
- # throttled to try and keep its slot consumption below the requested rate.
4657
+ # Optional. A target limit on the rate of slot consumption by this job. If set
4658
+ # to a value > 0, BigQuery will attempt to limit the rate of slot consumption by
4659
+ # this job to keep it below the configured limit, even if the job is eligible
4660
+ # for more slots based on fair scheduling. The unused slots will be available
4661
+ # for other jobs and queries to use. Note: This feature is not yet generally
4662
+ # available.
4639
4663
  # Corresponds to the JSON property `maxSlots`
4640
4664
  # @return [Fixnum]
4641
4665
  attr_accessor :max_slots
@@ -5127,6 +5151,20 @@ module Google
5127
5151
  # @return [String]
5128
5152
  attr_accessor :timestamp_format
5129
5153
 
5154
+ # Precisions (maximum number of total digits in base 10) for seconds of
5155
+ # TIMESTAMP types that are allowed to the destination table for autodetection
5156
+ # mode. Available for the formats: CSV. For the CSV Format, Possible values
5157
+ # include: Not Specified, [], or [6]: timestamp(6) for all auto detected
5158
+ # TIMESTAMP columns [6, 12]: timestamp(6) for all auto detected TIMESTAMP
5159
+ # columns that have less than 6 digits of subseconds. timestamp(12) for all auto
5160
+ # detected TIMESTAMP columns that have more than 6 digits of subseconds. [12]:
5161
+ # timestamp(12) for all auto detected TIMESTAMP columns. The order of the
5162
+ # elements in this array is ignored. Inputs that have higher precision than the
5163
+ # highest target precision in this array will be truncated.
5164
+ # Corresponds to the JSON property `timestampTargetPrecision`
5165
+ # @return [Array<Fixnum>]
5166
+ attr_accessor :timestamp_target_precision
5167
+
5130
5168
  # Optional. If sourceFormat is set to "AVRO", indicates whether to interpret
5131
5169
  # logical types as the corresponding BigQuery data type (for example, TIMESTAMP),
5132
5170
  # instead of using the raw type (for example, INTEGER).
@@ -5198,6 +5236,7 @@ module Google
5198
5236
  @time_partitioning = args[:time_partitioning] if args.key?(:time_partitioning)
5199
5237
  @time_zone = args[:time_zone] if args.key?(:time_zone)
5200
5238
  @timestamp_format = args[:timestamp_format] if args.key?(:timestamp_format)
5239
+ @timestamp_target_precision = args[:timestamp_target_precision] if args.key?(:timestamp_target_precision)
5201
5240
  @use_avro_logical_types = args[:use_avro_logical_types] if args.key?(:use_avro_logical_types)
5202
5241
  @write_disposition = args[:write_disposition] if args.key?(:write_disposition)
5203
5242
  end
@@ -5791,6 +5830,15 @@ module Google
5791
5830
  # @return [Array<String>]
5792
5831
  attr_accessor :quota_deferments
5793
5832
 
5833
+ # Output only. The reservation group path of the reservation assigned to this
5834
+ # job. This field has a limit of 10 nested reservation groups. This is to
5835
+ # maintain consistency between reservatins info schema and jobs info schema. The
5836
+ # first reservation group is the root reservation group and the last is the leaf
5837
+ # or lowest level reservation group.
5838
+ # Corresponds to the JSON property `reservationGroupPath`
5839
+ # @return [Array<String>]
5840
+ attr_accessor :reservation_group_path
5841
+
5794
5842
  # Output only. Job resource usage breakdown by reservation. This field reported
5795
5843
  # misleading information and will no longer be populated.
5796
5844
  # Corresponds to the JSON property `reservationUsage`
@@ -5860,6 +5908,7 @@ module Google
5860
5908
  @parent_job_id = args[:parent_job_id] if args.key?(:parent_job_id)
5861
5909
  @query = args[:query] if args.key?(:query)
5862
5910
  @quota_deferments = args[:quota_deferments] if args.key?(:quota_deferments)
5911
+ @reservation_group_path = args[:reservation_group_path] if args.key?(:reservation_group_path)
5863
5912
  @reservation_usage = args[:reservation_usage] if args.key?(:reservation_usage)
5864
5913
  @reservation_id = args[:reservation_id] if args.key?(:reservation_id)
5865
5914
  @row_level_security_statistics = args[:row_level_security_statistics] if args.key?(:row_level_security_statistics)
@@ -7982,10 +8031,12 @@ module Google
7982
8031
  # @return [Fixnum]
7983
8032
  attr_accessor :max_results
7984
8033
 
7985
- # Optional. INTERNAL: DO NOT USE. The maximum rate of slot consumption to allow
7986
- # for this job. If set, the number of slots used to execute the job will be
7987
- # throttled to try and keep its slot consumption below the requested rate. This
7988
- # limit is best effort.
8034
+ # Optional. A target limit on the rate of slot consumption by this query. If set
8035
+ # to a value > 0, BigQuery will attempt to limit the rate of slot consumption by
8036
+ # this query to keep it below the configured limit, even if the query is
8037
+ # eligible for more slots based on fair scheduling. The unused slots will be
8038
+ # available for other jobs and queries to use. Note: This feature is not yet
8039
+ # generally available.
7989
8040
  # Corresponds to the JSON property `maxSlots`
7990
8041
  # @return [Fixnum]
7991
8042
  attr_accessor :max_slots
@@ -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.94.0"
19
+ GEM_VERSION = "0.96.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.18.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20250919"
25
+ REVISION = "20251012"
26
26
  end
27
27
  end
28
28
  end
@@ -2167,6 +2167,7 @@ module Google
2167
2167
  property :time_format, as: 'timeFormat'
2168
2168
  property :time_zone, as: 'timeZone'
2169
2169
  property :timestamp_format, as: 'timestampFormat'
2170
+ collection :timestamp_target_precision, as: 'timestampTargetPrecision'
2170
2171
  end
2171
2172
  end
2172
2173
 
@@ -2391,6 +2392,7 @@ module Google
2391
2392
  class Representation < Google::Apis::Core::JsonRepresentation
2392
2393
  property :base_table, as: 'baseTable', class: Google::Apis::BigqueryV2::TableReference, decorator: Google::Apis::BigqueryV2::TableReference::Representation
2393
2394
 
2395
+ property :index_id, as: 'indexId'
2394
2396
  property :post_index_pruning_parallel_input_count, :numeric_string => true, as: 'postIndexPruningParallelInputCount'
2395
2397
  property :pre_index_pruning_parallel_input_count, :numeric_string => true, as: 'preIndexPruningParallelInputCount'
2396
2398
  end
@@ -2596,6 +2598,7 @@ module Google
2596
2598
 
2597
2599
  property :time_zone, as: 'timeZone'
2598
2600
  property :timestamp_format, as: 'timestampFormat'
2601
+ collection :timestamp_target_precision, as: 'timestampTargetPrecision'
2599
2602
  property :use_avro_logical_types, as: 'useAvroLogicalTypes'
2600
2603
  property :write_disposition, as: 'writeDisposition'
2601
2604
  end
@@ -2735,6 +2738,7 @@ module Google
2735
2738
  property :query, as: 'query', class: Google::Apis::BigqueryV2::JobStatistics2, decorator: Google::Apis::BigqueryV2::JobStatistics2::Representation
2736
2739
 
2737
2740
  collection :quota_deferments, as: 'quotaDeferments'
2741
+ collection :reservation_group_path, as: 'reservationGroupPath'
2738
2742
  collection :reservation_usage, as: 'reservationUsage', class: Google::Apis::BigqueryV2::JobStatistics::ReservationUsage, decorator: Google::Apis::BigqueryV2::JobStatistics::ReservationUsage::Representation
2739
2743
 
2740
2744
  property :reservation_id, as: 'reservation_id'
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-bigquery_v2
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.94.0
4
+ version: 0.96.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
@@ -57,7 +57,7 @@ licenses:
57
57
  metadata:
58
58
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
59
59
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-bigquery_v2/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-bigquery_v2/v0.94.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-bigquery_v2/v0.96.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-bigquery_v2
62
62
  rdoc_options: []
63
63
  require_paths: