google-apis-alloydb_v1 0.61.0 → 0.63.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 +4 -4
- data/CHANGELOG.md +9 -0
- data/OVERVIEW.md +1 -1
- data/lib/google/apis/alloydb_v1/classes.rb +29 -10
- data/lib/google/apis/alloydb_v1/gem_version.rb +3 -3
- data/lib/google/apis/alloydb_v1/representations.rb +3 -0
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: ea3697a7f0a9d8f8b3feaa31d8a7a3a4d42ecea370541b1161fae460dca97a3f
|
|
4
|
+
data.tar.gz: 8d38ed0bf00ac1249be44bdfd2e8aaf50c15d0ee99279e8519585d9cbabf6857
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 170ff900df9124dfc001be1abf70cf0c4c34b502912d80f43c65ef49fdb8eba7457d92cb128ff38954b087c411ec07662db68aa7e845a9172a735f15e80333ad
|
|
7
|
+
data.tar.gz: 6403099cf6ad86007de9e6ba59b97318f93b4a0bf9ff6101dcfb9b062a6f925492e10acd6619d8b8542a84aa8060ae2a3b9f3db93a0be7fb5dc4bbdfa450fd09
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
# Release history for google-apis-alloydb_v1
|
|
2
2
|
|
|
3
|
+
### v0.63.0 (2026-07-12)
|
|
4
|
+
|
|
5
|
+
* Regenerated from discovery document revision 20260701
|
|
6
|
+
|
|
7
|
+
### v0.62.0 (2026-06-14)
|
|
8
|
+
|
|
9
|
+
* Regenerated from discovery document revision 20260605
|
|
10
|
+
* Regenerated using generator version 0.19.0
|
|
11
|
+
|
|
3
12
|
### v0.61.0 (2026-05-31)
|
|
4
13
|
|
|
5
14
|
* Regenerated from discovery document revision 20260520
|
data/OVERVIEW.md
CHANGED
|
@@ -83,7 +83,7 @@ The [product documentation](https://cloud.google.com/alloydb/) may provide guida
|
|
|
83
83
|
|
|
84
84
|
## Supported Ruby versions
|
|
85
85
|
|
|
86
|
-
This library is supported on Ruby 3.
|
|
86
|
+
This library is supported on Ruby 3.2+.
|
|
87
87
|
|
|
88
88
|
Google provides official support for Ruby versions that are actively supported by Ruby Core -- that is, Ruby versions that are either in normal maintenance or in security maintenance, and not end of life. Older versions of Ruby _may_ still work, but are unsupported and not recommended. See https://www.ruby-lang.org/en/downloads/branches/ for details about the Ruby support schedule.
|
|
89
89
|
|
|
@@ -965,6 +965,11 @@ module Google
|
|
|
965
965
|
# @return [Fixnum]
|
|
966
966
|
attr_accessor :authproxy_pooler_count
|
|
967
967
|
|
|
968
|
+
# Optional. The scaling type of the AuthProxy pooler.
|
|
969
|
+
# Corresponds to the JSON property `authproxyPoolerScalingType`
|
|
970
|
+
# @return [String]
|
|
971
|
+
attr_accessor :authproxy_pooler_scaling_type
|
|
972
|
+
|
|
968
973
|
# Optional. Whether to enable Managed Connection Pool (MCP).
|
|
969
974
|
# Corresponds to the JSON property `enabled`
|
|
970
975
|
# @return [Boolean]
|
|
@@ -981,6 +986,11 @@ module Google
|
|
|
981
986
|
# @return [Fixnum]
|
|
982
987
|
attr_accessor :pooler_count
|
|
983
988
|
|
|
989
|
+
# Optional. The scaling type of the regular pooler.
|
|
990
|
+
# Corresponds to the JSON property `poolerScalingType`
|
|
991
|
+
# @return [String]
|
|
992
|
+
attr_accessor :pooler_scaling_type
|
|
993
|
+
|
|
984
994
|
def initialize(**args)
|
|
985
995
|
update!(**args)
|
|
986
996
|
end
|
|
@@ -988,9 +998,11 @@ module Google
|
|
|
988
998
|
# Update properties of this object
|
|
989
999
|
def update!(**args)
|
|
990
1000
|
@authproxy_pooler_count = args[:authproxy_pooler_count] if args.key?(:authproxy_pooler_count)
|
|
1001
|
+
@authproxy_pooler_scaling_type = args[:authproxy_pooler_scaling_type] if args.key?(:authproxy_pooler_scaling_type)
|
|
991
1002
|
@enabled = args[:enabled] if args.key?(:enabled)
|
|
992
1003
|
@flags = args[:flags] if args.key?(:flags)
|
|
993
1004
|
@pooler_count = args[:pooler_count] if args.key?(:pooler_count)
|
|
1005
|
+
@pooler_scaling_type = args[:pooler_scaling_type] if args.key?(:pooler_scaling_type)
|
|
994
1006
|
end
|
|
995
1007
|
end
|
|
996
1008
|
|
|
@@ -3773,7 +3785,7 @@ module Google
|
|
|
3773
3785
|
# @return [String]
|
|
3774
3786
|
attr_accessor :feed_type
|
|
3775
3787
|
|
|
3776
|
-
#
|
|
3788
|
+
# Observability metric data.
|
|
3777
3789
|
# Corresponds to the JSON property `observabilityMetricData`
|
|
3778
3790
|
# @return [Google::Apis::AlloydbV1::StorageDatabasecenterPartnerapiV1mainObservabilityMetricData]
|
|
3779
3791
|
attr_accessor :observability_metric_data
|
|
@@ -3916,7 +3928,7 @@ module Google
|
|
|
3916
3928
|
# @return [String]
|
|
3917
3929
|
attr_accessor :signal_type
|
|
3918
3930
|
|
|
3919
|
-
#
|
|
3931
|
+
# Required. The state of the signal, such as if it's ACTIVE or RESOLVED.
|
|
3920
3932
|
# Corresponds to the JSON property `state`
|
|
3921
3933
|
# @return [String]
|
|
3922
3934
|
attr_accessor :state
|
|
@@ -3962,12 +3974,13 @@ module Google
|
|
|
3962
3974
|
# Required. The type of resource this ID is identifying. Ex go/keep-sorted start
|
|
3963
3975
|
# alloydb.googleapis.com/Cluster, alloydb.googleapis.com/Instance, bigtableadmin.
|
|
3964
3976
|
# googleapis.com/Cluster, bigtableadmin.googleapis.com/Instance compute.
|
|
3965
|
-
# googleapis.com/Instance firestore.googleapis.com/Database,
|
|
3966
|
-
# com/Instance, redis.googleapis.com/
|
|
3967
|
-
#
|
|
3968
|
-
# oracledatabase.googleapis.com/
|
|
3969
|
-
#
|
|
3970
|
-
# go/keep-sorted end REQUIRED Please
|
|
3977
|
+
# googleapis.com/Instance firestore.googleapis.com/Database, memorystore.
|
|
3978
|
+
# googleapis.com/Instance, redis.googleapis.com/Instance, redis.googleapis.com/
|
|
3979
|
+
# Cluster, oracledatabase.googleapis.com/CloudExadataInfrastructure
|
|
3980
|
+
# oracledatabase.googleapis.com/CloudVmCluster oracledatabase.googleapis.com/
|
|
3981
|
+
# AutonomousDatabase spanner.googleapis.com/Instance, spanner.googleapis.com/
|
|
3982
|
+
# Database, sqladmin.googleapis.com/Instance, go/keep-sorted end REQUIRED Please
|
|
3983
|
+
# refer go/condor-common-datamodel
|
|
3971
3984
|
# Corresponds to the JSON property `resourceType`
|
|
3972
3985
|
# @return [String]
|
|
3973
3986
|
attr_accessor :resource_type
|
|
@@ -4740,6 +4753,11 @@ module Google
|
|
|
4740
4753
|
# @return [String]
|
|
4741
4754
|
attr_accessor :maintenance_version
|
|
4742
4755
|
|
|
4756
|
+
# Optional. List of next available maintenance versions.
|
|
4757
|
+
# Corresponds to the JSON property `nextAvailableMaintenanceVersions`
|
|
4758
|
+
# @return [Array<String>]
|
|
4759
|
+
attr_accessor :next_available_maintenance_versions
|
|
4760
|
+
|
|
4743
4761
|
# Upcoming maintenance for the database resource. This is generated by SLM once
|
|
4744
4762
|
# the upcoming maintenance schedule is published.
|
|
4745
4763
|
# Corresponds to the JSON property `upcomingMaintenance`
|
|
@@ -4758,6 +4776,7 @@ module Google
|
|
|
4758
4776
|
@maintenance_schedule = args[:maintenance_schedule] if args.key?(:maintenance_schedule)
|
|
4759
4777
|
@maintenance_state = args[:maintenance_state] if args.key?(:maintenance_state)
|
|
4760
4778
|
@maintenance_version = args[:maintenance_version] if args.key?(:maintenance_version)
|
|
4779
|
+
@next_available_maintenance_versions = args[:next_available_maintenance_versions] if args.key?(:next_available_maintenance_versions)
|
|
4761
4780
|
@upcoming_maintenance = args[:upcoming_maintenance] if args.key?(:upcoming_maintenance)
|
|
4762
4781
|
end
|
|
4763
4782
|
end
|
|
@@ -4810,7 +4829,7 @@ module Google
|
|
|
4810
4829
|
# @return [String]
|
|
4811
4830
|
attr_accessor :duration_based_retention
|
|
4812
4831
|
|
|
4813
|
-
#
|
|
4832
|
+
# Quantity based retention period i.e. 7 backups
|
|
4814
4833
|
# Corresponds to the JSON property `quantityBasedRetention`
|
|
4815
4834
|
# @return [Fixnum]
|
|
4816
4835
|
attr_accessor :quantity_based_retention
|
|
@@ -4820,7 +4839,7 @@ module Google
|
|
|
4820
4839
|
# @return [String]
|
|
4821
4840
|
attr_accessor :retention_unit
|
|
4822
4841
|
|
|
4823
|
-
#
|
|
4842
|
+
# Duration based retention period i.e. 172800 seconds (2 days)
|
|
4824
4843
|
# Corresponds to the JSON property `timeBasedRetention`
|
|
4825
4844
|
# @return [String]
|
|
4826
4845
|
attr_accessor :time_based_retention
|
|
@@ -16,13 +16,13 @@ module Google
|
|
|
16
16
|
module Apis
|
|
17
17
|
module AlloydbV1
|
|
18
18
|
# Version of the google-apis-alloydb_v1 gem
|
|
19
|
-
GEM_VERSION = "0.
|
|
19
|
+
GEM_VERSION = "0.63.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
|
-
GENERATOR_VERSION = "0.
|
|
22
|
+
GENERATOR_VERSION = "0.19.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20260701"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -984,9 +984,11 @@ module Google
|
|
|
984
984
|
# @private
|
|
985
985
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
986
986
|
property :authproxy_pooler_count, as: 'authproxyPoolerCount'
|
|
987
|
+
property :authproxy_pooler_scaling_type, as: 'authproxyPoolerScalingType'
|
|
987
988
|
property :enabled, as: 'enabled'
|
|
988
989
|
hash :flags, as: 'flags'
|
|
989
990
|
property :pooler_count, as: 'poolerCount'
|
|
991
|
+
property :pooler_scaling_type, as: 'poolerScalingType'
|
|
990
992
|
end
|
|
991
993
|
end
|
|
992
994
|
|
|
@@ -1956,6 +1958,7 @@ module Google
|
|
|
1956
1958
|
|
|
1957
1959
|
property :maintenance_state, as: 'maintenanceState'
|
|
1958
1960
|
property :maintenance_version, as: 'maintenanceVersion'
|
|
1961
|
+
collection :next_available_maintenance_versions, as: 'nextAvailableMaintenanceVersions'
|
|
1959
1962
|
property :upcoming_maintenance, as: 'upcomingMaintenance', class: Google::Apis::AlloydbV1::StorageDatabasecenterPartnerapiV1mainUpcomingMaintenance, decorator: Google::Apis::AlloydbV1::StorageDatabasecenterPartnerapiV1mainUpcomingMaintenance::Representation
|
|
1960
1963
|
|
|
1961
1964
|
end
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-apis-alloydb_v1
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.63.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_v1/CHANGELOG.md
|
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-alloydb_v1/v0.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-alloydb_v1/v0.63.0
|
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-alloydb_v1
|
|
62
62
|
rdoc_options: []
|
|
63
63
|
require_paths:
|
|
@@ -66,7 +66,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
66
66
|
requirements:
|
|
67
67
|
- - ">="
|
|
68
68
|
- !ruby/object:Gem::Version
|
|
69
|
-
version: '3.
|
|
69
|
+
version: '3.2'
|
|
70
70
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
71
71
|
requirements:
|
|
72
72
|
- - ">="
|