google-apis-bigqueryreservation_v1 0.25.0 → 0.27.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: aac43f1db5a3f49c9cab842f0e4812506cb19c1561f858d7aa228b75a34b9145
4
- data.tar.gz: 57b82ca1317cc905bf5b5e070daf0bcb57f518f1944b772c8de20e3f922206e9
3
+ metadata.gz: c910a8ae73077b911068399cd032399d1f625d374087f81a4ba6ff6fbaa0f89d
4
+ data.tar.gz: 45597c17a341138ef2137e5b44faf22a7675cc723cb7c1cdee5793e5da096b75
5
5
  SHA512:
6
- metadata.gz: fab50e23de003e8ee7ea376657e11c4fdc27d83d408b515af27d408aa956f7c0d3dc571ad837d9401569eb04b64e024e094610d90b37ab629c27f3f360804812
7
- data.tar.gz: ffc14e9259673b2adb69a63c9bfb811348dbee05ec6148e5e61b576c0a47688320eb47fb875b142238a2b595238c667ab7cbdf7a02a10ebc93f40e986b340adb
6
+ metadata.gz: 445cbc8810b615a4803a1525cf642698885d1d5f34bffe62dfd62e5692914654946f8c61e56558d50dc8c920f9d26761cadd8cd7f7c8d91a185d0d6d740d4713
7
+ data.tar.gz: 6636c9cfdb1fafbe136783b4794c3be2b2307beacbe3fbf8d0e2f3b45279a84d2d6bc655acc6223273993ab5f0a52104073dec70918125dbdf0b5b6a8d36b726
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-bigqueryreservation_v1
2
2
 
3
+ ### v0.27.0 (2023-04-23)
4
+
5
+ * Regenerated from discovery document revision 20230419
6
+
7
+ ### v0.26.0 (2023-04-02)
8
+
9
+ * Regenerated from discovery document revision 20230326
10
+
3
11
  ### v0.25.0 (2023-02-26)
4
12
 
5
13
  * Regenerated from discovery document revision 20230215
@@ -149,7 +149,7 @@ module Google
149
149
  # @return [String]
150
150
  attr_accessor :commitment_start_time
151
151
 
152
- # Do not use.
152
+ # Edition of the capacity commitment.
153
153
  # Corresponds to the JSON property `edition`
154
154
  # @return [String]
155
155
  attr_accessor :edition
@@ -168,7 +168,8 @@ module Google
168
168
  # regions (US or EU). If set to true, this commitment is placed in the
169
169
  # organization's secondary region which is designated for disaster recovery
170
170
  # purposes. If false, this commitment is placed in the organization's default
171
- # region.
171
+ # region. NOTE: this is a preview feature. Project must be allow-listed in order
172
+ # to set this field.
172
173
  # Corresponds to the JSON property `multiRegionAuxiliary`
173
174
  # @return [Boolean]
174
175
  attr_accessor :multi_region_auxiliary
@@ -346,6 +347,13 @@ module Google
346
347
  class MoveAssignmentRequest
347
348
  include Google::Apis::Core::Hashable
348
349
 
350
+ # The optional assignment ID. A new assignment name is generated if this field
351
+ # is empty. This field can contain only lowercase alphanumeric characters or
352
+ # dashes. Max length is 64 characters.
353
+ # Corresponds to the JSON property `assignmentId`
354
+ # @return [String]
355
+ attr_accessor :assignment_id
356
+
349
357
  # The new reservation ID, e.g.: `projects/myotherproject/locations/US/
350
358
  # reservations/team2-prod`
351
359
  # Corresponds to the JSON property `destinationId`
@@ -358,6 +366,7 @@ module Google
358
366
 
359
367
  # Update properties of this object
360
368
  def update!(**args)
369
+ @assignment_id = args[:assignment_id] if args.key?(:assignment_id)
361
370
  @destination_id = args[:destination_id] if args.key?(:destination_id)
