google-apis-alloydb_v1alpha 0.53.0 → 0.55.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: 2642a2dd490cb8e7371bdf305363ea8a3a98f0cc475a36c7a038f489022dace6
4
- data.tar.gz: ec24e67c2fe494bcd0d7c52c13d9f72e587139d908c3f8cfbc595606347eaca6
3
+ metadata.gz: 05e9b1483a6eddc6dc6f31cd292e9fefb1b7abf163b3e3a38ee839a060250d1f
4
+ data.tar.gz: fe5fd25be9c803c79f6d915bc4ff3798510a54920a6a5d04cb29c52dfbbad5df
5
5
  SHA512:
6
- metadata.gz: 7704ed864240b4cbf0114a6e108534ccab3a83174723a23a7a494386e02301ea764f40b236514c5ff33352d0b11c929cc71d3f92135dcf72069d0b81f8778bbe
7
- data.tar.gz: afcf6458c2cb6924fa1746802f2cb6514f2e27a415de51fafaf13744dfca1d84f69909f0161ca8cb322878a15ab5b2d770575328c89f9f497848baa6d7541b3e
6
+ metadata.gz: 9554dc9f734d79a9ba7930b002da704161d6d0dc1ce37c13f492ab563abff2cd7362d773336a6add9854dd0deb93d47957ea95f7230def429d2c401616680b06
7
+ data.tar.gz: 402d9b868c73b8ed6425a68b65eba237b09fc2259d7c3fe895eb4d239aeaf0e3b885d7c6d8eaf781413b36fb22532792c81b78dad0cc537264f1d5cab2b41c57
data/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # Release history for google-apis-alloydb_v1alpha
2
2
 
3
+ ### v0.55.0 (2026-07-12)
4
+
5
+ * Regenerated from discovery document revision 20260701
6
+
7
+ ### v0.54.0 (2026-06-14)
8
+
9
+ * Regenerated from discovery document revision 20260605
10
+ * Regenerated using generator version 0.19.0
11
+
3
12
  ### v0.53.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.1+.
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
@@ -1041,6 +1048,11 @@ module Google
1041
1048
  # @return [Fixnum]
1042
1049
  attr_accessor :authproxy_pooler_count
1043
1050
 
1051
+ # Optional. The scaling type of the AuthProxy pooler.
1052
+ # Corresponds to the JSON property `authproxyPoolerScalingType`
1053
+ # @return [String]
1054
+ attr_accessor :authproxy_pooler_scaling_type
1055
+
1044
1056
  # Optional. Whether to enable Managed Connection Pool (MCP).
1045
1057
  # Corresponds to the JSON property `enabled`
1046
1058
  # @return [Boolean]
@@ -1057,6 +1069,11 @@ module Google
1057
1069
  # @return [Fixnum]
1058
1070
  attr_accessor :pooler_count
1059
1071
 
1072
+ # Optional. The scaling type of the regular pooler.
1073
+ # Corresponds to the JSON property `poolerScalingType`
1074
+ # @return [String]
1075
+ attr_accessor :pooler_scaling_type
1076
+
1060
1077
  def initialize(**args)
1061
1078
  update!(**args)
1062
1079
  end
@@ -1064,9 +1081,11 @@ module Google
1064
1081
  # Update properties of this object
1065
1082
  def update!(**args)
1066
1083
  @authproxy_pooler_count = args[:authproxy_pooler_count] if args.key?(:authproxy_pooler_count)
1084
+ @authproxy_pooler_scaling_type = args[:authproxy_pooler_scaling_type] if args.key?(:authproxy_pooler_scaling_type)
1067
1085
  @enabled = args[:enabled] if args.key?(:enabled)
1068
1086
  @flags = args[:flags] if args.key?(:flags)
1069
1087
  @pooler_count = args[:pooler_count] if args.key?(:pooler_count)
1088
+ @pooler_scaling_type = args[:pooler_scaling_type] if args.key?(:pooler_scaling_type)
1070
1089
  end
1071
1090
  end
1072
1091
 
@@ -4238,7 +4257,7 @@ module Google
4238
4257
  # @return [String]
4239
4258
  attr_accessor :feed_type
4240
4259
 
4241
- #
4260
+ # Observability metric data.
4242
4261
  # Corresponds to the JSON property `observabilityMetricData`
4243
4262
  # @return [Google::Apis::AlloydbV1alpha::StorageDatabasecenterPartnerapiV1mainObservabilityMetricData]
4244
4263
  attr_accessor :observability_metric_data
@@ -4381,7 +4400,7 @@ module Google
4381
4400
  # @return [String]
4382
4401
  attr_accessor :signal_type
4383
4402
 
4384
- #
4403
+ # Required. The state of the signal, such as if it's ACTIVE or RESOLVED.
4385
4404
  # Corresponds to the JSON property `state`
4386
4405
  # @return [String]
4387
4406
  attr_accessor :state
@@ -4427,12 +4446,13 @@ module Google
4427
4446
  # Required. The type of resource this ID is identifying. Ex go/keep-sorted start
4428
4447
  # alloydb.googleapis.com/Cluster, alloydb.googleapis.com/Instance, bigtableadmin.
4429
4448
  # googleapis.com/Cluster, bigtableadmin.googleapis.com/Instance compute.
4430
- # googleapis.com/Instance firestore.googleapis.com/Database, redis.googleapis.
4431
- # com/Instance, redis.googleapis.com/Cluster, oracledatabase.googleapis.com/
4432
- # CloudExadataInfrastructure oracledatabase.googleapis.com/CloudVmCluster
4433
- # oracledatabase.googleapis.com/AutonomousDatabase spanner.googleapis.com/
4434
- # Instance, spanner.googleapis.com/Database, sqladmin.googleapis.com/Instance,
4435
- # go/keep-sorted end REQUIRED Please refer go/condor-common-datamodel
4449
+ # googleapis.com/Instance firestore.googleapis.com/Database, memorystore.
4450
+ # googleapis.com/Instance, redis.googleapis.com/Instance, redis.googleapis.com/
4451
+ # Cluster, oracledatabase.googleapis.com/CloudExadataInfrastructure
4452
+ # oracledatabase.googleapis.com/CloudVmCluster oracledatabase.googleapis.com/
4453
+ # AutonomousDatabase spanner.googleapis.com/Instance, spanner.googleapis.com/
4454
+ # Database, sqladmin.googleapis.com/Instance, go/keep-sorted end REQUIRED Please
4455
+ # refer go/condor-common-datamodel
4436
4456
  # Corresponds to the JSON property `resourceType`
4437
4457
  # @return [String]
4438
4458
  attr_accessor :resource_type
@@ -5205,6 +5225,11 @@ module Google
5205
5225
  # @return [String]
5206
5226
  attr_accessor :maintenance_version
5207
5227
 
5228
+ # Optional. List of next available maintenance versions.
5229
+ # Corresponds to the JSON property `nextAvailableMaintenanceVersions`
5230
+ # @return [Array<String>]
5231
+ attr_accessor :next_available_maintenance_versions
5232
+
5208
5233
  # Upcoming maintenance for the database resource. This is generated by SLM once
5209
5234
  # the upcoming maintenance schedule is published.
5210
5235
  # Corresponds to the JSON property `upcomingMaintenance`
@@ -5223,6 +5248,7 @@ module Google
5223
5248
  @maintenance_schedule = args[:maintenance_schedule] if args.key?(:maintenance_schedule)
5224
5249
  @maintenance_state = args[:maintenance_state] if args.key?(:maintenance_state)
5225
5250
  @maintenance_version = args[:maintenance_version] if args.key?(:maintenance_version)
5251
+ @next_available_maintenance_versions = args[:next_available_maintenance_versions] if args.key?(:next_available_maintenance_versions)
5226
5252
  @upcoming_maintenance = args[:upcoming_maintenance] if args.key?(:upcoming_maintenance)
5227
5253
  end
5228
5254
  end
@@ -5275,7 +5301,7 @@ module Google
5275
5301
  # @return [String]
5276
5302
  attr_accessor :duration_based_retention
5277
5303
 
5278
- #
5304
+ # Quantity based retention period i.e. 7 backups
5279
5305
  # Corresponds to the JSON property `quantityBasedRetention`
5280
5306
  # @return [Fixnum]
5281
5307
  attr_accessor :quantity_based_retention
@@ -5285,7 +5311,7 @@ module Google
5285
5311
  # @return [String]
5286
5312
  attr_accessor :retention_unit
5287
5313
 
5288
- #
5314
+ # Duration based retention period i.e. 172800 seconds (2 days)
5289
5315
  # Corresponds to the JSON property `timeBasedRetention`
5290
5316
  # @return [String]
5291
5317
  attr_accessor :time_based_retention
@@ -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.53.0"
19
+ GEM_VERSION = "0.55.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.18.0"
22
+ GENERATOR_VERSION = "0.19.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20260520"
25
+ REVISION = "20260701"
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
@@ -1056,9 +1057,11 @@ module Google
1056
1057
  # @private
1057
1058
  class Representation < Google::Apis::Core::JsonRepresentation
1058
1059
  property :authproxy_pooler_count, as: 'authproxyPoolerCount'
1060
+ property :authproxy_pooler_scaling_type, as: 'authproxyPoolerScalingType'
1059
1061
  property :enabled, as: 'enabled'
1060
1062
  hash :flags, as: 'flags'
1061
1063
  property :pooler_count, as: 'poolerCount'
1064
+ property :pooler_scaling_type, as: 'poolerScalingType'
1062
1065
  end
1063
1066
  end
1064
1067
 
@@ -2117,6 +2120,7 @@ module Google
2117
2120
 
2118
2121
  property :maintenance_state, as: 'maintenanceState'
2119
2122
  property :maintenance_version, as: 'maintenanceVersion'
2123
+ collection :next_available_maintenance_versions, as: 'nextAvailableMaintenanceVersions'
2120
2124
  property :upcoming_maintenance, as: 'upcomingMaintenance', class: Google::Apis::AlloydbV1alpha::StorageDatabasecenterPartnerapiV1mainUpcomingMaintenance, decorator: Google::Apis::AlloydbV1alpha::StorageDatabasecenterPartnerapiV1mainUpcomingMaintenance::Representation
2121
2125
 
2122
2126
  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.53.0
4
+ version: 0.55.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.53.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-alloydb_v1alpha/v0.55.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.1'
69
+ version: '3.2'
70
70
  required_rubygems_version: !ruby/object:Gem::Requirement
71
71
  requirements:
72
72
  - - ">="