google-apis-alloydb_v1beta 0.52.0 → 0.54.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: '09f9cea9415aabe0c6c40bf25cf2166997db483f19cd8606bda1f1f90b112839'
|
|
4
|
+
data.tar.gz: b25dcac034499184dabe5f8a093e8052d18e85a30cb05f38e5913f034da67857
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 3e8341237c38f0a56a8aab79a5ba7ff824d4ee9c55d027dd0e162ecae76603beed1c6c2ab42781b4648ba5680ad57333f4acf3d4751b243bd653747fcff81e99
|
|
7
|
+
data.tar.gz: 76ea55421f30d92167b77d367652bed7cc7e5808535caece841612442053691c84f26e6af7552930fc4622ee2c81e202dc335299fd98690f74de07020e7ad8fc
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
# Release history for google-apis-alloydb_v1beta
|
|
2
2
|
|
|
3
|
+
### v0.54.0 (2026-07-12)
|
|
4
|
+
|
|
5
|
+
* Regenerated from discovery document revision 20260701
|
|
6
|
+
|
|
7
|
+
### v0.53.0 (2026-06-14)
|
|
8
|
+
|
|
9
|
+
* Regenerated from discovery document revision 20260605
|
|
10
|
+
* Regenerated using generator version 0.19.0
|
|
11
|
+
|
|
3
12
|
### v0.52.0 (2026-05-17)
|
|
4
13
|
|
|
5
14
|
* Regenerated from discovery document revision 20260507
|
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
|
|
|
@@ -978,6 +978,12 @@ module Google
|
|
|
978
978
|
# @return [Array<String>]
|
|
979
979
|
attr_accessor :pem_certificate_chain
|
|
980
980
|
|
|
981
|
+
# Output only. Specifies the DNS name to use with PSC service automation for the
|
|
982
|
+
# Instance.
|
|
983
|
+
# Corresponds to the JSON property `pscAutoDnsName`
|
|
984
|
+
# @return [String]
|
|
985
|
+
attr_accessor :psc_auto_dns_name
|
|
986
|
+
|
|
981
987
|
# Output only. The DNS name to use with PSC for the Instance.
|
|
982
988
|
# Corresponds to the JSON property `pscDnsName`
|
|
983
989
|
# @return [String]
|
|
@@ -1000,6 +1006,7 @@ module Google
|
|
|
1000
1006
|
@ip_address = args[:ip_address] if args.key?(:ip_address)
|
|
1001
1007
|
@name = args[:name] if args.key?(:name)
|
|
1002
1008
|
@pem_certificate_chain = args[:pem_certificate_chain] if args.key?(:pem_certificate_chain)
|
|
1009
|
+
@psc_auto_dns_name = args[:psc_auto_dns_name] if args.key?(:psc_auto_dns_name)
|
|
1003
1010
|
@psc_dns_name = args[:psc_dns_name] if args.key?(:psc_dns_name)
|
|
1004
1011
|
@public_ip_address = args[:public_ip_address] if args.key?(:public_ip_address)
|
|
1005
1012
|
end
|
|
@@ -1014,6 +1021,11 @@ module Google
|
|
|
1014
1021
|
# @return [Fixnum]
|
|
1015
1022
|
attr_accessor :authproxy_pooler_count
|
|
1016
1023
|
|
|
1024
|
+
# Optional. The scaling type of the AuthProxy pooler.
|
|
1025
|
+
# Corresponds to the JSON property `authproxyPoolerScalingType`
|
|
1026
|
+
# @return [String]
|
|
1027
|
+
attr_accessor :authproxy_pooler_scaling_type
|
|
1028
|
+
|
|
1017
1029
|
# Optional. Whether to enable Managed Connection Pool (MCP).
|
|
1018
1030
|
# Corresponds to the JSON property `enabled`
|
|
1019
1031
|
# @return [Boolean]
|
|
@@ -1030,6 +1042,11 @@ module Google
|
|
|
1030
1042
|
# @return [Fixnum]
|
|
1031
1043
|
attr_accessor :pooler_count
|
|
1032
1044
|
|
|
1045
|
+
# Optional. The scaling type of the regular pooler.
|
|
1046
|
+
# Corresponds to the JSON property `poolerScalingType`
|
|
1047
|
+
# @return [String]
|
|
1048
|
+
attr_accessor :pooler_scaling_type
|
|
1049
|
+
|
|
1033
1050
|
def initialize(**args)
|
|
1034
1051
|
update!(**args)
|
|
1035
1052
|
end
|
|
@@ -1037,9 +1054,11 @@ module Google
|
|
|
1037
1054
|
# Update properties of this object
|
|
1038
1055
|
def update!(**args)
|
|
1039
1056
|
@authproxy_pooler_count = args[:authproxy_pooler_count] if args.key?(:authproxy_pooler_count)
|
|
1057
|
+
@authproxy_pooler_scaling_type = args[:authproxy_pooler_scaling_type] if args.key?(:authproxy_pooler_scaling_type)
|
|
1040
1058
|
@enabled = args[:enabled] if args.key?(:enabled)
|
|
1041
1059
|
@flags = args[:flags] if args.key?(:flags)
|
|
1042
1060
|
@pooler_count = args[:pooler_count] if args.key?(:pooler_count)
|
|
1061
|
+
@pooler_scaling_type = args[:pooler_scaling_type] if args.key?(:pooler_scaling_type)
|
|
1043
1062
|
end
|
|
1044
1063
|
end
|
|
1045
1064
|
|
|
@@ -4204,7 +4223,7 @@ module Google
|
|
|
4204
4223
|
# @return [String]
|
|
4205
4224
|
attr_accessor :feed_type
|
|
4206
4225
|
|
|
4207
|
-
#
|
|
4226
|
+
# Observability metric data.
|
|
4208
4227
|
# Corresponds to the JSON property `observabilityMetricData`
|
|
4209
4228
|
# @return [Google::Apis::AlloydbV1beta::StorageDatabasecenterPartnerapiV1mainObservabilityMetricData]
|
|
4210
4229
|
attr_accessor :observability_metric_data
|
|
@@ -4224,7 +4243,7 @@ module Google
|
|
|
4224
4243
|
# @return [Google::Apis::AlloydbV1beta::StorageDatabasecenterPartnerapiV1mainDatabaseResourceId]
|
|
4225
4244
|
attr_accessor :resource_id
|
|
4226
4245
|
|
|
4227
|
-
# Common model for database resource instance metadata. Next ID:
|
|
4246
|
+
# Common model for database resource instance metadata. Next ID: 35
|
|
4228
4247
|
# Corresponds to the JSON property `resourceMetadata`
|
|
4229
4248
|
# @return [Google::Apis::AlloydbV1beta::StorageDatabasecenterPartnerapiV1mainDatabaseResourceMetadata]
|
|
4230
4249
|
attr_accessor :resource_metadata
|
|
@@ -4347,7 +4366,7 @@ module Google
|
|
|
4347
4366
|
# @return [String]
|
|
4348
4367
|
attr_accessor :signal_type
|
|
4349
4368
|
|
|
4350
|
-
#
|
|
4369
|
+
# Required. The state of the signal, such as if it's ACTIVE or RESOLVED.
|
|
4351
4370
|
# Corresponds to the JSON property `state`
|
|
4352
4371
|
# @return [String]
|
|
4353
4372
|
attr_accessor :state
|
|
@@ -4393,12 +4412,13 @@ module Google
|
|
|
4393
4412
|
# Required. The type of resource this ID is identifying. Ex go/keep-sorted start
|
|
4394
4413
|
# alloydb.googleapis.com/Cluster, alloydb.googleapis.com/Instance, bigtableadmin.
|
|
4395
4414
|
# googleapis.com/Cluster, bigtableadmin.googleapis.com/Instance compute.
|
|
4396
|
-
# googleapis.com/Instance firestore.googleapis.com/Database,
|
|
4397
|
-
# com/Instance, redis.googleapis.com/
|
|
4398
|
-
#
|
|
4399
|
-
# oracledatabase.googleapis.com/
|
|
4400
|
-
#
|
|
4401
|
-
# go/keep-sorted end REQUIRED Please
|
|
4415
|
+
# googleapis.com/Instance firestore.googleapis.com/Database, memorystore.
|
|
4416
|
+
# googleapis.com/Instance, redis.googleapis.com/Instance, redis.googleapis.com/
|
|
4417
|
+
# Cluster, oracledatabase.googleapis.com/CloudExadataInfrastructure
|
|
4418
|
+
# oracledatabase.googleapis.com/CloudVmCluster oracledatabase.googleapis.com/
|
|
4419
|
+
# AutonomousDatabase spanner.googleapis.com/Instance, spanner.googleapis.com/
|
|
4420
|
+
# Database, sqladmin.googleapis.com/Instance, go/keep-sorted end REQUIRED Please
|
|
4421
|
+
# refer go/condor-common-datamodel
|
|
4402
4422
|
# Corresponds to the JSON property `resourceType`
|
|
4403
4423
|
# @return [String]
|
|
4404
4424
|
attr_accessor :resource_type
|
|
@@ -4422,10 +4442,15 @@ module Google
|
|
|
4422
4442
|
end
|
|
4423
4443
|
end
|
|
4424
4444
|
|
|
4425
|
-
# Common model for database resource instance metadata. Next ID:
|
|
4445
|
+
# Common model for database resource instance metadata. Next ID: 35
|
|
4426
4446
|
class StorageDatabasecenterPartnerapiV1mainDatabaseResourceMetadata
|
|
4427
4447
|
include Google::Apis::Core::Hashable
|
|
4428
4448
|
|
|
4449
|
+
# Field to ingest additional metadata whichd does not support proto format.
|
|
4450
|
+
# Corresponds to the JSON property `additionalMetadata`
|
|
4451
|
+
# @return [Hash<String,Object>]
|
|
4452
|
+
attr_accessor :additional_metadata
|
|
4453
|
+
|
|
4429
4454
|
# Configuration for availability of database instance
|
|
4430
4455
|
# Corresponds to the JSON property `availabilityConfiguration`
|
|
4431
4456
|
# @return [Google::Apis::AlloydbV1beta::StorageDatabasecenterPartnerapiV1mainAvailabilityConfiguration]
|
|
@@ -4499,6 +4524,16 @@ module Google
|
|
|
4499
4524
|
# @return [String]
|
|
4500
4525
|
attr_accessor :instance_type
|
|
4501
4526
|
|
|
4527
|
+
# Field to ingest additional metadata which support proto format.
|
|
4528
|
+
# Corresponds to the JSON property `internalAdditionalMetadata`
|
|
4529
|
+
# @return [Hash<String,Object>]
|
|
4530
|
+
attr_accessor :internal_additional_metadata
|
|
4531
|
+
|
|
4532
|
+
# Used to send IP address information for a database resource.
|
|
4533
|
+
# Corresponds to the JSON property `ipAddress`
|
|
4534
|
+
# @return [Google::Apis::AlloydbV1beta::StorageDatabasecenterPartnerapiV1mainIpAddress]
|
|
4535
|
+
attr_accessor :ip_address
|
|
4536
|
+
|
|
4502
4537
|
# Optional. Whether deletion protection is enabled for this resource.
|
|
4503
4538
|
# Corresponds to the JSON property `isDeletionProtectionEnabled`
|
|
4504
4539
|
# @return [Boolean]
|
|
@@ -4599,6 +4634,7 @@ module Google
|
|
|
4599
4634
|
|
|
4600
4635
|
# Update properties of this object
|
|
4601
4636
|
def update!(**args)
|
|
4637
|
+
@additional_metadata = args[:additional_metadata] if args.key?(:additional_metadata)
|
|
4602
4638
|
@availability_configuration = args[:availability_configuration] if args.key?(:availability_configuration)
|
|
4603
4639
|
@backup_configuration = args[:backup_configuration] if args.key?(:backup_configuration)
|
|
4604
4640
|
@backup_run = args[:backup_run] if args.key?(:backup_run)
|
|
@@ -4612,6 +4648,8 @@ module Google
|
|
|
4612
4648
|
@gcbdr_configuration = args[:gcbdr_configuration] if args.key?(:gcbdr_configuration)
|
|
4613
4649
|
@id = args[:id] if args.key?(:id)
|
|
4614
4650
|
@instance_type = args[:instance_type] if args.key?(:instance_type)
|
|
4651
|
+
@internal_additional_metadata = args[:internal_additional_metadata] if args.key?(:internal_additional_metadata)
|
|
4652
|
+
@ip_address = args[:ip_address] if args.key?(:ip_address)
|
|
4615
4653
|
@is_deletion_protection_enabled = args[:is_deletion_protection_enabled] if args.key?(:is_deletion_protection_enabled)
|
|
4616
4654
|
@location = args[:location] if args.key?(:location)
|
|
4617
4655
|
@machine_configuration = args[:machine_configuration] if args.key?(:machine_configuration)
|
|
@@ -4874,6 +4912,34 @@ module Google
|
|
|
4874
4912
|
end
|
|
4875
4913
|
end
|
|
4876
4914
|
|
|
4915
|
+
# Used to send IP address information for a database resource.
|
|
4916
|
+
class StorageDatabasecenterPartnerapiV1mainIpAddress
|
|
4917
|
+
include Google::Apis::Core::Hashable
|
|
4918
|
+
|
|
4919
|
+
# The private IP address assigned to the resource within a Virtual Private Cloud
|
|
4920
|
+
# (VPC). This IP is only reachable from within the same VPC network. Stored in
|
|
4921
|
+
# standard string format (e.g., "10.0.0.2").
|
|
4922
|
+
# Corresponds to the JSON property `privateIp`
|
|
4923
|
+
# @return [String]
|
|
4924
|
+
attr_accessor :private_ip
|
|
4925
|
+
|
|
4926
|
+
# The public IP address assigned to the resource. This IP is reachable from the
|
|
4927
|
+
# internet. Stored in standard string format (e.g., "34.72.1.1").
|
|
4928
|
+
# Corresponds to the JSON property `publicIp`
|
|
4929
|
+
# @return [String]
|
|
4930
|
+
attr_accessor :public_ip
|
|
4931
|
+
|
|
4932
|
+
def initialize(**args)
|
|
4933
|
+
update!(**args)
|
|
4934
|
+
end
|
|
4935
|
+
|
|
4936
|
+
# Update properties of this object
|
|
4937
|
+
def update!(**args)
|
|
4938
|
+
@private_ip = args[:private_ip] if args.key?(:private_ip)
|
|
4939
|
+
@public_ip = args[:public_ip] if args.key?(:public_ip)
|
|
4940
|
+
end
|
|
4941
|
+
end
|
|
4942
|
+
|
|
4877
4943
|
# MachineConfiguration describes the configuration of a machine specific to
|
|
4878
4944
|
# Database Resource.
|
|
4879
4945
|
class StorageDatabasecenterPartnerapiV1mainMachineConfiguration
|
|
@@ -5125,6 +5191,11 @@ module Google
|
|
|
5125
5191
|
# @return [String]
|
|
5126
5192
|
attr_accessor :maintenance_version
|
|
5127
5193
|
|
|
5194
|
+
# Optional. List of next available maintenance versions.
|
|
5195
|
+
# Corresponds to the JSON property `nextAvailableMaintenanceVersions`
|
|
5196
|
+
# @return [Array<String>]
|
|
5197
|
+
attr_accessor :next_available_maintenance_versions
|
|
5198
|
+
|
|
5128
5199
|
# Upcoming maintenance for the database resource. This is generated by SLM once
|
|
5129
5200
|
# the upcoming maintenance schedule is published.
|
|
5130
5201
|
# Corresponds to the JSON property `upcomingMaintenance`
|
|
@@ -5143,6 +5214,7 @@ module Google
|
|
|
5143
5214
|
@maintenance_schedule = args[:maintenance_schedule] if args.key?(:maintenance_schedule)
|
|
5144
5215
|
@maintenance_state = args[:maintenance_state] if args.key?(:maintenance_state)
|
|
5145
5216
|
@maintenance_version = args[:maintenance_version] if args.key?(:maintenance_version)
|
|
5217
|
+
@next_available_maintenance_versions = args[:next_available_maintenance_versions] if args.key?(:next_available_maintenance_versions)
|
|
5146
5218
|
@upcoming_maintenance = args[:upcoming_maintenance] if args.key?(:upcoming_maintenance)
|
|
5147
5219
|
end
|
|
5148
5220
|
end
|
|
@@ -5195,7 +5267,7 @@ module Google
|
|
|
5195
5267
|
# @return [String]
|
|
5196
5268
|
attr_accessor :duration_based_retention
|
|
5197
5269
|
|
|
5198
|
-
#
|
|
5270
|
+
# Quantity based retention period i.e. 7 backups
|
|
5199
5271
|
# Corresponds to the JSON property `quantityBasedRetention`
|
|
5200
5272
|
# @return [Fixnum]
|
|
5201
5273
|
attr_accessor :quantity_based_retention
|
|
@@ -5205,7 +5277,7 @@ module Google
|
|
|
5205
5277
|
# @return [String]
|
|
5206
5278
|
attr_accessor :retention_unit
|
|
5207
5279
|
|
|
5208
|
-
#
|
|
5280
|
+
# Duration based retention period i.e. 172800 seconds (2 days)
|
|
5209
5281
|
# Corresponds to the JSON property `timeBasedRetention`
|
|
5210
5282
|
# @return [String]
|
|
5211
5283
|
attr_accessor :time_based_retention
|
|
@@ -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.54.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
|
|
@@ -640,6 +640,12 @@ module Google
|
|
|
640
640
|
include Google::Apis::Core::JsonObjectSupport
|
|
641
641
|
end
|
|
642
642
|
|
|
643
|
+
class StorageDatabasecenterPartnerapiV1mainIpAddress
|
|
644
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
645
|
+
|
|
646
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
647
|
+
end
|
|
648
|
+
|
|
643
649
|
class StorageDatabasecenterPartnerapiV1mainMachineConfiguration
|
|
644
650
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
645
651
|
|
|
@@ -1027,6 +1033,7 @@ module Google
|
|
|
1027
1033
|
property :ip_address, as: 'ipAddress'
|
|
1028
1034
|
property :name, as: 'name'
|
|
1029
1035
|
collection :pem_certificate_chain, as: 'pemCertificateChain'
|
|
1036
|
+
property :psc_auto_dns_name, as: 'pscAutoDnsName'
|
|
1030
1037
|
property :psc_dns_name, as: 'pscDnsName'
|
|
1031
1038
|
property :public_ip_address, as: 'publicIpAddress'
|
|
1032
1039
|
end
|
|
@@ -1036,9 +1043,11 @@ module Google
|
|
|
1036
1043
|
# @private
|
|
1037
1044
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1038
1045
|
property :authproxy_pooler_count, as: 'authproxyPoolerCount'
|
|
1046
|
+
property :authproxy_pooler_scaling_type, as: 'authproxyPoolerScalingType'
|
|
1039
1047
|
property :enabled, as: 'enabled'
|
|
1040
1048
|
hash :flags, as: 'flags'
|
|
1041
1049
|
property :pooler_count, as: 'poolerCount'
|
|
1050
|
+
property :pooler_scaling_type, as: 'poolerScalingType'
|
|
1042
1051
|
end
|
|
1043
1052
|
end
|
|
1044
1053
|
|
|
@@ -1909,6 +1918,7 @@ module Google
|
|
|
1909
1918
|
class StorageDatabasecenterPartnerapiV1mainDatabaseResourceMetadata
|
|
1910
1919
|
# @private
|
|
1911
1920
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1921
|
+
hash :additional_metadata, as: 'additionalMetadata'
|
|
1912
1922
|
property :availability_configuration, as: 'availabilityConfiguration', class: Google::Apis::AlloydbV1beta::StorageDatabasecenterPartnerapiV1mainAvailabilityConfiguration, decorator: Google::Apis::AlloydbV1beta::StorageDatabasecenterPartnerapiV1mainAvailabilityConfiguration::Representation
|
|
1913
1923
|
|
|
1914
1924
|
property :backup_configuration, as: 'backupConfiguration', class: Google::Apis::AlloydbV1beta::StorageDatabasecenterPartnerapiV1mainBackupConfiguration, decorator: Google::Apis::AlloydbV1beta::StorageDatabasecenterPartnerapiV1mainBackupConfiguration::Representation
|
|
@@ -1930,6 +1940,9 @@ module Google
|
|
|
1930
1940
|
property :id, as: 'id', class: Google::Apis::AlloydbV1beta::StorageDatabasecenterPartnerapiV1mainDatabaseResourceId, decorator: Google::Apis::AlloydbV1beta::StorageDatabasecenterPartnerapiV1mainDatabaseResourceId::Representation
|
|
1931
1941
|
|
|
1932
1942
|
property :instance_type, as: 'instanceType'
|
|
1943
|
+
hash :internal_additional_metadata, as: 'internalAdditionalMetadata'
|
|
1944
|
+
property :ip_address, as: 'ipAddress', class: Google::Apis::AlloydbV1beta::StorageDatabasecenterPartnerapiV1mainIpAddress, decorator: Google::Apis::AlloydbV1beta::StorageDatabasecenterPartnerapiV1mainIpAddress::Representation
|
|
1945
|
+
|
|
1933
1946
|
property :is_deletion_protection_enabled, as: 'isDeletionProtectionEnabled'
|
|
1934
1947
|
property :location, as: 'location'
|
|
1935
1948
|
property :machine_configuration, as: 'machineConfiguration', class: Google::Apis::AlloydbV1beta::StorageDatabasecenterPartnerapiV1mainMachineConfiguration, decorator: Google::Apis::AlloydbV1beta::StorageDatabasecenterPartnerapiV1mainMachineConfiguration::Representation
|
|
@@ -2019,6 +2032,14 @@ module Google
|
|
|
2019
2032
|
end
|
|
2020
2033
|
end
|
|
2021
2034
|
|
|
2035
|
+
class StorageDatabasecenterPartnerapiV1mainIpAddress
|
|
2036
|
+
# @private
|
|
2037
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
2038
|
+
property :private_ip, as: 'privateIp'
|
|
2039
|
+
property :public_ip, as: 'publicIp'
|
|
2040
|
+
end
|
|
2041
|
+
end
|
|
2042
|
+
|
|
2022
2043
|
class StorageDatabasecenterPartnerapiV1mainMachineConfiguration
|
|
2023
2044
|
# @private
|
|
2024
2045
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -2084,6 +2105,7 @@ module Google
|
|
|
2084
2105
|
|
|
2085
2106
|
property :maintenance_state, as: 'maintenanceState'
|
|
2086
2107
|
property :maintenance_version, as: 'maintenanceVersion'
|
|
2108
|
+
collection :next_available_maintenance_versions, as: 'nextAvailableMaintenanceVersions'
|
|
2087
2109
|
property :upcoming_maintenance, as: 'upcomingMaintenance', class: Google::Apis::AlloydbV1beta::StorageDatabasecenterPartnerapiV1mainUpcomingMaintenance, decorator: Google::Apis::AlloydbV1beta::StorageDatabasecenterPartnerapiV1mainUpcomingMaintenance::Representation
|
|
2088
2110
|
|
|
2089
2111
|
end
|
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.54.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.54.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:
|
|
@@ -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
|
- - ">="
|