362
371
  end
363
372
  end
@@ -386,7 +395,7 @@ module Google
386
395
  # @return [String]
387
396
  attr_accessor :creation_time
388
397
 
389
- # Do not use.
398
+ # Edition of the reservation.
390
399
  # Corresponds to the JSON property `edition`
391
400
  # @return [String]
392
401
  attr_accessor :edition
@@ -404,7 +413,8 @@ module Google
404
413
  # regions (US or EU). If set to true, this reservation is placed in the
405
414
  # organization's secondary region which is designated for disaster recovery
406
415
  # purposes. If false, this reservation is placed in the organization's default
407
- # region.
416
+ # region. NOTE: this is a preview feature. Project must be allow-listed in order
417
+ # to set this field.
408
418
  # Corresponds to the JSON property `multiRegionAuxiliary`
409
419
  # @return [Boolean]
410
420
  attr_accessor :multi_region_auxiliary
@@ -421,11 +431,20 @@ module Google
421
431
  # Minimum slots available to this reservation. A slot is a unit of computational
422
432
  # power in BigQuery, and serves as the unit of parallelism. Queries using this
423
433
  # reservation might use more slots during runtime if ignore_idle_slots is set to
424
- # false. If total slot_capacity of the reservation and its siblings exceeds the
425
- # total slot_count of all capacity commitments, the request will fail with `
426
- # google.rpc.Code.RESOURCE_EXHAUSTED`. NOTE: for reservations in US or EU multi-
427
- # regions, slot capacity constraints are checked separately for default and
428
- # auxiliary regions. See multi_region_auxiliary flag for more details.
434
+ # false. If edition is EDITION_UNSPECIFIED and total slot_capacity of the
435
+ # reservation and its siblings exceeds the total slot_count of all capacity
436
+ # commitments, the request will fail with `google.rpc.Code.RESOURCE_EXHAUSTED`.
437
+ # If edition is any value but EDITION_UNSPECIFIED, then the above requirement is
438
+ # not needed. The total slot_capacity of the reservation and its siblings may
439
+ # exceed the total slot_count of capacity commitments. In that case, the
440
+ # exceeding slots will be charged with the autoscale SKU. You can increase the
441
+ # number of baseline slots in a reservation every few minutes. If you want to
442
+ # decrease your baseline slots, you are limited to once an hour if you have
443
+ # recently changed your baseline slot capacity and your baseline slots exceed
444
+ # your committed slots. Otherwise, you can decrease your baseline slots every
445
+ # few minutes. NOTE: for reservations in US or EU multi-regions, slot capacity
446
+ # constraints are checked separately for default and auxiliary regions. See
447
+ # multi_region_auxiliary flag for more details.
429
448
  # Corresponds to the JSON property `slotCapacity`
430
449
  # @return [Fixnum]
431
450
  attr_accessor :slot_capacity
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module BigqueryreservationV1
18
18
  # Version of the google-apis-bigqueryreservation_v1 gem
19
- GEM_VERSION = "0.25.0"
19
+ GEM_VERSION = "0.27.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.12.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20230215"
25
+ REVISION = "20230419"
26
26
  end
27
27
  end
28
28
  end
@@ -213,6 +213,7 @@ module Google
213
213
  class MoveAssignmentRequest
214
214
  # @private
215
215
  class Representation < Google::Apis::Core::JsonRepresentation
216
+ property :assignment_id, as: 'assignmentId'
216
217
  property :destination_id, as: 'destinationId'
217
218
  end
218
219
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-bigqueryreservation_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.25.0
4
+ version: 0.27.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: 2023-02-26 00:00:00.000000000 Z
11
+ date: 2023-04-23 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -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/main/generated/google-apis-bigqueryreservation_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-bigqueryreservation_v1/v0.25.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-bigqueryreservation_v1/v0.27.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-bigqueryreservation_v1
63
63
  post_install_message:
64
64
  rdoc_options: []