google-apis-alloydb_v1 0.30.0 → 0.32.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: e96d15f59a01ddf66376f4db016ed371ec8bba0f8469394b8114c12a5bfe4b9b
4
- data.tar.gz: cafba70c14aabdd4606a2e82f6d7dbcdc9a9127879f5ea5d3bdd415a2fc7302b
3
+ metadata.gz: '088158c5f097812545079c8d6d8e60f99de191d942bbfee77270344686ccdd01'
4
+ data.tar.gz: bc47292ea62357c7687708613fe1f342e15d1eaf496623095f87a30e4ba2c4ca
5
5
  SHA512:
6
- metadata.gz: 1433dee89c92ffbb08271d8576dee14e7a8455b0b73274b989ebb5770cc36b104a9eb1539398e67b5a926847c8270a03071f0a6f4df458e9310879c5f8ad8fff
7
- data.tar.gz: 8b79b0d019cbffb0cf79f57e9f7e9dcb52b2fe02eb47270dee8203d245126ab142ee9822f46bb32d809402820cc1aa48ebdac2b87f5d51200bca30ee59204284
6
+ metadata.gz: 457cf66280abbdc549f0efac8bea0f0f0394c50fd8c1819eb6c13953e030c66a9b22dd585917436d9513a47787a48975425669c80c0381eb70a8d4a06be28c97
7
+ data.tar.gz: ce4288526110a5f23dd7c8c10b212a6a2f91d5ef10ff923748c913467a06530315838b566548aa9ed16dc0108cdb5902fe7780f3349da106dfc69f2b45e0bf94
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-alloydb_v1
2
2
 
3
+ ### v0.32.0 (2025-03-16)
4
+
5
+ * Regenerated from discovery document revision 20250308
6
+
7
+ ### v0.31.0 (2025-03-09)
8
+
9
+ * Regenerated from discovery document revision 20250227
10
+
3
11
  ### v0.30.0 (2025-03-02)
4
12
 
5
13
  * Regenerated from discovery document revision 20250219
@@ -968,6 +968,55 @@ module Google
968
968
  end
969
969
  end
970
970
 
971
+ # DenyMaintenancePeriod definition. Excepting emergencies, maintenance will not
972
+ # be scheduled to start within this deny period. The start_date must be less
973
+ # than the end_date.
974
+ class DenyMaintenancePeriod
975
+ include Google::Apis::Core::Hashable
976
+
977
+ # Represents a whole or partial calendar date, such as a birthday. The time of
978
+ # day and time zone are either specified elsewhere or are insignificant. The
979
+ # date is relative to the Gregorian Calendar. This can represent one of the
980
+ # following: * A full date, with non-zero year, month, and day values. * A month
981
+ # and day, with a zero year (for example, an anniversary). * A year on its own,
982
+ # with a zero month and a zero day. * A year and month, with a zero day (for
983
+ # example, a credit card expiration date). Related types: * google.type.
984
+ # TimeOfDay * google.type.DateTime * google.protobuf.Timestamp
985
+ # Corresponds to the JSON property `endDate`
986
+ # @return [Google::Apis::AlloydbV1::GoogleTypeDate]
987
+ attr_accessor :end_date
988
+
989
+ # Represents a whole or partial calendar date, such as a birthday. The time of
990
+ # day and time zone are either specified elsewhere or are insignificant. The
991
+ # date is relative to the Gregorian Calendar. This can represent one of the
992
+ # following: * A full date, with non-zero year, month, and day values. * A month
993
+ # and day, with a zero year (for example, an anniversary). * A year on its own,
994
+ # with a zero month and a zero day. * A year and month, with a zero day (for
995
+ # example, a credit card expiration date). Related types: * google.type.
996
+ # TimeOfDay * google.type.DateTime * google.protobuf.Timestamp
997
+ # Corresponds to the JSON property `startDate`
998
+ # @return [Google::Apis::AlloydbV1::GoogleTypeDate]
999
+ attr_accessor :start_date
1000
+
1001
+ # Represents a time of day. The date and time zone are either not significant or
1002
+ # are specified elsewhere. An API may choose to allow leap seconds. Related
1003
+ # types are google.type.Date and `google.protobuf.Timestamp`.
1004
+ # Corresponds to the JSON property `time`
1005
+ # @return [Google::Apis::AlloydbV1::GoogleTypeTimeOfDay]
1006
+ attr_accessor :time
1007
+
1008
+ def initialize(**args)
1009
+ update!(**args)
1010
+ end
1011
+
1012
+ # Update properties of this object
1013
+ def update!(**args)
1014
+ @end_date = args[:end_date] if args.key?(:end_date)
1015
+ @start_date = args[:start_date] if args.key?(:start_date)
1016
+ @time = args[:time] if args.key?(:time)
1017
+ end
1018
+ end
1019
+
971
1020
  # A generic empty message that you can re-use to avoid defining duplicated empty
972
1021
  # messages in your APIs. A typical example is to use it as the request or the
973
1022
  # response type of an API method. For instance: service Foo ` rpc Bar(google.
@@ -1219,6 +1268,47 @@ module Google
1219
1268
  end
1220
1269
  end
1221
1270
 
1271
+ # Represents a whole or partial calendar date, such as a birthday. The time of
1272
+ # day and time zone are either specified elsewhere or are insignificant. The
1273
+ # date is relative to the Gregorian Calendar. This can represent one of the
1274
+ # following: * A full date, with non-zero year, month, and day values. * A month
1275
+ # and day, with a zero year (for example, an anniversary). * A year on its own,
1276
+ # with a zero month and a zero day. * A year and month, with a zero day (for
1277
+ # example, a credit card expiration date). Related types: * google.type.
1278
+ # TimeOfDay * google.type.DateTime * google.protobuf.Timestamp
1279
+ class GoogleTypeDate
1280
+ include Google::Apis::Core::Hashable
1281
+
1282
+ # Day of a month. Must be from 1 to 31 and valid for the year and month, or 0 to
1283
+ # specify a year by itself or a year and month where the day isn't significant.
1284
+ # Corresponds to the JSON property `day`
1285
+ # @return [Fixnum]
1286
+ attr_accessor :day
1287
+
1288
+ # Month of a year. Must be from 1 to 12, or 0 to specify a year without a month
1289
+ # and day.
1290
+ # Corresponds to the JSON property `month`
1291
+ # @return [Fixnum]
1292
+ attr_accessor :month
1293
+
1294
+ # Year of the date. Must be from 1 to 9999, or 0 to specify a date without a
1295
+ # year.
1296
+ # Corresponds to the JSON property `year`
1297
+ # @return [Fixnum]
1298
+ attr_accessor :year
1299
+
1300
+ def initialize(**args)
1301
+ update!(**args)
1302
+ end
1303
+
1304
+ # Update properties of this object
1305
+ def update!(**args)
1306
+ @day = args[:day] if args.key?(:day)
1307
+ @month = args[:month] if args.key?(:month)
1308
+ @year = args[:year] if args.key?(:year)
1309
+ end
1310
+ end
1311
+
1222
1312
  # Represents a time of day. The date and time zone are either not significant or
1223
1313
  # are specified elsewhere. An API may choose to allow leap seconds. Related
1224
1314
  # types are google.type.Date and `google.protobuf.Timestamp`.
@@ -1488,6 +1578,11 @@ module Google
1488
1578
  # @return [Array<Google::Apis::AlloydbV1::Node>]
1489
1579
  attr_accessor :nodes
1490
1580
 
1581
+ # Observability Instance specific configuration.
1582
+ # Corresponds to the JSON property `observabilityConfig`
1583
+ # @return [Google::Apis::AlloydbV1::ObservabilityInstanceConfig]
1584
+ attr_accessor :observability_config
1585
+
1491
1586
  # Output only. All outbound public IP addresses configured for the instance.
1492
1587
  # Corresponds to the JSON property `outboundPublicIpAddresses`
1493
1588
  # @return [Array<String>]
@@ -1576,6 +1671,7 @@ module Google
1576
1671
  @name = args[:name] if args.key?(:name)
1577
1672
  @network_config = args[:network_config] if args.key?(:network_config)
1578
1673
  @nodes = args[:nodes] if args.key?(:nodes)
1674
+ @observability_config = args[:observability_config] if args.key?(:observability_config)
1579
1675
  @outbound_public_ip_addresses = args[:outbound_public_ip_addresses] if args.key?(:outbound_public_ip_addresses)
1580
1676
  @psc_instance_config = args[:psc_instance_config] if args.key?(:psc_instance_config)
1581
1677
  @public_ip_address = args[:public_ip_address] if args.key?(:public_ip_address)
@@ -1612,6 +1708,14 @@ module Google
1612
1708
  attr_accessor :enable_public_ip
1613
1709
  alias_method :enable_public_ip?, :enable_public_ip
1614
1710
 
1711
+ # Output only. The resource link for the VPC network in which instance resources
1712
+ # are created and from which they are accessible via Private IP. This will be
1713
+ # the same value as the parent cluster's network. It is specified in the form: //
1714
+ # `projects/`project_number`/global/networks/`network_id``.
1715
+ # Corresponds to the JSON property `network`
1716
+ # @return [String]
1717
+ attr_accessor :network
1718
+
1615
1719
  def initialize(**args)
1616
1720
  update!(**args)
1617
1721
  end
@@ -1621,6 +1725,7 @@ module Google
1621
1725
  @authorized_external_networks = args[:authorized_external_networks] if args.key?(:authorized_external_networks)
1622
1726
  @enable_outbound_public_ip = args[:enable_outbound_public_ip] if args.key?(:enable_outbound_public_ip)
1623
1727
  @enable_public_ip = args[:enable_public_ip] if args.key?(:enable_public_ip)
1728
+ @network = args[:network] if args.key?(:network)
1624
1729
  end
1625
1730
  end
1626
1731
 
@@ -1863,6 +1968,12 @@ module Google
1863
1968
  # @return [Fixnum]
1864
1969
  attr_accessor :cpu_count
1865
1970
 
1971
+ # Machine type of the VM instance. E.g. "n2-highmem-4", "n2-highmem-8", "c4a-
1972
+ # highmem-4-lssd". cpu_count must match the number of vCPUs in the machine type.
1973
+ # Corresponds to the JSON property `machineType`
1974
+ # @return [String]
1975
+ attr_accessor :machine_type
1976
+
1866
1977
  def initialize(**args)
1867
1978
  update!(**args)
1868
1979
  end
@@ -1870,6 +1981,7 @@ module Google
1870
1981
  # Update properties of this object
1871
1982
  def update!(**args)
1872
1983
  @cpu_count = args[:cpu_count] if args.key?(:cpu_count)
1984
+ @machine_type = args[:machine_type] if args.key?(:machine_type)
1873
1985
  end
1874
1986
  end
1875
1987
 
@@ -1900,6 +2012,11 @@ module Google
1900
2012
  class MaintenanceUpdatePolicy
1901
2013
  include Google::Apis::Core::Hashable
1902
2014
 
2015
+ # Periods to deny maintenance. Currently limited to 1.
2016
+ # Corresponds to the JSON property `denyMaintenancePeriods`
2017
+ # @return [Array<Google::Apis::AlloydbV1::DenyMaintenancePeriod>]
2018
+ attr_accessor :deny_maintenance_periods
2019
+
1903
2020
  # Preferred windows to perform maintenance. Currently limited to 1.
1904
2021
  # Corresponds to the JSON property `maintenanceWindows`
1905
2022
  # @return [Array<Google::Apis::AlloydbV1::MaintenanceWindow>]
@@ -1911,6 +2028,7 @@ module Google
1911
2028
 
1912
2029
  # Update properties of this object
1913
2030
  def update!(**args)
2031
+ @deny_maintenance_periods = args[:deny_maintenance_periods] if args.key?(:deny_maintenance_periods)
1914
2032
  @maintenance_windows = args[:maintenance_windows] if args.key?(:maintenance_windows)
1915
2033
  end
1916
2034
  end
@@ -2051,6 +2169,83 @@ module Google
2051
2169
  end
2052
2170
  end
2053
2171
 
2172
+ # Observability Instance specific configuration.
2173
+ class ObservabilityInstanceConfig
2174
+ include Google::Apis::Core::Hashable
2175
+
2176
+ # Observability feature status for an instance. This flag is turned "off" by
2177
+ # default.
2178
+ # Corresponds to the JSON property `enabled`
2179
+ # @return [Boolean]
2180
+ attr_accessor :enabled
2181
+ alias_method :enabled?, :enabled
2182
+
2183
+ # Query string length. The default value is 10k.
2184
+ # Corresponds to the JSON property `maxQueryStringLength`
2185
+ # @return [Fixnum]
2186
+ attr_accessor :max_query_string_length
2187
+
2188
+ # Preserve comments in query string for an instance. This flag is turned "off"
2189
+ # by default.
2190
+ # Corresponds to the JSON property `preserveComments`
2191
+ # @return [Boolean]
2192
+ attr_accessor :preserve_comments
2193
+ alias_method :preserve_comments?, :preserve_comments
2194
+
2195
+ # Number of query execution plans captured by Insights per minute for all
2196
+ # queries combined. The default value is 200. Any integer between 0 to 200 is
2197
+ # considered valid.
2198
+ # Corresponds to the JSON property `queryPlansPerMinute`
2199
+ # @return [Fixnum]
2200
+ attr_accessor :query_plans_per_minute
2201
+
2202
+ # Record application tags for an instance. This flag is turned "off" by default.
2203
+ # Corresponds to the JSON property `recordApplicationTags`
2204
+ # @return [Boolean]
2205
+ attr_accessor :record_application_tags
2206
+ alias_method :record_application_tags?, :record_application_tags
2207
+
2208
+ # Track actively running queries on the instance. If not set, this flag is "off"
2209
+ # by default.
2210
+ # Corresponds to the JSON property `trackActiveQueries`
2211
+ # @return [Boolean]
2212
+ attr_accessor :track_active_queries
2213
+ alias_method :track_active_queries?, :track_active_queries
2214
+
2215
+ # Output only. Track wait event types during query execution for an instance.
2216
+ # This flag is turned "on" by default but tracking is enabled only after
2217
+ # observability enabled flag is also turned on. This is read-only flag and only
2218
+ # modifiable by internal API.
2219
+ # Corresponds to the JSON property `trackWaitEventTypes`
2220
+ # @return [Boolean]
2221
+ attr_accessor :track_wait_event_types
2222
+ alias_method :track_wait_event_types?, :track_wait_event_types
2223
+
2224
+ # Track wait events during query execution for an instance. This flag is turned "
2225
+ # on" by default but tracking is enabled only after observability enabled flag
2226
+ # is also turned on.
2227
+ # Corresponds to the JSON property `trackWaitEvents`
2228
+ # @return [Boolean]
2229
+ attr_accessor :track_wait_events
2230
+ alias_method :track_wait_events?, :track_wait_events
2231
+
2232
+ def initialize(**args)
2233
+ update!(**args)
2234
+ end
2235
+
2236
+ # Update properties of this object
2237
+ def update!(**args)
2238
+ @enabled = args[:enabled] if args.key?(:enabled)
2239
+ @max_query_string_length = args[:max_query_string_length] if args.key?(:max_query_string_length)
2240
+ @preserve_comments = args[:preserve_comments] if args.key?(:preserve_comments)
2241
+ @query_plans_per_minute = args[:query_plans_per_minute] if args.key?(:query_plans_per_minute)
2242
+ @record_application_tags = args[:record_application_tags] if args.key?(:record_application_tags)
2243
+ @track_active_queries = args[:track_active_queries] if args.key?(:track_active_queries)
2244
+ @track_wait_event_types = args[:track_wait_event_types] if args.key?(:track_wait_event_types)
2245
+ @track_wait_events = args[:track_wait_events] if args.key?(:track_wait_events)
2246
+ end
2247
+ end
2248
+
2054
2249
  # This resource represents a long-running operation that is the result of a
2055
2250
  # network API call.
2056
2251
  class Operation
@@ -3639,14 +3834,14 @@ module Google
3639
3834
  class StorageDatabasecenterPartnerapiV1mainMachineConfiguration
3640
3835
  include Google::Apis::Core::Hashable
3641
3836
 
3642
- # The number of CPUs. Deprecated. Use vcpu_count instead. TODO(b/342344482, b/
3643
- # 342346271) add proto validations again after bug fix.
3837
+ # The number of CPUs. Deprecated. Use vcpu_count instead. TODO(b/342344482) add
3838
+ # proto validations again after bug fix.
3644
3839
  # Corresponds to the JSON property `cpuCount`
3645
3840
  # @return [Fixnum]
3646
3841
  attr_accessor :cpu_count
3647
3842
 
3648
- # Memory size in bytes. TODO(b/342344482, b/342346271) add proto validations
3649
- # again after bug fix.
3843
+ # Memory size in bytes. TODO(b/342344482) add proto validations again after bug
3844
+ # fix.
3650
3845
  # Corresponds to the JSON property `memorySizeInBytes`
3651
3846
  # @return [Fixnum]
3652
3847
  attr_accessor :memory_size_in_bytes
@@ -3656,8 +3851,8 @@ module Google
3656
3851
  # @return [Fixnum]
3657
3852
  attr_accessor :shard_count
3658
3853
 
3659
- # Optional. The number of vCPUs. TODO(b/342344482, b/342346271) add proto
3660
- # validations again after bug fix.
3854
+ # Optional. The number of vCPUs. TODO(b/342344482) add proto validations again
3855
+ # after bug fix.
3661
3856
  # Corresponds to the JSON property `vcpuCount`
3662
3857
  # @return [Float]
3663
3858
  attr_accessor :vcpu_count
@@ -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.30.0"
19
+ GEM_VERSION = "0.32.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.16.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20250219"
25
+ REVISION = "20250308"
26
26
  end
27
27
  end
28
28
  end
@@ -118,6 +118,12 @@ module Google
118
118
  include Google::Apis::Core::JsonObjectSupport
119
119
  end
120
120
 
121
+ class DenyMaintenancePeriod
122
+ class Representation < Google::Apis::Core::JsonRepresentation; end
123
+
124
+ include Google::Apis::Core::JsonObjectSupport
125
+ end
126
+
121
127
  class Empty
122
128
  class Representation < Google::Apis::Core::JsonRepresentation; end
123
129
 
@@ -172,6 +178,12 @@ module Google
172
178
  include Google::Apis::Core::JsonObjectSupport
173
179
  end
174
180
 
181
+ class GoogleTypeDate
182
+ class Representation < Google::Apis::Core::JsonRepresentation; end
183
+
184
+ include Google::Apis::Core::JsonObjectSupport
185
+ end
186
+
175
187
  class GoogleTypeTimeOfDay
176
188
  class Representation < Google::Apis::Core::JsonRepresentation; end
177
189
 
@@ -298,6 +310,12 @@ module Google
298
310
  include Google::Apis::Core::JsonObjectSupport
299
311
  end
300
312
 
313
+ class ObservabilityInstanceConfig
314
+ class Representation < Google::Apis::Core::JsonRepresentation; end
315
+
316
+ include Google::Apis::Core::JsonObjectSupport
317
+ end
318
+
301
319
  class Operation
302
320
  class Representation < Google::Apis::Core::JsonRepresentation; end
303
321
 
@@ -862,6 +880,18 @@ module Google
862
880
  end
863
881
  end
864
882
 
883
+ class DenyMaintenancePeriod
884
+ # @private
885
+ class Representation < Google::Apis::Core::JsonRepresentation
886
+ property :end_date, as: 'endDate', class: Google::Apis::AlloydbV1::GoogleTypeDate, decorator: Google::Apis::AlloydbV1::GoogleTypeDate::Representation
887
+
888
+ property :start_date, as: 'startDate', class: Google::Apis::AlloydbV1::GoogleTypeDate, decorator: Google::Apis::AlloydbV1::GoogleTypeDate::Representation
889
+
890
+ property :time, as: 'time', class: Google::Apis::AlloydbV1::GoogleTypeTimeOfDay, decorator: Google::Apis::AlloydbV1::GoogleTypeTimeOfDay::Representation
891
+
892
+ end
893
+ end
894
+
865
895
  class Empty
866
896
  # @private
867
897
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -939,6 +969,15 @@ module Google
939
969
  end
940
970
  end
941
971
 
972
+ class GoogleTypeDate
973
+ # @private
974
+ class Representation < Google::Apis::Core::JsonRepresentation
975
+ property :day, as: 'day'
976
+ property :month, as: 'month'
977
+ property :year, as: 'year'
978
+ end
979
+ end
980
+
942
981
  class GoogleTypeTimeOfDay
943
982
  # @private
944
983
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1001,6 +1040,8 @@ module Google
1001
1040
 
1002
1041
  collection :nodes, as: 'nodes', class: Google::Apis::AlloydbV1::Node, decorator: Google::Apis::AlloydbV1::Node::Representation
1003
1042
 
1043
+ property :observability_config, as: 'observabilityConfig', class: Google::Apis::AlloydbV1::ObservabilityInstanceConfig, decorator: Google::Apis::AlloydbV1::ObservabilityInstanceConfig::Representation
1044
+
1004
1045
  collection :outbound_public_ip_addresses, as: 'outboundPublicIpAddresses'
1005
1046
  property :psc_instance_config, as: 'pscInstanceConfig', class: Google::Apis::AlloydbV1::PscInstanceConfig, decorator: Google::Apis::AlloydbV1::PscInstanceConfig::Representation
1006
1047
 
@@ -1026,6 +1067,7 @@ module Google
1026
1067
 
1027
1068
  property :enable_outbound_public_ip, as: 'enableOutboundPublicIp'
1028
1069
  property :enable_public_ip, as: 'enablePublicIp'
1070
+ property :network, as: 'network'
1029
1071
  end
1030
1072
  end
1031
1073
 
@@ -1108,6 +1150,7 @@ module Google
1108
1150
  # @private
1109
1151
  class Representation < Google::Apis::Core::JsonRepresentation
1110
1152
  property :cpu_count, as: 'cpuCount'
1153
+ property :machine_type, as: 'machineType'
1111
1154
  end
1112
1155
  end
1113
1156
 
@@ -1121,6 +1164,8 @@ module Google
1121
1164
  class MaintenanceUpdatePolicy
1122
1165
  # @private
1123
1166
  class Representation < Google::Apis::Core::JsonRepresentation
1167
+ collection :deny_maintenance_periods, as: 'denyMaintenancePeriods', class: Google::Apis::AlloydbV1::DenyMaintenancePeriod, decorator: Google::Apis::AlloydbV1::DenyMaintenancePeriod::Representation
1168
+
1124
1169
  collection :maintenance_windows, as: 'maintenanceWindows', class: Google::Apis::AlloydbV1::MaintenanceWindow, decorator: Google::Apis::AlloydbV1::MaintenanceWindow::Representation
1125
1170
 
1126
1171
  end
@@ -1162,6 +1207,20 @@ module Google
1162
1207
  end
1163
1208
  end
1164
1209
 
1210
+ class ObservabilityInstanceConfig
1211
+ # @private
1212
+ class Representation < Google::Apis::Core::JsonRepresentation
1213
+ property :enabled, as: 'enabled'
1214
+ property :max_query_string_length, as: 'maxQueryStringLength'
1215
+ property :preserve_comments, as: 'preserveComments'
1216
+ property :query_plans_per_minute, as: 'queryPlansPerMinute'
1217
+ property :record_application_tags, as: 'recordApplicationTags'
1218
+ property :track_active_queries, as: 'trackActiveQueries'
1219
+ property :track_wait_event_types, as: 'trackWaitEventTypes'
1220
+ property :track_wait_events, as: 'trackWaitEvents'
1221
+ end
1222
+ end
1223
+
1165
1224
  class Operation
1166
1225
  # @private
1167
1226
  class Representation < Google::Apis::Core::JsonRepresentation
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-alloydb_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.30.0
4
+ version: 0.32.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
8
  bindir: bin
9
9
  cert_chain: []
10
- date: 2025-03-02 00:00:00.000000000 Z
10
+ date: 2025-03-16 00:00:00.000000000 Z
11
11
  dependencies:
12
12
  - !ruby/object:Gem::Dependency
13
13
  name: google-apis-core
@@ -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.30.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-alloydb_v1/v0.32.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: