google-apis-bigquery_v2 0.85.0 → 0.86.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: 61b53c4716137572f6011b445f68f50456148d3d6d994c5c8f2caf649be34156
4
- data.tar.gz: bc5a5f698a5d1e48dbb34849c8b90d25e78f9bb6ed93f543f5b44ea3c7c3a9cb
3
+ metadata.gz: a2206d80bd28c0bf1d42d75e91e9a013c860ff909fe8af8a8a4a95f38406304a
4
+ data.tar.gz: 7f43f72cb5228452360e5fd56f16fdd3f5bfe4f944a8b5c40ec625940a3047cc
5
5
  SHA512:
6
- metadata.gz: 67ea55ceca5a8b1766b22cf47ad668a132ad205102a8926725c6c284689a19873813b35299b0a0f5050e7aad985264469170319466fd6a1d612bb46965d28d45
7
- data.tar.gz: f35fa4bafdb456ecd7bd97e026297cd985e141b413806f9bf763a75e705c755dbbc299292ee3fe6a951cd24695ce68d9cf7291a7a90baa3addca0cac2fe24dd8
6
+ metadata.gz: 506f208dbf24f820c1a27e49239a6369ff2a0aa47bb452938735da0be6c760d0caa0bde820258c6ee5702742c0a5b86b78412287fb1c2fa9908790b65453cc8c
7
+ data.tar.gz: 74fcede957ab25db9c6933743236ca3eae6eea0bcc38283a63a93079a7e085252d2e425438a649d73a15eb46a61079eb088c727e21bb0e8eee2a1090e5e45bfb
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-bigquery_v2
2
2
 
3
+ ### v0.86.0 (2025-03-23)
4
+
5
+ * Regenerated from discovery document revision 20250313
6
+
3
7
  ### v0.85.0 (2025-03-16)
4
8
 
5
9
  * Regenerated from discovery document revision 20250302
@@ -4497,6 +4497,14 @@ module Google
4497
4497
  # @return [Google::Apis::BigqueryV2::JobConfigurationQuery]
4498
4498
  attr_accessor :query
4499
4499
 
4500
+ # Optional. The reservation that job would use. User can specify a reservation
4501
+ # to execute the job. If reservation is not set, reservation is determined based
4502
+ # on the rules defined by the reservation assignments. The expected format is `
4503
+ # projects/`project`/locations/`location`/reservations/`reservation``.
4504
+ # Corresponds to the JSON property `reservation`
4505
+ # @return [String]
4506
+ attr_accessor :reservation
4507
+
4500
4508
  def initialize(**args)
4501
4509
  update!(**args)
4502
4510
  end
@@ -4511,6 +4519,7 @@ module Google
4511
4519
  @labels = args[:labels] if args.key?(:labels)
4512
4520
  @load = args[:load] if args.key?(:load)
4513
4521
  @query = args[:query] if args.key?(:query)
4522
+ @reservation = args[:reservation] if args.key?(:reservation)
4514
4523
  end
4515
4524
  end
4516
4525
 
@@ -7790,6 +7799,13 @@ module Google
7790
7799
  # @return [String]
7791
7800
  attr_accessor :request_id
7792
7801
 
7802
+ # Optional. The reservation that jobs.query request would use. User can specify
7803
+ # a reservation to execute the job.query. The expected format is `projects/`
7804
+ # project`/locations/`location`/reservations/`reservation``.
7805
+ # Corresponds to the JSON property `reservation`
7806
+ # @return [String]
7807
+ attr_accessor :reservation
7808
+
7793
7809
  # Optional. Optional: Specifies the maximum amount of time, in milliseconds,
7794
7810
  # that the client is willing to wait for the query to complete. By default, this
7795
7811
  # limit is 10 seconds (10,000 milliseconds). If the query is complete, the
@@ -7856,6 +7872,7 @@ module Google
7856
7872
  @query = args[:query] if args.key?(:query)
7857
7873
  @query_parameters = args[:query_parameters] if args.key?(:query_parameters)
7858
7874
  @request_id = args[:request_id] if args.key?(:request_id)
7875
+ @reservation = args[:reservation] if args.key?(:reservation)
7859
7876
  @timeout_ms = args[:timeout_ms] if args.key?(:timeout_ms)
7860
7877
  @use_legacy_sql = args[:use_legacy_sql] if args.key?(:use_legacy_sql)
7861
7878
  @use_query_cache = args[:use_query_cache] if args.key?(:use_query_cache)
@@ -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.85.0"
19
+ GEM_VERSION = "0.86.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.16.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20250302"
25
+ REVISION = "20250313"
26
26
  end
27
27
  end
28
28
  end
@@ -2453,6 +2453,7 @@ module Google
2453
2453
 
2454
2454
  property :query, as: 'query', class: Google::Apis::BigqueryV2::JobConfigurationQuery, decorator: Google::Apis::BigqueryV2::JobConfigurationQuery::Representation
2455
2455
 
2456
+ property :reservation, as: 'reservation'
2456
2457
  end
2457
2458
  end
2458
2459
 
@@ -3230,6 +3231,7 @@ module Google
3230
3231
  collection :query_parameters, as: 'queryParameters', class: Google::Apis::BigqueryV2::QueryParameter, decorator: Google::Apis::BigqueryV2::QueryParameter::Representation
3231
3232
 
3232
3233
  property :request_id, as: 'requestId'
3234
+ property :reservation, as: 'reservation'
3233
3235
  property :timeout_ms, as: 'timeoutMs'
3234
3236
  property :use_legacy_sql, as: 'useLegacySql'
3235
3237
  property :use_query_cache, as: 'useQueryCache'
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-bigquery_v2
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.85.0
4
+ version: 0.86.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
8
  bindir: bin
9
9
  cert_chain: []
10
- date: 2025-03-16 00:00:00.000000000 Z
10
+ date: 2025-03-23 00:00:00.000000000 Z
11
11
  dependencies:
12
12
  - !ruby/object:Gem::Dependency
13
13
  name: google-apis-core
@@ -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.85.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-bigquery_v2/v0.86.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: