google-apis-alloydb_v1beta 0.23.0 → 0.25.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: 440cc5a3c1838f6dbe0ae52424558fa7b65025c1da37ca95c4f9299a89fc5f48
4
- data.tar.gz: df84293cac84edf3b20d12bf488759f42edae81103880068afc1d074c148bf20
3
+ metadata.gz: c468b92d96edcaf7f7b4bacc8c3217b750fa59365844d803760038a09d22abe4
4
+ data.tar.gz: d15e8e1a37830566e4f573d0c27d0238a97affa51a94c6f8f91a7c14c6e5cc96
5
5
  SHA512:
6
- metadata.gz: 53ed4cd3cd4339fb961bf0fe1dd687e63c11b56a4350fe2f3cf5eda7e85ac5dbd9bb5297230f727f7f5582e966c058dde319f251871f3b6ca8352d31b8359115
7
- data.tar.gz: 9b41e7df0c66a7017acf20fc544e9a9602aa08049af9e68cc200b32f4da736bd6a30e8f1fbe230d293e792d5bdb0d85d79a7a5f3e9ff4135ef117792703194cc
6
+ metadata.gz: 4b3d34215e6fefcbb087ed7bb1ca26fbb6882a41a7d7cf02f5636d4487ea552dd908576de0fe4f39d92116c9841538df6bf4eff0e25daa36b81105edb31f64d6
7
+ data.tar.gz: ade54ac4a971c06d9186a898478672e6f4ea97057b5e2f8b694a2b75cf209786ce3cc5238c2768213b83efaa8ed85b163533c31b37fb52dd7de0b917d5fa598e
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-alloydb_v1beta
2
2
 
3
+ ### v0.25.0 (2025-03-23)
4
+
5
+ * Regenerated from discovery document revision 20250312
6
+
7
+ ### v0.24.0 (2025-03-16)
8
+
9
+ * Regenerated from discovery document revision 20250308
10
+
3
11
  ### v0.23.0 (2025-03-09)
4
12
 
5
13
  * Regenerated from discovery document revision 20250227
@@ -779,6 +779,107 @@ module Google
779
779
  end
780
780
  end
781
781
 
782
+ # Configuration for Managed Connection Pool (MCP).
783
+ class ConnectionPoolConfig
784
+ include Google::Apis::Core::Hashable
785
+
786
+ # Optional. Deprecated. Use 'flags' instead. The default pool size. Defaults to
787
+ # 20.
788
+ # Corresponds to the JSON property `defaultPoolSize`
789
+ # @return [String]
790
+ attr_accessor :default_pool_size
791
+
792
+ # Optional. Deprecated; Prefer 'enabled' as this will be removed soon. TODO(b/
793
+ # 394996708) move to reserved once the field is removed from the gcloud client.
794
+ # Corresponds to the JSON property `enable`
795
+ # @return [Boolean]
796
+ attr_accessor :enable
797
+ alias_method :enable?, :enable
798
+
799
+ # Optional. Whether to enable Managed Connection Pool (MCP).
800
+ # Corresponds to the JSON property `enabled`
801
+ # @return [Boolean]
802
+ attr_accessor :enabled
803
+ alias_method :enabled?, :enabled
804
+
805
+ # Optional. Connection Pool flags, as a list of "key": "value" pairs.
806
+ # Corresponds to the JSON property `flags`
807
+ # @return [Hash<String,String>]
808
+ attr_accessor :flags
809
+
810
+ # Optional. Deprecated. Use 'flags' instead. The list of startup parameters to
811
+ # ignore. Defaults to ["extra_float_digits"]
812
+ # Corresponds to the JSON property `ignoreStartupParameters`
813
+ # @return [Array<String>]
814
+ attr_accessor :ignore_startup_parameters
815
+
816
+ # Optional. Deprecated. Use 'flags' instead. The maximum number of client
817
+ # connections allowed.
818
+ # Corresponds to the JSON property `maxClientConn`
819
+ # @return [String]
820
+ attr_accessor :max_client_conn
821
+
822
+ # Optional. Deprecated. Use 'flags' instead. The maximum number of prepared
823
+ # statements allowed. MCP makes sure that any statement prepared by a client, up
824
+ # to this limit, is available on the backing server connection in transaction
825
+ # and statement pooling mode. Even if the statement was originally prepared on
826
+ # another server connection. Defaults to 0.
827
+ # Corresponds to the JSON property `maxPreparedStatements`
828
+ # @return [String]
829
+ attr_accessor :max_prepared_statements
830
+
831
+ # Optional. Deprecated. Use 'flags' instead. The minimum pool size. Defaults to
832
+ # 0.
833
+ # Corresponds to the JSON property `minPoolSize`
834
+ # @return [String]
835
+ attr_accessor :min_pool_size
836
+
837
+ # Optional. Deprecated. Use 'flags' instead. The pool mode. Defaults to `
838
+ # POOL_MODE_TRANSACTION`.
839
+ # Corresponds to the JSON property `poolMode`
840
+ # @return [String]
841
+ attr_accessor :pool_mode
842
+
843
+ # Optional. Deprecated. Use 'flags' instead. The maximum number of seconds
844
+ # queries are allowed to spend waiting for execution. If the query is not
845
+ # assigned to a server during that time, the client is disconnected. 0 disables.
846
+ # Corresponds to the JSON property `queryWaitTimeout`
847
+ # @return [String]
848
+ attr_accessor :query_wait_timeout
849
+
850
+ # Optional. Deprecated. Use 'flags' instead. The maximum number of seconds a
851
+ # server is allowed to be idle before it is disconnected. 0 disables.
852
+ # Corresponds to the JSON property `serverIdleTimeout`
853
+ # @return [String]
854
+ attr_accessor :server_idle_timeout
855
+
856
+ # Optional. Deprecated. Use 'flags' instead. The list of users that are allowed
857
+ # to connect to the MCP stats console. The users must exist in the database.
858
+ # Corresponds to the JSON property `statsUsers`
859
+ # @return [Array<String>]
860
+ attr_accessor :stats_users
861
+
862
+ def initialize(**args)
863
+ update!(**args)
864
+ end
865
+
866
+ # Update properties of this object
867
+ def update!(**args)
868
+ @default_pool_size = args[:default_pool_size] if args.key?(:default_pool_size)
869
+ @enable = args[:enable] if args.key?(:enable)
870
+ @enabled = args[:enabled] if args.key?(:enabled)
871
+ @flags = args[:flags] if args.key?(:flags)
872
+ @ignore_startup_parameters = args[:ignore_startup_parameters] if args.key?(:ignore_startup_parameters)
873
+ @max_client_conn = args[:max_client_conn] if args.key?(:max_client_conn)
874
+ @max_prepared_statements = args[:max_prepared_statements] if args.key?(:max_prepared_statements)
875
+ @min_pool_size = args[:min_pool_size] if args.key?(:min_pool_size)
876
+ @pool_mode = args[:pool_mode] if args.key?(:pool_mode)
877
+ @query_wait_timeout = args[:query_wait_timeout] if args.key?(:query_wait_timeout)
878
+ @server_idle_timeout = args[:server_idle_timeout] if args.key?(:server_idle_timeout)
879
+ @stats_users = args[:stats_users] if args.key?(:stats_users)
880
+ end
881
+ end
882
+
782
883
  # ContinuousBackupConfig describes the continuous backups recovery
783
884
  # configurations of a cluster.
784
885
  class ContinuousBackupConfig
@@ -975,6 +1076,55 @@ module Google
975
1076
  end
976
1077
  end
977
1078
 
1079
+ # DenyMaintenancePeriod definition. Excepting emergencies, maintenance will not
1080
+ # be scheduled to start within this deny period. The start_date must be less
1081
+ # than the end_date.
1082
+ class DenyMaintenancePeriod
1083
+ include Google::Apis::Core::Hashable
1084
+
1085
+ # Represents a whole or partial calendar date, such as a birthday. The time of
1086
+ # day and time zone are either specified elsewhere or are insignificant. The
1087
+ # date is relative to the Gregorian Calendar. This can represent one of the
1088
+ # following: * A full date, with non-zero year, month, and day values. * A month
1089
+ # and day, with a zero year (for example, an anniversary). * A year on its own,
1090
+ # with a zero month and a zero day. * A year and month, with a zero day (for
1091
+ # example, a credit card expiration date). Related types: * google.type.
1092
+ # TimeOfDay * google.type.DateTime * google.protobuf.Timestamp
1093
+ # Corresponds to the JSON property `endDate`
1094
+ # @return [Google::Apis::AlloydbV1beta::GoogleTypeDate]
1095
+ attr_accessor :end_date
1096
+
1097
+ # Represents a whole or partial calendar date, such as a birthday. The time of
1098
+ # day and time zone are either specified elsewhere or are insignificant. The
1099
+ # date is relative to the Gregorian Calendar. This can represent one of the
1100
+ # following: * A full date, with non-zero year, month, and day values. * A month
1101
+ # and day, with a zero year (for example, an anniversary). * A year on its own,
1102
+ # with a zero month and a zero day. * A year and month, with a zero day (for
1103
+ # example, a credit card expiration date). Related types: * google.type.
1104
+ # TimeOfDay * google.type.DateTime * google.protobuf.Timestamp
1105
+ # Corresponds to the JSON property `startDate`
1106
+ # @return [Google::Apis::AlloydbV1beta::GoogleTypeDate]
1107
+ attr_accessor :start_date
1108
+
1109
+ # Represents a time of day. The date and time zone are either not significant or
1110
+ # are specified elsewhere. An API may choose to allow leap seconds. Related
1111
+ # types are google.type.Date and `google.protobuf.Timestamp`.
1112
+ # Corresponds to the JSON property `time`
1113
+ # @return [Google::Apis::AlloydbV1beta::GoogleTypeTimeOfDay]
1114
+ attr_accessor :time
1115
+
1116
+ def initialize(**args)
1117
+ update!(**args)
1118
+ end
1119
+
1120
+ # Update properties of this object
1121
+ def update!(**args)
1122
+ @end_date = args[:end_date] if args.key?(:end_date)
1123
+ @start_date = args[:start_date] if args.key?(:start_date)
1124
+ @time = args[:time] if args.key?(:time)
1125
+ end
1126
+ end
1127
+
978
1128
  # A generic empty message that you can re-use to avoid defining duplicated empty
979
1129
  # messages in your APIs. A typical example is to use it as the request or the
980
1130
  # response type of an API method. For instance: service Foo ` rpc Bar(google.
@@ -1275,6 +1425,47 @@ module Google
1275
1425
  end
1276
1426
  end
1277
1427
 
1428
+ # Represents a whole or partial calendar date, such as a birthday. The time of
1429
+ # day and time zone are either specified elsewhere or are insignificant. The
1430
+ # date is relative to the Gregorian Calendar. This can represent one of the
1431
+ # following: * A full date, with non-zero year, month, and day values. * A month
1432
+ # and day, with a zero year (for example, an anniversary). * A year on its own,
1433
+ # with a zero month and a zero day. * A year and month, with a zero day (for
1434
+ # example, a credit card expiration date). Related types: * google.type.
1435
+ # TimeOfDay * google.type.DateTime * google.protobuf.Timestamp
1436
+ class GoogleTypeDate
1437
+ include Google::Apis::Core::Hashable
1438
+
1439
+ # Day of a month. Must be from 1 to 31 and valid for the year and month, or 0 to
1440
+ # specify a year by itself or a year and month where the day isn't significant.
1441
+ # Corresponds to the JSON property `day`
1442
+ # @return [Fixnum]
1443
+ attr_accessor :day
1444
+
1445
+ # Month of a year. Must be from 1 to 12, or 0 to specify a year without a month
1446
+ # and day.
1447
+ # Corresponds to the JSON property `month`
1448
+ # @return [Fixnum]
1449
+ attr_accessor :month
1450
+
1451
+ # Year of the date. Must be from 1 to 9999, or 0 to specify a date without a
1452
+ # year.
1453
+ # Corresponds to the JSON property `year`
1454
+ # @return [Fixnum]
1455
+ attr_accessor :year
1456
+
1457
+ def initialize(**args)
1458
+ update!(**args)
1459
+ end
1460
+
1461
+ # Update properties of this object
1462
+ def update!(**args)
1463
+ @day = args[:day] if args.key?(:day)
1464
+ @month = args[:month] if args.key?(:month)
1465
+ @year = args[:year] if args.key?(:year)
1466
+ end
1467
+ end
1468
+
1278
1469
  # Represents a time of day. The date and time zone are either not significant or
1279
1470
  # are specified elsewhere. An API may choose to allow leap seconds. Related
1280
1471
  # types are google.type.Date and `google.protobuf.Timestamp`.
@@ -1437,6 +1628,11 @@ module Google
1437
1628
  # @return [Google::Apis::AlloydbV1beta::ClientConnectionConfig]
1438
1629
  attr_accessor :client_connection_config
1439
1630
 
1631
+ # Configuration for Managed Connection Pool (MCP).
1632
+ # Corresponds to the JSON property `connectionPoolConfig`
1633
+ # @return [Google::Apis::AlloydbV1beta::ConnectionPoolConfig]
1634
+ attr_accessor :connection_pool_config
1635
+
1440
1636
  # Output only. Create time stamp
1441
1637
  # Corresponds to the JSON property `createTime`
1442
1638
  # @return [String]
@@ -1622,6 +1818,7 @@ module Google
1622
1818
  @annotations = args[:annotations] if args.key?(:annotations)
1623
1819
  @availability_type = args[:availability_type] if args.key?(:availability_type)
1624
1820
  @client_connection_config = args[:client_connection_config] if args.key?(:client_connection_config)
1821
+ @connection_pool_config = args[:connection_pool_config] if args.key?(:connection_pool_config)
1625
1822
  @create_time = args[:create_time] if args.key?(:create_time)
1626
1823
  @database_flags = args[:database_flags] if args.key?(:database_flags)
1627
1824
  @delete_time = args[:delete_time] if args.key?(:delete_time)
@@ -1675,6 +1872,14 @@ module Google
1675
1872
  attr_accessor :enable_public_ip
1676
1873
  alias_method :enable_public_ip?, :enable_public_ip
1677
1874
 
1875
+ # Output only. The resource link for the VPC network in which instance resources
1876
+ # are created and from which they are accessible via Private IP. This will be
1877
+ # the same value as the parent cluster's network. It is specified in the form: //
1878
+ # `projects/`project_number`/global/networks/`network_id``.
1879
+ # Corresponds to the JSON property `network`
1880
+ # @return [String]
1881
+ attr_accessor :network
1882
+
1678
1883
  def initialize(**args)
1679
1884
  update!(**args)
1680
1885
  end
@@ -1684,6 +1889,7 @@ module Google
1684
1889
  @authorized_external_networks = args[:authorized_external_networks] if args.key?(:authorized_external_networks)
1685
1890
  @enable_outbound_public_ip = args[:enable_outbound_public_ip] if args.key?(:enable_outbound_public_ip)
1686
1891
  @enable_public_ip = args[:enable_public_ip] if args.key?(:enable_public_ip)
1892
+ @network = args[:network] if args.key?(:network)
1687
1893
  end
1688
1894
  end
1689
1895
 
@@ -1926,6 +2132,12 @@ module Google
1926
2132
  # @return [Fixnum]
1927
2133
  attr_accessor :cpu_count
1928
2134
 
2135
+ # Machine type of the VM instance. E.g. "n2-highmem-4", "n2-highmem-8", "c4a-
2136
+ # highmem-4-lssd". cpu_count must match the number of vCPUs in the machine type.
2137
+ # Corresponds to the JSON property `machineType`
2138
+ # @return [String]
2139
+ attr_accessor :machine_type
2140
+
1929
2141
  def initialize(**args)
1930
2142
  update!(**args)
1931
2143
  end
@@ -1933,6 +2145,7 @@ module Google
1933
2145
  # Update properties of this object
1934
2146
  def update!(**args)
1935
2147
  @cpu_count = args[:cpu_count] if args.key?(:cpu_count)
2148
+ @machine_type = args[:machine_type] if args.key?(:machine_type)
1936
2149
  end
1937
2150
  end
1938
2151
 
@@ -1963,6 +2176,11 @@ module Google
1963
2176
  class MaintenanceUpdatePolicy
1964
2177
  include Google::Apis::Core::Hashable
1965
2178
 
2179
+ # Periods to deny maintenance. Currently limited to 1.
2180
+ # Corresponds to the JSON property `denyMaintenancePeriods`
2181
+ # @return [Array<Google::Apis::AlloydbV1beta::DenyMaintenancePeriod>]
2182
+ attr_accessor :deny_maintenance_periods
2183
+
1966
2184
  # Preferred windows to perform maintenance. Currently limited to 1.
1967
2185
  # Corresponds to the JSON property `maintenanceWindows`
1968
2186
  # @return [Array<Google::Apis::AlloydbV1beta::MaintenanceWindow>]
@@ -1974,6 +2192,7 @@ module Google
1974
2192
 
1975
2193
  # Update properties of this object
1976
2194
  def update!(**args)
2195
+ @deny_maintenance_periods = args[:deny_maintenance_periods] if args.key?(:deny_maintenance_periods)
1977
2196
  @maintenance_windows = args[:maintenance_windows] if args.key?(:maintenance_windows)
1978
2197
  end
1979
2198
  end
@@ -2118,6 +2337,12 @@ module Google
2118
2337
  class ObservabilityInstanceConfig
2119
2338
  include Google::Apis::Core::Hashable
2120
2339
 
2340
+ # Whether assistive experiences are enabled for this AlloyDB instance.
2341
+ # Corresponds to the JSON property `assistiveExperiencesEnabled`
2342
+ # @return [Boolean]
2343
+ attr_accessor :assistive_experiences_enabled
2344
+ alias_method :assistive_experiences_enabled?, :assistive_experiences_enabled
2345
+
2121
2346
  # Observability feature status for an instance. This flag is turned "off" by
2122
2347
  # default.
2123
2348
  # Corresponds to the JSON property `enabled`
@@ -2180,6 +2405,7 @@ module Google
2180
2405
 
2181
2406
  # Update properties of this object
2182
2407
  def update!(**args)
2408
+ @assistive_experiences_enabled = args[:assistive_experiences_enabled] if args.key?(:assistive_experiences_enabled)
2183
2409
  @enabled = args[:enabled] if args.key?(:enabled)
2184
2410
  @max_query_string_length = args[:max_query_string_length] if args.key?(:max_query_string_length)
2185
2411
  @preserve_comments = args[:preserve_comments] if args.key?(:preserve_comments)
@@ -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.23.0"
19
+ GEM_VERSION = "0.25.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 = "20250227"
25
+ REVISION = "20250312"
26
26
  end
27
27
  end
28
28
  end
@@ -82,6 +82,12 @@ module Google
82
82
  include Google::Apis::Core::JsonObjectSupport
83
83
  end
84
84
 
85
+ class ConnectionPoolConfig
86
+ class Representation < Google::Apis::Core::JsonRepresentation; end
87
+
88
+ include Google::Apis::Core::JsonObjectSupport
89
+ end
90
+
85
91
  class ContinuousBackupConfig
86
92
  class Representation < Google::Apis::Core::JsonRepresentation; end
87
93
 
@@ -112,6 +118,12 @@ module Google
112
118
  include Google::Apis::Core::JsonObjectSupport
113
119
  end
114
120
 
121
+ class DenyMaintenancePeriod
122
+ class Representation < Google::Apis::Core::JsonRepresentation; end
123
+
124
+ include Google::Apis::Core::JsonObjectSupport
125
+ end
126
+
115
127
  class Empty
116
128
  class Representation < Google::Apis::Core::JsonRepresentation; end
117
129
 
@@ -178,6 +190,12 @@ module Google
178
190
  include Google::Apis::Core::JsonObjectSupport
179
191
  end
180
192
 
193
+ class GoogleTypeDate
194
+ class Representation < Google::Apis::Core::JsonRepresentation; end
195
+
196
+ include Google::Apis::Core::JsonObjectSupport
197
+ end
198
+
181
199
  class GoogleTypeTimeOfDay
182
200
  class Representation < Google::Apis::Core::JsonRepresentation; end
183
201
 
@@ -822,6 +840,24 @@ module Google
822
840
  end
823
841
  end
824
842
 
843
+ class ConnectionPoolConfig
844
+ # @private
845
+ class Representation < Google::Apis::Core::JsonRepresentation
846
+ property :default_pool_size, as: 'defaultPoolSize'
847
+ property :enable, as: 'enable'
848
+ property :enabled, as: 'enabled'
849
+ hash :flags, as: 'flags'
850
+ collection :ignore_startup_parameters, as: 'ignoreStartupParameters'
851
+ property :max_client_conn, as: 'maxClientConn'
852
+ property :max_prepared_statements, as: 'maxPreparedStatements'
853
+ property :min_pool_size, as: 'minPoolSize'
854
+ property :pool_mode, as: 'poolMode'
855
+ property :query_wait_timeout, as: 'queryWaitTimeout'
856
+ property :server_idle_timeout, as: 'serverIdleTimeout'
857
+ collection :stats_users, as: 'statsUsers'
858
+ end
859
+ end
860
+
825
861
  class ContinuousBackupConfig
826
862
  # @private
827
863
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -872,6 +908,18 @@ module Google
872
908
  end
873
909
  end
874
910
 
911
+ class DenyMaintenancePeriod
912
+ # @private
913
+ class Representation < Google::Apis::Core::JsonRepresentation
914
+ property :end_date, as: 'endDate', class: Google::Apis::AlloydbV1beta::GoogleTypeDate, decorator: Google::Apis::AlloydbV1beta::GoogleTypeDate::Representation
915
+
916
+ property :start_date, as: 'startDate', class: Google::Apis::AlloydbV1beta::GoogleTypeDate, decorator: Google::Apis::AlloydbV1beta::GoogleTypeDate::Representation
917
+
918
+ property :time, as: 'time', class: Google::Apis::AlloydbV1beta::GoogleTypeTimeOfDay, decorator: Google::Apis::AlloydbV1beta::GoogleTypeTimeOfDay::Representation
919
+
920
+ end
921
+ end
922
+
875
923
  class Empty
876
924
  # @private
877
925
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -962,6 +1010,15 @@ module Google
962
1010
  end
963
1011
  end
964
1012
 
1013
+ class GoogleTypeDate
1014
+ # @private
1015
+ class Representation < Google::Apis::Core::JsonRepresentation
1016
+ property :day, as: 'day'
1017
+ property :month, as: 'month'
1018
+ property :year, as: 'year'
1019
+ end
1020
+ end
1021
+
965
1022
  class GoogleTypeTimeOfDay
966
1023
  # @private
967
1024
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1001,6 +1058,8 @@ module Google
1001
1058
  property :availability_type, as: 'availabilityType'
1002
1059
  property :client_connection_config, as: 'clientConnectionConfig', class: Google::Apis::AlloydbV1beta::ClientConnectionConfig, decorator: Google::Apis::AlloydbV1beta::ClientConnectionConfig::Representation
1003
1060
 
1061
+ property :connection_pool_config, as: 'connectionPoolConfig', class: Google::Apis::AlloydbV1beta::ConnectionPoolConfig, decorator: Google::Apis::AlloydbV1beta::ConnectionPoolConfig::Representation
1062
+
1004
1063
  property :create_time, as: 'createTime'
1005
1064
  hash :database_flags, as: 'databaseFlags'
1006
1065
  property :delete_time, as: 'deleteTime'
@@ -1050,6 +1109,7 @@ module Google
1050
1109
 
1051
1110
  property :enable_outbound_public_ip, as: 'enableOutboundPublicIp'
1052
1111
  property :enable_public_ip, as: 'enablePublicIp'
1112
+ property :network, as: 'network'
1053
1113
  end
1054
1114
  end
1055
1115
 
@@ -1132,6 +1192,7 @@ module Google
1132
1192
  # @private
1133
1193
  class Representation < Google::Apis::Core::JsonRepresentation
1134
1194
  property :cpu_count, as: 'cpuCount'
1195
+ property :machine_type, as: 'machineType'
1135
1196
  end
1136
1197
  end
1137
1198
 
@@ -1145,6 +1206,8 @@ module Google
1145
1206
  class MaintenanceUpdatePolicy
1146
1207
  # @private
1147
1208
  class Representation < Google::Apis::Core::JsonRepresentation
1209
+ collection :deny_maintenance_periods, as: 'denyMaintenancePeriods', class: Google::Apis::AlloydbV1beta::DenyMaintenancePeriod, decorator: Google::Apis::AlloydbV1beta::DenyMaintenancePeriod::Representation
1210
+
1148
1211
  collection :maintenance_windows, as: 'maintenanceWindows', class: Google::Apis::AlloydbV1beta::MaintenanceWindow, decorator: Google::Apis::AlloydbV1beta::MaintenanceWindow::Representation
1149
1212
 
1150
1213
  end
@@ -1189,6 +1252,7 @@ module Google
1189
1252
  class ObservabilityInstanceConfig
1190
1253
  # @private
1191
1254
  class Representation < Google::Apis::Core::JsonRepresentation
1255
+ property :assistive_experiences_enabled, as: 'assistiveExperiencesEnabled'
1192
1256
  property :enabled, as: 'enabled'
1193
1257
  property :max_query_string_length, as: 'maxQueryStringLength'
1194
1258
  property :preserve_comments, as: 'preserveComments'
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.23.0
4
+ version: 0.25.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
8
  bindir: bin
9
9
  cert_chain: []
10
- date: 2025-03-09 00:00:00.000000000 Z
10
+ date: 2025-03-23 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.23.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-alloydb_v1beta/v0.25.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: