google-apis-alloydb_v1alpha 0.42.0 → 0.44.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: 5d47c4f240ca243e95c823e864453389214890bb63a8ec40f87600b9caa9f0fd
4
- data.tar.gz: a8d47b4b6c73e5024e457f383a8f34ca607cd70e9036e7224046223a2e84f2d5
3
+ metadata.gz: bd2b7bf839ae3f3082a41d11a3bcbacd3d55050c26fd290f88e3a2ace5347868
4
+ data.tar.gz: a83c1df3cf2dd48d7b1a9ca13f07038d3175456c37b74fb10ef742a94f608f40
5
5
  SHA512:
6
- metadata.gz: c54e876a274100339fd7466fb0d894cd8a837b58f210b349b546e1594209905af711e94220cf7a9e69b5ba8dea7d0bbb5646d24ca53e2806210d046c361344d3
7
- data.tar.gz: 3292a58c7dbadb627bfdeae2aa9e27b3c89a16a1a928563599158cb8234c159ee2bdc993a392f7c2b32d73ec11ce86f1146b9908451fd17918721447653bf298
6
+ metadata.gz: 3c5066dc5082fda784b5c2ec0f9722c13028fd3b0a887f216b04f205e50681d650ba77f12d9a46aaaf538244f61c2e8bfccfd7538f838547bf0fd1c22809816e
7
+ data.tar.gz: b8101cdde0be28deacb074ff4da78ea158a7dc929d6304823c324296fcab08c5475f5926d8410605592944ed0ca5e39d22739ceb6df6c8b34311ef87b1215a8e
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-alloydb_v1alpha
2
2
 
3
+ ### v0.44.0 (2026-01-18)
4
+
5
+ * Regenerated from discovery document revision 20260108
6
+
7
+ ### v0.43.0 (2025-12-14)
8
+
9
+ * Regenerated from discovery document revision 20251204
10
+
3
11
  ### v0.42.0 (2025-11-16)
4
12
 
5
13
  * Regenerated from discovery document revision 20251106
@@ -2404,8 +2404,9 @@ module Google
2404
2404
  attr_accessor :operations
2405
2405
 
2406
2406
  # Unordered list. Unreachable resources. Populated when the request sets `
2407
- # ListOperationsRequest.return_partial_success` and reads across collections e.g.
2408
- # when attempting to list all resources across all supported locations.
2407
+ # ListOperationsRequest.return_partial_success` and reads across collections.
2408
+ # For example, when attempting to list all resources across all supported
2409
+ # locations.
2409
2410
  # Corresponds to the JSON property `unreachable`
2410
2411
  # @return [Array<String>]
2411
2412
  attr_accessor :unreachable
@@ -4740,12 +4741,24 @@ module Google
4740
4741
  class StorageDatabasecenterPartnerapiV1mainMachineConfiguration
4741
4742
  include Google::Apis::Core::Hashable
4742
4743
 
4744
+ # Optional. Baseline slots for BigQuery Reservations. Baseline slots are in
4745
+ # increments of 50.
4746
+ # Corresponds to the JSON property `baselineSlots`
4747
+ # @return [Fixnum]
4748
+ attr_accessor :baseline_slots
4749
+
4743
4750
  # The number of CPUs. Deprecated. Use vcpu_count instead. TODO(b/342344482) add
4744
4751
  # proto validations again after bug fix.
4745
4752
  # Corresponds to the JSON property `cpuCount`
4746
4753
  # @return [Fixnum]
4747
4754
  attr_accessor :cpu_count
4748
4755
 
4756
+ # Optional. Max slots for BigQuery Reservations. Max slots are in increments of
4757
+ # 50.
4758
+ # Corresponds to the JSON property `maxReservationSlots`
4759
+ # @return [Fixnum]
4760
+ attr_accessor :max_reservation_slots
4761
+
4749
4762
  # Memory size in bytes. TODO(b/342344482) add proto validations again after bug
4750
4763
  # fix.
4751
4764
  # Corresponds to the JSON property `memorySizeInBytes`
@@ -4769,7 +4782,9 @@ module Google
4769
4782
 
4770
4783
  # Update properties of this object
4771
4784
  def update!(**args)
4785
+ @baseline_slots = args[:baseline_slots] if args.key?(:baseline_slots)
4772
4786
  @cpu_count = args[:cpu_count] if args.key?(:cpu_count)
4787
+ @max_reservation_slots = args[:max_reservation_slots] if args.key?(:max_reservation_slots)
4773
4788
  @memory_size_in_bytes = args[:memory_size_in_bytes] if args.key?(:memory_size_in_bytes)
4774
4789
  @shard_count = args[:shard_count] if args.key?(:shard_count)
4775
4790
  @vcpu_count = args[:vcpu_count] if args.key?(:vcpu_count)
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module AlloydbV1alpha
18
18
  # Version of the google-apis-alloydb_v1alpha gem
19
- GEM_VERSION = "0.42.0"
19
+ GEM_VERSION = "0.44.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 = "20251106"
25
+ REVISION = "20260108"
26
26
  end
27
27
  end
28
28
  end
@@ -1959,7 +1959,9 @@ module Google
1959
1959
  class StorageDatabasecenterPartnerapiV1mainMachineConfiguration
1960
1960
  # @private
1961
1961
  class Representation < Google::Apis::Core::JsonRepresentation
1962
+ property :baseline_slots, :numeric_string => true, as: 'baselineSlots'
1962
1963
  property :cpu_count, as: 'cpuCount'
1964
+ property :max_reservation_slots, :numeric_string => true, as: 'maxReservationSlots'
1963
1965
  property :memory_size_in_bytes, :numeric_string => true, as: 'memorySizeInBytes'
1964
1966
  property :shard_count, as: 'shardCount'
1965
1967
  property :vcpu_count, as: 'vcpuCount'
@@ -1744,11 +1744,12 @@ module Google
1744
1744
  # The standard list page token.
1745
1745
  # @param [Boolean] return_partial_success
1746
1746
  # When set to `true`, operations that are reachable are returned as normal, and
1747
- # those that are unreachable are returned in the [ListOperationsResponse.
1748
- # unreachable] field. This can only be `true` when reading across collections e.
1749
- # g. when `parent` is set to `"projects/example/locations/-"`. This field is not
1750
- # by default supported and will result in an `UNIMPLEMENTED` error if set unless
1751
- # explicitly documented otherwise in service or product specific documentation.
1747
+ # those that are unreachable are returned in the ListOperationsResponse.
1748
+ # unreachable field. This can only be `true` when reading across collections.
1749
+ # For example, when `parent` is set to `"projects/example/locations/-"`. This
1750
+ # field is not supported by default and will result in an `UNIMPLEMENTED` error
1751
+ # if set unless explicitly documented otherwise in service or product specific
1752
+ # documentation.
1752
1753
  # @param [String] fields
1753
1754
  # Selector specifying which fields to include in a partial response.
1754
1755
  # @param [String] quota_user
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-alloydb_v1alpha
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.42.0
4
+ version: 0.44.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-alloydb_v1alpha/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-alloydb_v1alpha/v0.42.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-alloydb_v1alpha/v0.44.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-alloydb_v1alpha
62
62
  rdoc_options: []
63
63
  require_paths: