google-apis-alloydb_v1alpha 0.53.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: 3ca5cf48bb6efdda8db93d5942608db660a8bfc7fb7a3ced4ce5a163147786f6
|
|
4
|
+
data.tar.gz: cb4ad34025477466e09e59354929146cb9c719eef3d163adc9ddc33217e5dade
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c81ade1243054ea37f7ae2a62afe8e7cf8734a54bcffee137c0330cadfa9530c5e1556338875e6d00e04718ec36c6fbf225825473719a6d55300c19aea186c71
|
|
7
|
+
data.tar.gz: 137be6ce264490eb24ca6f779ac3f575c25129f65a91bb10538349699ef73838a465f008466b28c669d6b73c44197090ef48993eb62341786d2c07f14d016b70
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,10 @@
|
|
|
1
1
|
# Release history for google-apis-alloydb_v1alpha
|
|
2
2
|
|
|
3
|
+
### v0.54.0 (2026-06-14)
|
|
4
|
+
|
|
5
|
+
* Regenerated from discovery document revision 20260605
|
|
6
|
+
* Regenerated using generator version 0.19.0
|
|
7
|
+
|
|
3
8
|
### v0.53.0 (2026-05-31)
|
|
4
9
|
|
|
5
10
|
* 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
|
|
|
@@ -1005,6 +1005,12 @@ module Google
|
|
|
1005
1005
|
# @return [Array<String>]
|
|
1006
1006
|
attr_accessor :pem_certificate_chain
|
|
1007
1007
|
|
|
1008
|
+
# Output only. Specifies the DNS name to use with PSC service automation for the
|
|
1009
|
+
# Instance.
|
|
1010
|
+
# Corresponds to the JSON property `pscAutoDnsName`
|
|
1011
|
+
# @return [String]
|
|
1012
|
+
attr_accessor :psc_auto_dns_name
|
|
1013
|
+
|
|
1008
1014
|
# Output only. The DNS name to use with PSC for the Instance.
|
|
1009
1015
|
# Corresponds to the JSON property `pscDnsName`
|
|
1010
1016
|
# @return [String]
|
|
@@ -1027,6 +1033,7 @@ module Google
|
|
|
1027
1033
|
@ip_address = args[:ip_address] if args.key?(:ip_address)
|
|
1028
1034
|
@name = args[:name] if args.key?(:name)
|
|
1029
1035
|
@pem_certificate_chain = args[:pem_certificate_chain] if args.key?(:pem_certificate_chain)
|
|
1036
|
+
@psc_auto_dns_name = args[:psc_auto_dns_name] if args.key?(:psc_auto_dns_name)
|
|
1030
1037
|
@psc_dns_name = args[:psc_dns_name] if args.key?(:psc_dns_name)
|
|
1031
1038
|
@public_ip_address = args[:public_ip_address] if args.key?(:public_ip_address)
|
|
1032
1039
|
end
|
|
@@ -5205,6 +5212,11 @@ module Google
|
|
|
5205
5212
|
# @return [String]
|
|
5206
5213
|
attr_accessor :maintenance_version
|
|
5207
5214
|
|
|
5215
|
+
# Optional. List of next available maintenance versions.
|
|
5216
|
+
# Corresponds to the JSON property `nextAvailableMaintenanceVersions`
|
|
5217
|
+
# @return [Array<String>]
|
|
5218
|
+
attr_accessor :next_available_maintenance_versions
|
|
5219
|
+
|
|
5208
5220
|
# Upcoming maintenance for the database resource. This is generated by SLM once
|
|
5209
5221
|
# the upcoming maintenance schedule is published.
|
|
5210
5222
|
# Corresponds to the JSON property `upcomingMaintenance`
|
|
@@ -5223,6 +5235,7 @@ module Google
|
|
|
5223
5235
|
@maintenance_schedule = args[:maintenance_schedule] if args.key?(:maintenance_schedule)
|
|
5224
5236
|
@maintenance_state = args[:maintenance_state] if args.key?(:maintenance_state)
|
|
5225
5237
|
@maintenance_version = args[:maintenance_version] if args.key?(:maintenance_version)
|
|
5238
|
+
@next_available_maintenance_versions = args[:next_available_maintenance_versions] if args.key?(:next_available_maintenance_versions)
|
|
5226
5239
|
@upcoming_maintenance = args[:upcoming_maintenance] if args.key?(:upcoming_maintenance)
|
|
5227
5240
|
end
|
|
5228
5241
|
end
|
|
@@ -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.
|
|
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 = "20260605"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -1047,6 +1047,7 @@ module Google
|
|
|
1047
1047
|
property :ip_address, as: 'ipAddress'
|
|
1048
1048
|
property :name, as: 'name'
|
|
1049
1049
|
collection :pem_certificate_chain, as: 'pemCertificateChain'
|
|
1050
|
+
property :psc_auto_dns_name, as: 'pscAutoDnsName'
|
|
1050
1051
|
property :psc_dns_name, as: 'pscDnsName'
|
|
1051
1052
|
property :public_ip_address, as: 'publicIpAddress'
|
|
1052
1053
|
end
|
|
@@ -2117,6 +2118,7 @@ module Google
|
|
|
2117
2118
|
|
|
2118
2119
|
property :maintenance_state, as: 'maintenanceState'
|
|
2119
2120
|
property :maintenance_version, as: 'maintenanceVersion'
|
|
2121
|
+
collection :next_available_maintenance_versions, as: 'nextAvailableMaintenanceVersions'
|
|
2120
2122
|
property :upcoming_maintenance, as: 'upcomingMaintenance', class: Google::Apis::AlloydbV1alpha::StorageDatabasecenterPartnerapiV1mainUpcomingMaintenance, decorator: Google::Apis::AlloydbV1alpha::StorageDatabasecenterPartnerapiV1mainUpcomingMaintenance::Representation
|
|
2121
2123
|
|
|
2122
2124
|
end
|
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.
|
|
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_v1alpha/CHANGELOG.md
|
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-alloydb_v1alpha/v0.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-alloydb_v1alpha/v0.54.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:
|
|
@@ -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
|
- - ">="
|