google-apis-alloydb_v1beta 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:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 889abc7a363afb0374b63a5fc5ed056de1c4252037b837b7a95060e53df7508a
|
|
4
|
+
data.tar.gz: d9002c6d3f6a77ca898fd6bec96c92dbd5f52943649ff3976c629d20845a2dc3
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a599ad169fa98446e64222ec0feff5f0f62bf5d6f5e3a8a072d094810059099361f00555b983bb23f61e07298e9372260e2256767bf32a027915b06862257300
|
|
7
|
+
data.tar.gz: 04b4d18ea5c0fe2506240a8bb0a75a7336386f834dc49e416f847a7bb9d4ae9b240fe5c1a70406389c760954510e8612c149f87d2a31bd12834d007d84e75c9b
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Release history for google-apis-alloydb_v1beta
|
|
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
|
|
@@ -2370,8 +2370,9 @@ module Google
|
|
|
2370
2370
|
attr_accessor :operations
|
|
2371
2371
|
|
|
2372
2372
|
# Unordered list. Unreachable resources. Populated when the request sets `
|
|
2373
|
-
# ListOperationsRequest.return_partial_success` and reads across collections
|
|
2374
|
-
# when attempting to list all resources across all supported
|
|
2373
|
+
# ListOperationsRequest.return_partial_success` and reads across collections.
|
|
2374
|
+
# For example, when attempting to list all resources across all supported
|
|
2375
|
+
# locations.
|
|
2375
2376
|
# Corresponds to the JSON property `unreachable`
|
|
2376
2377
|
# @return [Array<String>]
|
|
2377
2378
|
attr_accessor :unreachable
|
|
@@ -4706,12 +4707,24 @@ module Google
|
|
|
4706
4707
|
class StorageDatabasecenterPartnerapiV1mainMachineConfiguration
|
|
4707
4708
|
include Google::Apis::Core::Hashable
|
|
4708
4709
|
|
|
4710
|
+
# Optional. Baseline slots for BigQuery Reservations. Baseline slots are in
|
|
4711
|
+
# increments of 50.
|
|
4712
|
+
# Corresponds to the JSON property `baselineSlots`
|
|
4713
|
+
# @return [Fixnum]
|
|
4714
|
+
attr_accessor :baseline_slots
|
|
4715
|
+
|
|
4709
4716
|
# The number of CPUs. Deprecated. Use vcpu_count instead. TODO(b/342344482) add
|
|
4710
4717
|
# proto validations again after bug fix.
|
|
4711
4718
|
# Corresponds to the JSON property `cpuCount`
|
|
4712
4719
|
# @return [Fixnum]
|
|
4713
4720
|
attr_accessor :cpu_count
|
|
4714
4721
|
|
|
4722
|
+
# Optional. Max slots for BigQuery Reservations. Max slots are in increments of
|
|
4723
|
+
# 50.
|
|
4724
|
+
# Corresponds to the JSON property `maxReservationSlots`
|
|
4725
|
+
# @return [Fixnum]
|
|
4726
|
+
attr_accessor :max_reservation_slots
|
|
4727
|
+
|
|
4715
4728
|
# Memory size in bytes. TODO(b/342344482) add proto validations again after bug
|
|
4716
4729
|
# fix.
|
|
4717
4730
|
# Corresponds to the JSON property `memorySizeInBytes`
|
|
@@ -4735,7 +4748,9 @@ module Google
|
|
|
4735
4748
|
|
|
4736
4749
|
# Update properties of this object
|
|
4737
4750
|
def update!(**args)
|
|
4751
|
+
@baseline_slots = args[:baseline_slots] if args.key?(:baseline_slots)
|
|
4738
4752
|
@cpu_count = args[:cpu_count] if args.key?(:cpu_count)
|
|
4753
|
+
@max_reservation_slots = args[:max_reservation_slots] if args.key?(:max_reservation_slots)
|
|
4739
4754
|
@memory_size_in_bytes = args[:memory_size_in_bytes] if args.key?(:memory_size_in_bytes)
|
|
4740
4755
|
@shard_count = args[:shard_count] if args.key?(:shard_count)
|
|
4741
4756
|
@vcpu_count = args[:vcpu_count] if args.key?(:vcpu_count)
|
|
@@ -16,13 +16,13 @@ module Google
|
|
|
16
16
|
module Apis
|
|
17
17
|
module AlloydbV1beta
|
|
18
18
|
# Version of the google-apis-alloydb_v1beta gem
|
|
19
|
-
GEM_VERSION = "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 = "
|
|
25
|
+
REVISION = "20260108"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -1944,7 +1944,9 @@ module Google
|
|
|
1944
1944
|
class StorageDatabasecenterPartnerapiV1mainMachineConfiguration
|
|
1945
1945
|
# @private
|
|
1946
1946
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1947
|
+
property :baseline_slots, :numeric_string => true, as: 'baselineSlots'
|
|
1947
1948
|
property :cpu_count, as: 'cpuCount'
|
|
1949
|
+
property :max_reservation_slots, :numeric_string => true, as: 'maxReservationSlots'
|
|
1948
1950
|
property :memory_size_in_bytes, :numeric_string => true, as: 'memorySizeInBytes'
|
|
1949
1951
|
property :shard_count, as: 'shardCount'
|
|
1950
1952
|
property :vcpu_count, as: 'vcpuCount'
|
|
@@ -1741,11 +1741,12 @@ module Google
|
|
|
1741
1741
|
# The standard list page token.
|
|
1742
1742
|
# @param [Boolean] return_partial_success
|
|
1743
1743
|
# When set to `true`, operations that are reachable are returned as normal, and
|
|
1744
|
-
# those that are unreachable are returned in the
|
|
1745
|
-
# unreachable
|
|
1746
|
-
#
|
|
1747
|
-
# by default
|
|
1748
|
-
# explicitly documented otherwise in service or product specific
|
|
1744
|
+
# those that are unreachable are returned in the ListOperationsResponse.
|
|
1745
|
+
# unreachable field. This can only be `true` when reading across collections.
|
|
1746
|
+
# For example, when `parent` is set to `"projects/example/locations/-"`. This
|
|
1747
|
+
# field is not supported by default and will result in an `UNIMPLEMENTED` error
|
|
1748
|
+
# if set unless explicitly documented otherwise in service or product specific
|
|
1749
|
+
# documentation.
|
|
1749
1750
|
# @param [String] fields
|
|
1750
1751
|
# Selector specifying which fields to include in a partial response.
|
|
1751
1752
|
# @param [String] quota_user
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-apis-alloydb_v1beta
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 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_v1beta/CHANGELOG.md
|
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-alloydb_v1beta/v0.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-alloydb_v1beta/v0.44.0
|
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-alloydb_v1beta
|
|
62
62
|
rdoc_options: []
|
|
63
63
|
require_paths:
|