google-apis-alloydb_v1beta 0.22.0 → 0.24.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: 1de8e14469ca6bf325893519102b1a7990bac99d750bdf873cd6ab7610a19b66
4
- data.tar.gz: a3acd109d211d30268712aa79a69438c9080b6af3f0b3a7955c0f253c5e2e9ad
3
+ metadata.gz: bf9cd9bf12665fe0b3f527c8bd34a78a210c8fbe6e02a164b3c7d15162d8b382
4
+ data.tar.gz: 49a61f9b8f829c26b3b42b03915ca0c9c2aeef32563f73dcfc2b5d7c769baf12
5
5
  SHA512:
6
- metadata.gz: 6fee1555fc64c3e3aed378685bed3e7d3f22262bb2b36625f53e5708733c62188af5b5e7c632111c646349d97005d4ee127f5883801b4bf40b3e618f208489b5
7
- data.tar.gz: b9a9aed0256e82dd55be7cd9b2e878cbe272bc5d69f2ca05b53a64dbac23bee48aa5eca8e99985b4b292c89f04cbc703aeaeb44d89cc560e3b67f7e862cdce81
6
+ metadata.gz: 52df6779bc0ce0df3dd5c34fadad04a997aa12c60a39962fdc9bffc1c2bcfe87241e07f9aeadaf51e31b1df36f5297b77d83c4aa8967754593ddeb0132652bc9
7
+ data.tar.gz: a18bb84d9356385ace88099df59725760bdc1ef5003526fcbd157891b5159f8be92753613c75d268aa6647474be2f6c80c929bd0e48bf10c3663c0a1d02820d6
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-alloydb_v1beta
2
2
 
3
+ ### v0.24.0 (2025-03-16)
4
+
5
+ * Regenerated from discovery document revision 20250308
6
+
7
+ ### v0.23.0 (2025-03-09)
8
+
9
+ * Regenerated from discovery document revision 20250227
10
+
3
11
  ### v0.22.0 (2025-03-02)
4
12
 
5
13
  * Regenerated from discovery document revision 20250219
@@ -975,6 +975,55 @@ module Google
975
975
  end
976
976
  end
977
977
 
978
+ # DenyMaintenancePeriod definition. Excepting emergencies, maintenance will not
979
+ # be scheduled to start within this deny period. The start_date must be less
980
+ # than the end_date.
981
+ class DenyMaintenancePeriod
982
+ include Google::Apis::Core::Hashable
983
+
984
+ # Represents a whole or partial calendar date, such as a birthday. The time of
985
+ # day and time zone are either specified elsewhere or are insignificant. The
986
+ # date is relative to the Gregorian Calendar. This can represent one of the
987
+ # following: * A full date, with non-zero year, month, and day values. * A month
988
+ # and day, with a zero year (for example, an anniversary). * A year on its own,
989
+ # with a zero month and a zero day. * A year and month, with a zero day (for
990
+ # example, a credit card expiration date). Related types: * google.type.
991
+ # TimeOfDay * google.type.DateTime * google.protobuf.Timestamp
992
+ # Corresponds to the JSON property `endDate`
993
+ # @return [Google::Apis::AlloydbV1beta::GoogleTypeDate]
994
+ attr_accessor :end_date
995
+
996
+ # Represents a whole or partial calendar date, such as a birthday. The time of
997
+ # day and time zone are either specified elsewhere or are insignificant. The
998
+ # date is relative to the Gregorian Calendar. This can represent one of the
999
+ # following: * A full date, with non-zero year, month, and day values. * A month
1000
+ # and day, with a zero year (for example, an anniversary). * A year on its own,
1001
+ # with a zero month and a zero day. * A year and month, with a zero day (for
1002
+ # example, a credit card expiration date). Related types: * google.type.
1003
+ # TimeOfDay * google.type.DateTime * google.protobuf.Timestamp
1004
+ # Corresponds to the JSON property `startDate`
1005
+ # @return [Google::Apis::AlloydbV1beta::GoogleTypeDate]
1006
+ attr_accessor :start_date
1007
+
1008
+ # Represents a time of day. The date and time zone are either not significant or
1009
+ # are specified elsewhere. An API may choose to allow leap seconds. Related
1010
+ # types are google.type.Date and `google.protobuf.Timestamp`.
1011
+ # Corresponds to the JSON property `time`
1012
+ # @return [Google::Apis::AlloydbV1beta::GoogleTypeTimeOfDay]
1013
+ attr_accessor :time
1014
+
1015
+ def initialize(**args)
1016
+ update!(**args)
1017
+ end
1018
+
1019
+ # Update properties of this object
1020
+ def update!(**args)
1021
+ @end_date = args[:end_date] if args.key?(:end_date)
1022
+ @start_date = args[:start_date] if args.key?(:start_date)
1023
+ @time = args[:time] if args.key?(:time)
1024
+ end
1025
+ end
1026
+
978
1027
  # A generic empty message that you can re-use to avoid defining duplicated empty
979
1028
  # messages in your APIs. A typical example is to use it as the request or the
980
1029
  # response type of an API method. For instance: service Foo ` rpc Bar(google.
@@ -1115,6 +1164,26 @@ module Google
1115
1164
  end
1116
1165
  end
1117
1166
 
1167
+ # Instance level configuration parameters related to the Gemini Cloud Assist
1168
+ # product.
1169
+ class GcaInstanceConfig
1170
+ include Google::Apis::Core::Hashable
1171
+
1172
+ # Output only. Represents the GCA entitlement state of the instance.
1173
+ # Corresponds to the JSON property `gcaEntitlement`
1174
+ # @return [String]
1175
+ attr_accessor :gca_entitlement
1176
+
1177
+ def initialize(**args)
1178
+ update!(**args)
1179
+ end
1180
+
1181
+ # Update properties of this object
1182
+ def update!(**args)
1183
+ @gca_entitlement = args[:gca_entitlement] if args.key?(:gca_entitlement)
1184
+ end
1185
+ end
1186
+
1118
1187
  # Destination for Export. Export will be done to cloud storage.
1119
1188
  class GcsDestination
1120
1189
  include Google::Apis::Core::Hashable
@@ -1255,6 +1324,47 @@ module Google
1255
1324
  end
1256
1325
  end
1257
1326
 
1327
+ # Represents a whole or partial calendar date, such as a birthday. The time of
1328
+ # day and time zone are either specified elsewhere or are insignificant. The
1329
+ # date is relative to the Gregorian Calendar. This can represent one of the
1330
+ # following: * A full date, with non-zero year, month, and day values. * A month
1331
+ # and day, with a zero year (for example, an anniversary). * A year on its own,
1332
+ # with a zero month and a zero day. * A year and month, with a zero day (for
1333
+ # example, a credit card expiration date). Related types: * google.type.
1334
+ # TimeOfDay * google.type.DateTime * google.protobuf.Timestamp
1335
+ class GoogleTypeDate
1336
+ include Google::Apis::Core::Hashable
1337
+
1338
+ # Day of a month. Must be from 1 to 31 and valid for the year and month, or 0 to
1339
+ # specify a year by itself or a year and month where the day isn't significant.
1340
+ # Corresponds to the JSON property `day`
1341
+ # @return [Fixnum]
1342
+ attr_accessor :day
1343
+
1344
+ # Month of a year. Must be from 1 to 12, or 0 to specify a year without a month
1345
+ # and day.
1346
+ # Corresponds to the JSON property `month`
1347
+ # @return [Fixnum]
1348
+ attr_accessor :month
1349
+
1350
+ # Year of the date. Must be from 1 to 9999, or 0 to specify a date without a
1351
+ # year.
1352
+ # Corresponds to the JSON property `year`
1353
+ # @return [Fixnum]
1354
+ attr_accessor :year
1355
+
1356
+ def initialize(**args)
1357
+ update!(**args)
1358
+ end
1359
+
1360
+ # Update properties of this object
1361
+ def update!(**args)
1362
+ @day = args[:day] if args.key?(:day)
1363
+ @month = args[:month] if args.key?(:month)
1364
+ @year = args[:year] if args.key?(:year)
1365
+ end
1366
+ end
1367
+
1258
1368
  # Represents a time of day. The date and time zone are either not significant or
1259
1369
  # are specified elsewhere. An API may choose to allow leap seconds. Related
1260
1370
  # types are google.type.Date and `google.protobuf.Timestamp`.
@@ -1452,6 +1562,12 @@ module Google
1452
1562
  # @return [String]
1453
1563
  attr_accessor :etag
1454
1564
 
1565
+ # Instance level configuration parameters related to the Gemini Cloud Assist
1566
+ # product.
1567
+ # Corresponds to the JSON property `gcaConfig`
1568
+ # @return [Google::Apis::AlloydbV1beta::GcaInstanceConfig]
1569
+ attr_accessor :gca_config
1570
+
1455
1571
  # The Compute Engine zone that the instance should serve from, per https://cloud.
1456
1572
  # google.com/compute/docs/regions-zones This can ONLY be specified for ZONAL
1457
1573
  # instances. If present for a REGIONAL instance, an error will be thrown. If
@@ -1601,6 +1717,7 @@ module Google
1601
1717
  @delete_time = args[:delete_time] if args.key?(:delete_time)
1602
1718
  @display_name = args[:display_name] if args.key?(:display_name)
1603
1719
  @etag = args[:etag] if args.key?(:etag)
1720
+ @gca_config = args[:gca_config] if args.key?(:gca_config)
1604
1721
  @gce_zone = args[:gce_zone] if args.key?(:gce_zone)
1605
1722
  @gemini_config = args[:gemini_config] if args.key?(:gemini_config)
1606
1723
  @instance_type = args[:instance_type] if args.key?(:instance_type)
@@ -1648,6 +1765,14 @@ module Google
1648
1765
  attr_accessor :enable_public_ip
1649
1766
  alias_method :enable_public_ip?, :enable_public_ip
1650
1767
 
1768
+ # Output only. The resource link for the VPC network in which instance resources
1769
+ # are created and from which they are accessible via Private IP. This will be
1770
+ # the same value as the parent cluster's network. It is specified in the form: //
1771
+ # `projects/`project_number`/global/networks/`network_id``.
1772
+ # Corresponds to the JSON property `network`
1773
+ # @return [String]
1774
+ attr_accessor :network
1775
+
1651
1776
  def initialize(**args)
1652
1777
  update!(**args)
1653
1778
  end
@@ -1657,6 +1782,7 @@ module Google
1657
1782
  @authorized_external_networks = args[:authorized_external_networks] if args.key?(:authorized_external_networks)
1658
1783
  @enable_outbound_public_ip = args[:enable_outbound_public_ip] if args.key?(:enable_outbound_public_ip)
1659
1784
  @enable_public_ip = args[:enable_public_ip] if args.key?(:enable_public_ip)
1785
+ @network = args[:network] if args.key?(:network)
1660
1786
  end
1661
1787
  end
1662
1788
 
@@ -1899,6 +2025,12 @@ module Google
1899
2025
  # @return [Fixnum]
1900
2026
  attr_accessor :cpu_count
1901
2027
 
2028
+ # Machine type of the VM instance. E.g. "n2-highmem-4", "n2-highmem-8", "c4a-
2029
+ # highmem-4-lssd". cpu_count must match the number of vCPUs in the machine type.
2030
+ # Corresponds to the JSON property `machineType`
2031
+ # @return [String]
2032
+ attr_accessor :machine_type
2033
+
1902
2034
  def initialize(**args)
1903
2035
  update!(**args)
1904
2036
  end
@@ -1906,6 +2038,7 @@ module Google
1906
2038
  # Update properties of this object
1907
2039
  def update!(**args)
1908
2040
  @cpu_count = args[:cpu_count] if args.key?(:cpu_count)
2041
+ @machine_type = args[:machine_type] if args.key?(:machine_type)
1909
2042
  end
1910
2043
  end
1911
2044
 
@@ -1936,6 +2069,11 @@ module Google
1936
2069
  class MaintenanceUpdatePolicy
1937
2070
  include Google::Apis::Core::Hashable
1938
2071
 
2072
+ # Periods to deny maintenance. Currently limited to 1.
2073
+ # Corresponds to the JSON property `denyMaintenancePeriods`
2074
+ # @return [Array<Google::Apis::AlloydbV1beta::DenyMaintenancePeriod>]
2075
+ attr_accessor :deny_maintenance_periods
2076
+
1939
2077
  # Preferred windows to perform maintenance. Currently limited to 1.
1940
2078
  # Corresponds to the JSON property `maintenanceWindows`
1941
2079
  # @return [Array<Google::Apis::AlloydbV1beta::MaintenanceWindow>]
@@ -1947,6 +2085,7 @@ module Google
1947
2085
 
1948
2086
  # Update properties of this object
1949
2087
  def update!(**args)
2088
+ @deny_maintenance_periods = args[:deny_maintenance_periods] if args.key?(:deny_maintenance_periods)
1950
2089
  @maintenance_windows = args[:maintenance_windows] if args.key?(:maintenance_windows)
1951
2090
  end
1952
2091
  end
@@ -2091,6 +2230,12 @@ module Google
2091
2230
  class ObservabilityInstanceConfig
2092
2231
  include Google::Apis::Core::Hashable
2093
2232
 
2233
+ # Whether assistive experiences are enabled for this AlloyDB instance.
2234
+ # Corresponds to the JSON property `assistiveExperiencesEnabled`
2235
+ # @return [Boolean]
2236
+ attr_accessor :assistive_experiences_enabled
2237
+ alias_method :assistive_experiences_enabled?, :assistive_experiences_enabled
2238
+
2094
2239
  # Observability feature status for an instance. This flag is turned "off" by
2095
2240
  # default.
2096
2241
  # Corresponds to the JSON property `enabled`
@@ -2130,16 +2275,10 @@ module Google
2130
2275
  attr_accessor :track_active_queries
2131
2276
  alias_method :track_active_queries?, :track_active_queries
2132
2277
 
2133
- # Track client address for an instance. If not set, default value is "off".
2134
- # Corresponds to the JSON property `trackClientAddress`
2135
- # @return [Boolean]
2136
- attr_accessor :track_client_address
2137
- alias_method :track_client_address?, :track_client_address
2138
-
2139
2278
  # Output only. Track wait event types during query execution for an instance.
2140
2279
  # This flag is turned "on" by default but tracking is enabled only after
2141
2280
  # observability enabled flag is also turned on. This is read-only flag and only
2142
- # modifiable by producer API.
2281
+ # modifiable by internal API.
2143
2282
  # Corresponds to the JSON property `trackWaitEventTypes`
2144
2283
  # @return [Boolean]
2145
2284
  attr_accessor :track_wait_event_types
@@ -2159,13 +2298,13 @@ module Google
2159
2298
 
2160
2299
  # Update properties of this object
2161
2300
  def update!(**args)
2301
+ @assistive_experiences_enabled = args[:assistive_experiences_enabled] if args.key?(:assistive_experiences_enabled)
2162
2302
  @enabled = args[:enabled] if args.key?(:enabled)
2163
2303
  @max_query_string_length = args[:max_query_string_length] if args.key?(:max_query_string_length)
2164
2304
  @preserve_comments = args[:preserve_comments] if args.key?(:preserve_comments)
2165
2305
  @query_plans_per_minute = args[:query_plans_per_minute] if args.key?(:query_plans_per_minute)
2166
2306
  @record_application_tags = args[:record_application_tags] if args.key?(:record_application_tags)
2167
2307
  @track_active_queries = args[:track_active_queries] if args.key?(:track_active_queries)
2168
- @track_client_address = args[:track_client_address] if args.key?(:track_client_address)
2169
2308
  @track_wait_event_types = args[:track_wait_event_types] if args.key?(:track_wait_event_types)
2170
2309
  @track_wait_events = args[:track_wait_events] if args.key?(:track_wait_events)
2171
2310
  end
@@ -3759,14 +3898,14 @@ module Google
3759
3898
  class StorageDatabasecenterPartnerapiV1mainMachineConfiguration
3760
3899
  include Google::Apis::Core::Hashable
3761
3900
 
3762
- # The number of CPUs. Deprecated. Use vcpu_count instead. TODO(b/342344482, b/
3763
- # 342346271) add proto validations again after bug fix.
3901
+ # The number of CPUs. Deprecated. Use vcpu_count instead. TODO(b/342344482) add
3902
+ # proto validations again after bug fix.
3764
3903
  # Corresponds to the JSON property `cpuCount`
3765
3904
  # @return [Fixnum]
3766
3905
  attr_accessor :cpu_count
3767
3906
 
3768
- # Memory size in bytes. TODO(b/342344482, b/342346271) add proto validations
3769
- # again after bug fix.
3907
+ # Memory size in bytes. TODO(b/342344482) add proto validations again after bug
3908
+ # fix.
3770
3909
  # Corresponds to the JSON property `memorySizeInBytes`
3771
3910
  # @return [Fixnum]
3772
3911
  attr_accessor :memory_size_in_bytes
@@ -3776,8 +3915,8 @@ module Google
3776
3915
  # @return [Fixnum]
3777
3916
  attr_accessor :shard_count
3778
3917
 
3779
- # Optional. The number of vCPUs. TODO(b/342344482, b/342346271) add proto
3780
- # validations again after bug fix.
3918
+ # Optional. The number of vCPUs. TODO(b/342344482) add proto validations again
3919
+ # after bug fix.
3781
3920
  # Corresponds to the JSON property `vcpuCount`
3782
3921
  # @return [Float]
3783
3922
  attr_accessor :vcpu_count
@@ -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.22.0"
19
+ GEM_VERSION = "0.24.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
@@ -112,6 +112,12 @@ module Google
112
112
  include Google::Apis::Core::JsonObjectSupport
113
113
  end
114
114
 
115
+ class DenyMaintenancePeriod
116
+ class Representation < Google::Apis::Core::JsonRepresentation; end
117
+
118
+ include Google::Apis::Core::JsonObjectSupport
119
+ end
120
+
115
121
  class Empty
116
122
  class Representation < Google::Apis::Core::JsonRepresentation; end
117
123
 
@@ -142,6 +148,12 @@ module Google
142
148
  include Google::Apis::Core::JsonObjectSupport
143
149
  end
144
150
 
151
+ class GcaInstanceConfig
152
+ class Representation < Google::Apis::Core::JsonRepresentation; end
153
+
154
+ include Google::Apis::Core::JsonObjectSupport
155
+ end
156
+
145
157
  class GcsDestination
146
158
  class Representation < Google::Apis::Core::JsonRepresentation; end
147
159
 
@@ -172,6 +184,12 @@ module Google
172
184
  include Google::Apis::Core::JsonObjectSupport
173
185
  end
174
186
 
187
+ class GoogleTypeDate
188
+ class Representation < Google::Apis::Core::JsonRepresentation; end
189
+
190
+ include Google::Apis::Core::JsonObjectSupport
191
+ end
192
+
175
193
  class GoogleTypeTimeOfDay
176
194
  class Representation < Google::Apis::Core::JsonRepresentation; end
177
195
 
@@ -866,6 +884,18 @@ module Google
866
884
  end
867
885
  end
868
886
 
887
+ class DenyMaintenancePeriod
888
+ # @private
889
+ class Representation < Google::Apis::Core::JsonRepresentation
890
+ property :end_date, as: 'endDate', class: Google::Apis::AlloydbV1beta::GoogleTypeDate, decorator: Google::Apis::AlloydbV1beta::GoogleTypeDate::Representation
891
+
892
+ property :start_date, as: 'startDate', class: Google::Apis::AlloydbV1beta::GoogleTypeDate, decorator: Google::Apis::AlloydbV1beta::GoogleTypeDate::Representation
893
+
894
+ property :time, as: 'time', class: Google::Apis::AlloydbV1beta::GoogleTypeTimeOfDay, decorator: Google::Apis::AlloydbV1beta::GoogleTypeTimeOfDay::Representation
895
+
896
+ end
897
+ end
898
+
869
899
  class Empty
870
900
  # @private
871
901
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -908,6 +938,13 @@ module Google
908
938
  end
909
939
  end
910
940
 
941
+ class GcaInstanceConfig
942
+ # @private
943
+ class Representation < Google::Apis::Core::JsonRepresentation
944
+ property :gca_entitlement, as: 'gcaEntitlement'
945
+ end
946
+ end
947
+
911
948
  class GcsDestination
912
949
  # @private
913
950
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -949,6 +986,15 @@ module Google
949
986
  end
950
987
  end
951
988
 
989
+ class GoogleTypeDate
990
+ # @private
991
+ class Representation < Google::Apis::Core::JsonRepresentation
992
+ property :day, as: 'day'
993
+ property :month, as: 'month'
994
+ property :year, as: 'year'
995
+ end
996
+ end
997
+
952
998
  class GoogleTypeTimeOfDay
953
999
  # @private
954
1000
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -993,6 +1039,8 @@ module Google
993
1039
  property :delete_time, as: 'deleteTime'
994
1040
  property :display_name, as: 'displayName'
995
1041
  property :etag, as: 'etag'
1042
+ property :gca_config, as: 'gcaConfig', class: Google::Apis::AlloydbV1beta::GcaInstanceConfig, decorator: Google::Apis::AlloydbV1beta::GcaInstanceConfig::Representation
1043
+
996
1044
  property :gce_zone, as: 'gceZone'
997
1045
  property :gemini_config, as: 'geminiConfig', class: Google::Apis::AlloydbV1beta::GeminiInstanceConfig, decorator: Google::Apis::AlloydbV1beta::GeminiInstanceConfig::Representation
998
1046
 
@@ -1035,6 +1083,7 @@ module Google
1035
1083
 
1036
1084
  property :enable_outbound_public_ip, as: 'enableOutboundPublicIp'
1037
1085
  property :enable_public_ip, as: 'enablePublicIp'
1086
+ property :network, as: 'network'
1038
1087
  end
1039
1088
  end
1040
1089
 
@@ -1117,6 +1166,7 @@ module Google
1117
1166
  # @private
1118
1167
  class Representation < Google::Apis::Core::JsonRepresentation
1119
1168
  property :cpu_count, as: 'cpuCount'
1169
+ property :machine_type, as: 'machineType'
1120
1170
  end
1121
1171
  end
1122
1172
 
@@ -1130,6 +1180,8 @@ module Google
1130
1180
  class MaintenanceUpdatePolicy
1131
1181
  # @private
1132
1182
  class Representation < Google::Apis::Core::JsonRepresentation
1183
+ collection :deny_maintenance_periods, as: 'denyMaintenancePeriods', class: Google::Apis::AlloydbV1beta::DenyMaintenancePeriod, decorator: Google::Apis::AlloydbV1beta::DenyMaintenancePeriod::Representation
1184
+
1133
1185
  collection :maintenance_windows, as: 'maintenanceWindows', class: Google::Apis::AlloydbV1beta::MaintenanceWindow, decorator: Google::Apis::AlloydbV1beta::MaintenanceWindow::Representation
1134
1186
 
1135
1187
  end
@@ -1174,13 +1226,13 @@ module Google
1174
1226
  class ObservabilityInstanceConfig
1175
1227
  # @private
1176
1228
  class Representation < Google::Apis::Core::JsonRepresentation
1229
+ property :assistive_experiences_enabled, as: 'assistiveExperiencesEnabled'
1177
1230
  property :enabled, as: 'enabled'
1178
1231
  property :max_query_string_length, as: 'maxQueryStringLength'
1179
1232
  property :preserve_comments, as: 'preserveComments'
1180
1233
  property :query_plans_per_minute, as: 'queryPlansPerMinute'
1181
1234
  property :record_application_tags, as: 'recordApplicationTags'
1182
1235
  property :track_active_queries, as: 'trackActiveQueries'
1183
- property :track_client_address, as: 'trackClientAddress'
1184
1236
  property :track_wait_event_types, as: 'trackWaitEventTypes'
1185
1237
  property :track_wait_events, as: 'trackWaitEvents'
1186
1238
  end
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-alloydb_v1beta
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.22.0
4
+ version: 0.24.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_v1beta/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-alloydb_v1beta/v0.22.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-alloydb_v1beta/v0.24.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: