google-apis-alloydb_v1beta 0.52.0 → 0.53.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: 6deaab13ea78d6d86a782f66fbb8f16333971d6ff57ebfd703fad51bd317c3be
|
|
4
|
+
data.tar.gz: 45539a56de145bf8008eaba4a0e12766c3290ad4e11ac4fd5005772f2d0e30e1
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c0f2cd48806524bd3e584ff221c895c50c46f728c1db2f7ef226551d04880169dc0ad5e2a8dc9510da086e7d740eba82e477de6d3e2e32b11f61cababb834d43
|
|
7
|
+
data.tar.gz: a518f6c47433a9a9c33fe008aa5877e90965eb20ea427566c59ab4d3c718d6814a9934f350a921056cadf5f6196a5a2fe5dfaf76e2a46445e013c4c228e128a8
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,10 @@
|
|
|
1
1
|
# Release history for google-apis-alloydb_v1beta
|
|
2
2
|
|
|
3
|
+
### v0.53.0 (2026-06-14)
|
|
4
|
+
|
|
5
|
+
* Regenerated from discovery document revision 20260605
|
|
6
|
+
* Regenerated using generator version 0.19.0
|
|
7
|
+
|
|
3
8
|
### v0.52.0 (2026-05-17)
|
|
4
9
|
|
|
5
10
|
* 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
|
|
@@ -4224,7 +4231,7 @@ module Google
|
|
|
4224
4231
|
# @return [Google::Apis::AlloydbV1beta::StorageDatabasecenterPartnerapiV1mainDatabaseResourceId]
|
|
4225
4232
|
attr_accessor :resource_id
|
|
4226
4233
|
|
|
4227
|
-
# Common model for database resource instance metadata. Next ID:
|
|
4234
|
+
# Common model for database resource instance metadata. Next ID: 35
|
|
4228
4235
|
# Corresponds to the JSON property `resourceMetadata`
|
|
4229
4236
|
# @return [Google::Apis::AlloydbV1beta::StorageDatabasecenterPartnerapiV1mainDatabaseResourceMetadata]
|
|
4230
4237
|
attr_accessor :resource_metadata
|
|
@@ -4422,10 +4429,15 @@ module Google
|
|
|
4422
4429
|
end
|
|
4423
4430
|
end
|
|
4424
4431
|
|
|
4425
|
-
# Common model for database resource instance metadata. Next ID:
|
|
4432
|
+
# Common model for database resource instance metadata. Next ID: 35
|
|
4426
4433
|
class StorageDatabasecenterPartnerapiV1mainDatabaseResourceMetadata
|
|
4427
4434
|
include Google::Apis::Core::Hashable
|
|
4428
4435
|
|
|
4436
|
+
# Field to ingest additional metadata whichd does not support proto format.
|
|
4437
|
+
# Corresponds to the JSON property `additionalMetadata`
|
|
4438
|
+
# @return [Hash<String,Object>]
|
|
4439
|
+
attr_accessor :additional_metadata
|
|
4440
|
+
|
|
4429
4441
|
# Configuration for availability of database instance
|
|
4430
4442
|
# Corresponds to the JSON property `availabilityConfiguration`
|
|
4431
4443
|
# @return [Google::Apis::AlloydbV1beta::StorageDatabasecenterPartnerapiV1mainAvailabilityConfiguration]
|
|
@@ -4499,6 +4511,16 @@ module Google
|
|
|
4499
4511
|
# @return [String]
|
|
4500
4512
|
attr_accessor :instance_type
|
|
4501
4513
|
|
|
4514
|
+
# Field to ingest additional metadata which support proto format.
|
|
4515
|
+
# Corresponds to the JSON property `internalAdditionalMetadata`
|
|
4516
|
+
# @return [Hash<String,Object>]
|
|
4517
|
+
attr_accessor :internal_additional_metadata
|
|
4518
|
+
|
|
4519
|
+
# Used to send IP address information for a database resource.
|
|
4520
|
+
# Corresponds to the JSON property `ipAddress`
|
|
4521
|
+
# @return [Google::Apis::AlloydbV1beta::StorageDatabasecenterPartnerapiV1mainIpAddress]
|
|
4522
|
+
attr_accessor :ip_address
|
|
4523
|
+
|
|
4502
4524
|
# Optional. Whether deletion protection is enabled for this resource.
|
|
4503
4525
|
# Corresponds to the JSON property `isDeletionProtectionEnabled`
|
|
4504
4526
|
# @return [Boolean]
|
|
@@ -4599,6 +4621,7 @@ module Google
|
|
|
4599
4621
|
|
|
4600
4622
|
# Update properties of this object
|
|
4601
4623
|
def update!(**args)
|
|
4624
|
+
@additional_metadata = args[:additional_metadata] if args.key?(:additional_metadata)
|
|
4602
4625
|
@availability_configuration = args[:availability_configuration] if args.key?(:availability_configuration)
|
|
4603
4626
|
@backup_configuration = args[:backup_configuration] if args.key?(:backup_configuration)
|
|
4604
4627
|
@backup_run = args[:backup_run] if args.key?(:backup_run)
|
|
@@ -4612,6 +4635,8 @@ module Google
|
|
|
4612
4635
|
@gcbdr_configuration = args[:gcbdr_configuration] if args.key?(:gcbdr_configuration)
|
|
4613
4636
|
@id = args[:id] if args.key?(:id)
|
|
4614
4637
|
@instance_type = args[:instance_type] if args.key?(:instance_type)
|
|
4638
|
+
@internal_additional_metadata = args[:internal_additional_metadata] if args.key?(:internal_additional_metadata)
|
|
4639
|
+
@ip_address = args[:ip_address] if args.key?(:ip_address)
|
|
4615
4640
|
@is_deletion_protection_enabled = args[:is_deletion_protection_enabled] if args.key?(:is_deletion_protection_enabled)
|
|
4616
4641
|
@location = args[:location] if args.key?(:location)
|
|
4617
4642
|
@machine_configuration = args[:machine_configuration] if args.key?(:machine_configuration)
|
|
@@ -4874,6 +4899,34 @@ module Google
|
|
|
4874
4899
|
end
|
|
4875
4900
|
end
|
|
4876
4901
|
|
|
4902
|
+
# Used to send IP address information for a database resource.
|
|
4903
|
+
class StorageDatabasecenterPartnerapiV1mainIpAddress
|
|
4904
|
+
include Google::Apis::Core::Hashable
|
|
4905
|
+
|
|
4906
|
+
# The private IP address assigned to the resource within a Virtual Private Cloud
|
|
4907
|
+
# (VPC). This IP is only reachable from within the same VPC network. Stored in
|
|
4908
|
+
# standard string format (e.g., "10.0.0.2").
|
|
4909
|
+
# Corresponds to the JSON property `privateIp`
|
|
4910
|
+
# @return [String]
|
|
4911
|
+
attr_accessor :private_ip
|
|
4912
|
+
|
|
4913
|
+
# The public IP address assigned to the resource. This IP is reachable from the
|
|
4914
|
+
# internet. Stored in standard string format (e.g., "34.72.1.1").
|
|
4915
|
+
# Corresponds to the JSON property `publicIp`
|
|
4916
|
+
# @return [String]
|
|
4917
|
+
attr_accessor :public_ip
|
|
4918
|
+
|
|
4919
|
+
def initialize(**args)
|
|
4920
|
+
update!(**args)
|
|
4921
|
+
end
|
|
4922
|
+
|
|
4923
|
+
# Update properties of this object
|
|
4924
|
+
def update!(**args)
|
|
4925
|
+
@private_ip = args[:private_ip] if args.key?(:private_ip)
|
|
4926
|
+
@public_ip = args[:public_ip] if args.key?(:public_ip)
|
|
4927
|
+
end
|
|
4928
|
+
end
|
|
4929
|
+
|
|
4877
4930
|
# MachineConfiguration describes the configuration of a machine specific to
|
|
4878
4931
|
# Database Resource.
|
|
4879
4932
|
class StorageDatabasecenterPartnerapiV1mainMachineConfiguration
|
|
@@ -5125,6 +5178,11 @@ module Google
|
|
|
5125
5178
|
# @return [String]
|
|
5126
5179
|
attr_accessor :maintenance_version
|
|
5127
5180
|
|
|
5181
|
+
# Optional. List of next available maintenance versions.
|
|
5182
|
+
# Corresponds to the JSON property `nextAvailableMaintenanceVersions`
|
|
5183
|
+
# @return [Array<String>]
|
|
5184
|
+
attr_accessor :next_available_maintenance_versions
|
|
5185
|
+
|
|
5128
5186
|
# Upcoming maintenance for the database resource. This is generated by SLM once
|
|
5129
5187
|
# the upcoming maintenance schedule is published.
|
|
5130
5188
|
# Corresponds to the JSON property `upcomingMaintenance`
|
|
@@ -5143,6 +5201,7 @@ module Google
|
|
|
5143
5201
|
@maintenance_schedule = args[:maintenance_schedule] if args.key?(:maintenance_schedule)
|
|
5144
5202
|
@maintenance_state = args[:maintenance_state] if args.key?(:maintenance_state)
|
|
5145
5203
|
@maintenance_version = args[:maintenance_version] if args.key?(:maintenance_version)
|
|
5204
|
+
@next_available_maintenance_versions = args[:next_available_maintenance_versions] if args.key?(:next_available_maintenance_versions)
|
|
5146
5205
|
@upcoming_maintenance = args[:upcoming_maintenance] if args.key?(:upcoming_maintenance)
|
|
5147
5206
|
end
|
|
5148
5207
|
end
|
|
@@ -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.53.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 = "20260605"
|
|
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
|
|
@@ -1909,6 +1916,7 @@ module Google
|
|
|
1909
1916
|
class StorageDatabasecenterPartnerapiV1mainDatabaseResourceMetadata
|
|
1910
1917
|
# @private
|
|
1911
1918
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1919
|
+
hash :additional_metadata, as: 'additionalMetadata'
|
|
1912
1920
|
property :availability_configuration, as: 'availabilityConfiguration', class: Google::Apis::AlloydbV1beta::StorageDatabasecenterPartnerapiV1mainAvailabilityConfiguration, decorator: Google::Apis::AlloydbV1beta::StorageDatabasecenterPartnerapiV1mainAvailabilityConfiguration::Representation
|
|
1913
1921
|
|
|
1914
1922
|
property :backup_configuration, as: 'backupConfiguration', class: Google::Apis::AlloydbV1beta::StorageDatabasecenterPartnerapiV1mainBackupConfiguration, decorator: Google::Apis::AlloydbV1beta::StorageDatabasecenterPartnerapiV1mainBackupConfiguration::Representation
|
|
@@ -1930,6 +1938,9 @@ module Google
|
|
|
1930
1938
|
property :id, as: 'id', class: Google::Apis::AlloydbV1beta::StorageDatabasecenterPartnerapiV1mainDatabaseResourceId, decorator: Google::Apis::AlloydbV1beta::StorageDatabasecenterPartnerapiV1mainDatabaseResourceId::Representation
|
|
1931
1939
|
|
|
1932
1940
|
property :instance_type, as: 'instanceType'
|
|
1941
|
+
hash :internal_additional_metadata, as: 'internalAdditionalMetadata'
|
|
1942
|
+
property :ip_address, as: 'ipAddress', class: Google::Apis::AlloydbV1beta::StorageDatabasecenterPartnerapiV1mainIpAddress, decorator: Google::Apis::AlloydbV1beta::StorageDatabasecenterPartnerapiV1mainIpAddress::Representation
|
|
1943
|
+
|
|
1933
1944
|
property :is_deletion_protection_enabled, as: 'isDeletionProtectionEnabled'
|
|
1934
1945
|
property :location, as: 'location'
|
|
1935
1946
|
property :machine_configuration, as: 'machineConfiguration', class: Google::Apis::AlloydbV1beta::StorageDatabasecenterPartnerapiV1mainMachineConfiguration, decorator: Google::Apis::AlloydbV1beta::StorageDatabasecenterPartnerapiV1mainMachineConfiguration::Representation
|
|
@@ -2019,6 +2030,14 @@ module Google
|
|
|
2019
2030
|
end
|
|
2020
2031
|
end
|
|
2021
2032
|
|
|
2033
|
+
class StorageDatabasecenterPartnerapiV1mainIpAddress
|
|
2034
|
+
# @private
|
|
2035
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
2036
|
+
property :private_ip, as: 'privateIp'
|
|
2037
|
+
property :public_ip, as: 'publicIp'
|
|
2038
|
+
end
|
|
2039
|
+
end
|
|
2040
|
+
|
|
2022
2041
|
class StorageDatabasecenterPartnerapiV1mainMachineConfiguration
|
|
2023
2042
|
# @private
|
|
2024
2043
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -2084,6 +2103,7 @@ module Google
|
|
|
2084
2103
|
|
|
2085
2104
|
property :maintenance_state, as: 'maintenanceState'
|
|
2086
2105
|
property :maintenance_version, as: 'maintenanceVersion'
|
|
2106
|
+
collection :next_available_maintenance_versions, as: 'nextAvailableMaintenanceVersions'
|
|
2087
2107
|
property :upcoming_maintenance, as: 'upcomingMaintenance', class: Google::Apis::AlloydbV1beta::StorageDatabasecenterPartnerapiV1mainUpcomingMaintenance, decorator: Google::Apis::AlloydbV1beta::StorageDatabasecenterPartnerapiV1mainUpcomingMaintenance::Representation
|
|
2088
2108
|
|
|
2089
2109
|
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.53.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.53.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
|
- - ">="
|