google-apis-alloydb_v1alpha 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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d7646c09514f1e3f9667bd22237bd43551011b3901627aac64d44921bce951b3
|
4
|
+
data.tar.gz: 07a7d6ffe4eb4103c25eed03be5a488d10f7954821e8fbc0e44fe533f147c46e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: eadc69fc520c660e8945d2afe9a2fa70ceec25979a909c2cc36f378727dac8b650ef8c5f55844fc31e9accdbabfbc3f05996eaa4eab966ad8f3a011a577230b4
|
7
|
+
data.tar.gz: 4d68ff7e4cdeca5e4ed6d5caa02f65af23d1e9a5195bc8e87cedf5a4a1e14c6506a00e66bf83104bc4229a500447a5dc462c6d72098f512a5e02c4814b92160b
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-alloydb_v1alpha
|
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
|
@@ -806,6 +806,107 @@ module Google
|
|
806
806
|
end
|
807
807
|
end
|
808
808
|
|
809
|
+
# Configuration for Managed Connection Pool (MCP).
|
810
|
+
class ConnectionPoolConfig
|
811
|
+
include Google::Apis::Core::Hashable
|
812
|
+
|
813
|
+
# Optional. Deprecated. Use 'flags' instead. The default pool size. Defaults to
|
814
|
+
# 20.
|
815
|
+
# Corresponds to the JSON property `defaultPoolSize`
|
816
|
+
# @return [String]
|
817
|
+
attr_accessor :default_pool_size
|
818
|
+
|
819
|
+
# Optional. Deprecated; Prefer 'enabled' as this will be removed soon. TODO(b/
|
820
|
+
# 394996708) move to reserved once the field is removed from the gcloud client.
|
821
|
+
# Corresponds to the JSON property `enable`
|
822
|
+
# @return [Boolean]
|
823
|
+
attr_accessor :enable
|
824
|
+
alias_method :enable?, :enable
|
825
|
+
|
826
|
+
# Optional. Whether to enable Managed Connection Pool (MCP).
|
827
|
+
# Corresponds to the JSON property `enabled`
|
828
|
+
# @return [Boolean]
|
829
|
+
attr_accessor :enabled
|
830
|
+
alias_method :enabled?, :enabled
|
831
|
+
|
832
|
+
# Optional. Connection Pool flags, as a list of "key": "value" pairs.
|
833
|
+
# Corresponds to the JSON property `flags`
|
834
|
+
# @return [Hash<String,String>]
|
835
|
+
attr_accessor :flags
|
836
|
+
|
837
|
+
# Optional. Deprecated. Use 'flags' instead. The list of startup parameters to
|
838
|
+
# ignore. Defaults to ["extra_float_digits"]
|
839
|
+
# Corresponds to the JSON property `ignoreStartupParameters`
|
840
|
+
# @return [Array<String>]
|
841
|
+
attr_accessor :ignore_startup_parameters
|
842
|
+
|
843
|
+
# Optional. Deprecated. Use 'flags' instead. The maximum number of client
|
844
|
+
# connections allowed.
|
845
|
+
# Corresponds to the JSON property `maxClientConn`
|
846
|
+
# @return [String]
|
847
|
+
attr_accessor :max_client_conn
|
848
|
+
|
849
|
+
# Optional. Deprecated. Use 'flags' instead. The maximum number of prepared
|
850
|
+
# statements allowed. MCP makes sure that any statement prepared by a client, up
|
851
|
+
# to this limit, is available on the backing server connection in transaction
|
852
|
+
# and statement pooling mode. Even if the statement was originally prepared on
|
853
|
+
# another server connection. Defaults to 0.
|
854
|
+
# Corresponds to the JSON property `maxPreparedStatements`
|
855
|
+
# @return [String]
|
856
|
+
attr_accessor :max_prepared_statements
|
857
|
+
|
858
|
+
# Optional. Deprecated. Use 'flags' instead. The minimum pool size. Defaults to
|
859
|
+
# 0.
|
860
|
+
# Corresponds to the JSON property `minPoolSize`
|
861
|
+
# @return [String]
|
862
|
+
attr_accessor :min_pool_size
|
863
|
+
|
864
|
+
# Optional. Deprecated. Use 'flags' instead. The pool mode. Defaults to `
|
865
|
+
# POOL_MODE_TRANSACTION`.
|
866
|
+
# Corresponds to the JSON property `poolMode`
|
867
|
+
# @return [String]
|
868
|
+
attr_accessor :pool_mode
|
869
|
+
|
870
|
+
# Optional. Deprecated. Use 'flags' instead. The maximum number of seconds
|
871
|
+
# queries are allowed to spend waiting for execution. If the query is not
|
872
|
+
# assigned to a server during that time, the client is disconnected. 0 disables.
|
873
|
+
# Corresponds to the JSON property `queryWaitTimeout`
|
874
|
+
# @return [String]
|
875
|
+
attr_accessor :query_wait_timeout
|
876
|
+
|
877
|
+
# Optional. Deprecated. Use 'flags' instead. The maximum number of seconds a
|
878
|
+
# server is allowed to be idle before it is disconnected. 0 disables.
|
879
|
+
# Corresponds to the JSON property `serverIdleTimeout`
|
880
|
+
# @return [String]
|
881
|
+
attr_accessor :server_idle_timeout
|
882
|
+
|
883
|
+
# Optional. Deprecated. Use 'flags' instead. The list of users that are allowed
|
884
|
+
# to connect to the MCP stats console. The users must exist in the database.
|
885
|
+
# Corresponds to the JSON property `statsUsers`
|
886
|
+
# @return [Array<String>]
|
887
|
+
attr_accessor :stats_users
|
888
|
+
|
889
|
+
def initialize(**args)
|
890
|
+
update!(**args)
|
891
|
+
end
|
892
|
+
|
893
|
+
# Update properties of this object
|
894
|
+
def update!(**args)
|
895
|
+
@default_pool_size = args[:default_pool_size] if args.key?(:default_pool_size)
|
896
|
+
@enable = args[:enable] if args.key?(:enable)
|
897
|
+
@enabled = args[:enabled] if args.key?(:enabled)
|
898
|
+
@flags = args[:flags] if args.key?(:flags)
|
899
|
+
@ignore_startup_parameters = args[:ignore_startup_parameters] if args.key?(:ignore_startup_parameters)
|
900
|
+
@max_client_conn = args[:max_client_conn] if args.key?(:max_client_conn)
|
901
|
+
@max_prepared_statements = args[:max_prepared_statements] if args.key?(:max_prepared_statements)
|
902
|
+
@min_pool_size = args[:min_pool_size] if args.key?(:min_pool_size)
|
903
|
+
@pool_mode = args[:pool_mode] if args.key?(:pool_mode)
|
904
|
+
@query_wait_timeout = args[:query_wait_timeout] if args.key?(:query_wait_timeout)
|
905
|
+
@server_idle_timeout = args[:server_idle_timeout] if args.key?(:server_idle_timeout)
|
906
|
+
@stats_users = args[:stats_users] if args.key?(:stats_users)
|
907
|
+
end
|
908
|
+
end
|
909
|
+
|
809
910
|
# ContinuousBackupConfig describes the continuous backups recovery
|
810
911
|
# configurations of a cluster.
|
811
912
|
class ContinuousBackupConfig
|
@@ -1002,6 +1103,55 @@ module Google
|
|
1002
1103
|
end
|
1003
1104
|
end
|
1004
1105
|
|
1106
|
+
# DenyMaintenancePeriod definition. Excepting emergencies, maintenance will not
|
1107
|
+
# be scheduled to start within this deny period. The start_date must be less
|
1108
|
+
# than the end_date.
|
1109
|
+
class DenyMaintenancePeriod
|
1110
|
+
include Google::Apis::Core::Hashable
|
1111
|
+
|
1112
|
+
# Represents a whole or partial calendar date, such as a birthday. The time of
|
1113
|
+
# day and time zone are either specified elsewhere or are insignificant. The
|
1114
|
+
# date is relative to the Gregorian Calendar. This can represent one of the
|
1115
|
+
# following: * A full date, with non-zero year, month, and day values. * A month
|
1116
|
+
# and day, with a zero year (for example, an anniversary). * A year on its own,
|
1117
|
+
# with a zero month and a zero day. * A year and month, with a zero day (for
|
1118
|
+
# example, a credit card expiration date). Related types: * google.type.
|
1119
|
+
# TimeOfDay * google.type.DateTime * google.protobuf.Timestamp
|
1120
|
+
# Corresponds to the JSON property `endDate`
|
1121
|
+
# @return [Google::Apis::AlloydbV1alpha::GoogleTypeDate]
|
1122
|
+
attr_accessor :end_date
|
1123
|
+
|
1124
|
+
# Represents a whole or partial calendar date, such as a birthday. The time of
|
1125
|
+
# day and time zone are either specified elsewhere or are insignificant. The
|
1126
|
+
# date is relative to the Gregorian Calendar. This can represent one of the
|
1127
|
+
# following: * A full date, with non-zero year, month, and day values. * A month
|
1128
|
+
# and day, with a zero year (for example, an anniversary). * A year on its own,
|
1129
|
+
# with a zero month and a zero day. * A year and month, with a zero day (for
|
1130
|
+
# example, a credit card expiration date). Related types: * google.type.
|
1131
|
+
# TimeOfDay * google.type.DateTime * google.protobuf.Timestamp
|
1132
|
+
# Corresponds to the JSON property `startDate`
|
1133
|
+
# @return [Google::Apis::AlloydbV1alpha::GoogleTypeDate]
|
1134
|
+
attr_accessor :start_date
|
1135
|
+
|
1136
|
+
# Represents a time of day. The date and time zone are either not significant or
|
1137
|
+
# are specified elsewhere. An API may choose to allow leap seconds. Related
|
1138
|
+
# types are google.type.Date and `google.protobuf.Timestamp`.
|
1139
|
+
# Corresponds to the JSON property `time`
|
1140
|
+
# @return [Google::Apis::AlloydbV1alpha::GoogleTypeTimeOfDay]
|
1141
|
+
attr_accessor :time
|
1142
|
+
|
1143
|
+
def initialize(**args)
|
1144
|
+
update!(**args)
|
1145
|
+
end
|
1146
|
+
|
1147
|
+
# Update properties of this object
|
1148
|
+
def update!(**args)
|
1149
|
+
@end_date = args[:end_date] if args.key?(:end_date)
|
1150
|
+
@start_date = args[:start_date] if args.key?(:start_date)
|
1151
|
+
@time = args[:time] if args.key?(:time)
|
1152
|
+
end
|
1153
|
+
end
|
1154
|
+
|
1005
1155
|
# A generic empty message that you can re-use to avoid defining duplicated empty
|
1006
1156
|
# messages in your APIs. A typical example is to use it as the request or the
|
1007
1157
|
# response type of an API method. For instance: service Foo ` rpc Bar(google.
|
@@ -1302,6 +1452,47 @@ module Google
|
|
1302
1452
|
end
|
1303
1453
|
end
|
1304
1454
|
|
1455
|
+
# Represents a whole or partial calendar date, such as a birthday. The time of
|
1456
|
+
# day and time zone are either specified elsewhere or are insignificant. The
|
1457
|
+
# date is relative to the Gregorian Calendar. This can represent one of the
|
1458
|
+
# following: * A full date, with non-zero year, month, and day values. * A month
|
1459
|
+
# and day, with a zero year (for example, an anniversary). * A year on its own,
|
1460
|
+
# with a zero month and a zero day. * A year and month, with a zero day (for
|
1461
|
+
# example, a credit card expiration date). Related types: * google.type.
|
1462
|
+
# TimeOfDay * google.type.DateTime * google.protobuf.Timestamp
|
1463
|
+
class GoogleTypeDate
|
1464
|
+
include Google::Apis::Core::Hashable
|
1465
|
+
|
1466
|
+
# Day of a month. Must be from 1 to 31 and valid for the year and month, or 0 to
|
1467
|
+
# specify a year by itself or a year and month where the day isn't significant.
|
1468
|
+
# Corresponds to the JSON property `day`
|
1469
|
+
# @return [Fixnum]
|
1470
|
+
attr_accessor :day
|
1471
|
+
|
1472
|
+
# Month of a year. Must be from 1 to 12, or 0 to specify a year without a month
|
1473
|
+
# and day.
|
1474
|
+
# Corresponds to the JSON property `month`
|
1475
|
+
# @return [Fixnum]
|
1476
|
+
attr_accessor :month
|
1477
|
+
|
1478
|
+
# Year of the date. Must be from 1 to 9999, or 0 to specify a date without a
|
1479
|
+
# year.
|
1480
|
+
# Corresponds to the JSON property `year`
|
1481
|
+
# @return [Fixnum]
|
1482
|
+
attr_accessor :year
|
1483
|
+
|
1484
|
+
def initialize(**args)
|
1485
|
+
update!(**args)
|
1486
|
+
end
|
1487
|
+
|
1488
|
+
# Update properties of this object
|
1489
|
+
def update!(**args)
|
1490
|
+
@day = args[:day] if args.key?(:day)
|
1491
|
+
@month = args[:month] if args.key?(:month)
|
1492
|
+
@year = args[:year] if args.key?(:year)
|
1493
|
+
end
|
1494
|
+
end
|
1495
|
+
|
1305
1496
|
# Represents a time of day. The date and time zone are either not significant or
|
1306
1497
|
# are specified elsewhere. An API may choose to allow leap seconds. Related
|
1307
1498
|
# types are google.type.Date and `google.protobuf.Timestamp`.
|
@@ -1464,6 +1655,11 @@ module Google
|
|
1464
1655
|
# @return [Google::Apis::AlloydbV1alpha::ClientConnectionConfig]
|
1465
1656
|
attr_accessor :client_connection_config
|
1466
1657
|
|
1658
|
+
# Configuration for Managed Connection Pool (MCP).
|
1659
|
+
# Corresponds to the JSON property `connectionPoolConfig`
|
1660
|
+
# @return [Google::Apis::AlloydbV1alpha::ConnectionPoolConfig]
|
1661
|
+
attr_accessor :connection_pool_config
|
1662
|
+
|
1467
1663
|
# Output only. Create time stamp
|
1468
1664
|
# Corresponds to the JSON property `createTime`
|
1469
1665
|
# @return [String]
|
@@ -1655,6 +1851,7 @@ module Google
|
|
1655
1851
|
@annotations = args[:annotations] if args.key?(:annotations)
|
1656
1852
|
@availability_type = args[:availability_type] if args.key?(:availability_type)
|
1657
1853
|
@client_connection_config = args[:client_connection_config] if args.key?(:client_connection_config)
|
1854
|
+
@connection_pool_config = args[:connection_pool_config] if args.key?(:connection_pool_config)
|
1658
1855
|
@create_time = args[:create_time] if args.key?(:create_time)
|
1659
1856
|
@database_flags = args[:database_flags] if args.key?(:database_flags)
|
1660
1857
|
@delete_time = args[:delete_time] if args.key?(:delete_time)
|
@@ -1709,6 +1906,14 @@ module Google
|
|
1709
1906
|
attr_accessor :enable_public_ip
|
1710
1907
|
alias_method :enable_public_ip?, :enable_public_ip
|
1711
1908
|
|
1909
|
+
# Output only. The resource link for the VPC network in which instance resources
|
1910
|
+
# are created and from which they are accessible via Private IP. This will be
|
1911
|
+
# the same value as the parent cluster's network. It is specified in the form: //
|
1912
|
+
# `projects/`project_number`/global/networks/`network_id``.
|
1913
|
+
# Corresponds to the JSON property `network`
|
1914
|
+
# @return [String]
|
1915
|
+
attr_accessor :network
|
1916
|
+
|
1712
1917
|
def initialize(**args)
|
1713
1918
|
update!(**args)
|
1714
1919
|
end
|
@@ -1718,6 +1923,7 @@ module Google
|
|
1718
1923
|
@authorized_external_networks = args[:authorized_external_networks] if args.key?(:authorized_external_networks)
|
1719
1924
|
@enable_outbound_public_ip = args[:enable_outbound_public_ip] if args.key?(:enable_outbound_public_ip)
|
1720
1925
|
@enable_public_ip = args[:enable_public_ip] if args.key?(:enable_public_ip)
|
1926
|
+
@network = args[:network] if args.key?(:network)
|
1721
1927
|
end
|
1722
1928
|
end
|
1723
1929
|
|
@@ -1960,6 +2166,12 @@ module Google
|
|
1960
2166
|
# @return [Fixnum]
|
1961
2167
|
attr_accessor :cpu_count
|
1962
2168
|
|
2169
|
+
# Machine type of the VM instance. E.g. "n2-highmem-4", "n2-highmem-8", "c4a-
|
2170
|
+
# highmem-4-lssd". cpu_count must match the number of vCPUs in the machine type.
|
2171
|
+
# Corresponds to the JSON property `machineType`
|
2172
|
+
# @return [String]
|
2173
|
+
attr_accessor :machine_type
|
2174
|
+
|
1963
2175
|
def initialize(**args)
|
1964
2176
|
update!(**args)
|
1965
2177
|
end
|
@@ -1967,6 +2179,7 @@ module Google
|
|
1967
2179
|
# Update properties of this object
|
1968
2180
|
def update!(**args)
|
1969
2181
|
@cpu_count = args[:cpu_count] if args.key?(:cpu_count)
|
2182
|
+
@machine_type = args[:machine_type] if args.key?(:machine_type)
|
1970
2183
|
end
|
1971
2184
|
end
|
1972
2185
|
|
@@ -1997,6 +2210,11 @@ module Google
|
|
1997
2210
|
class MaintenanceUpdatePolicy
|
1998
2211
|
include Google::Apis::Core::Hashable
|
1999
2212
|
|
2213
|
+
# Periods to deny maintenance. Currently limited to 1.
|
2214
|
+
# Corresponds to the JSON property `denyMaintenancePeriods`
|
2215
|
+
# @return [Array<Google::Apis::AlloydbV1alpha::DenyMaintenancePeriod>]
|
2216
|
+
attr_accessor :deny_maintenance_periods
|
2217
|
+
|
2000
2218
|
# Preferred windows to perform maintenance. Currently limited to 1.
|
2001
2219
|
# Corresponds to the JSON property `maintenanceWindows`
|
2002
2220
|
# @return [Array<Google::Apis::AlloydbV1alpha::MaintenanceWindow>]
|
@@ -2008,6 +2226,7 @@ module Google
|
|
2008
2226
|
|
2009
2227
|
# Update properties of this object
|
2010
2228
|
def update!(**args)
|
2229
|
+
@deny_maintenance_periods = args[:deny_maintenance_periods] if args.key?(:deny_maintenance_periods)
|
2011
2230
|
@maintenance_windows = args[:maintenance_windows] if args.key?(:maintenance_windows)
|
2012
2231
|
end
|
2013
2232
|
end
|
@@ -2152,6 +2371,12 @@ module Google
|
|
2152
2371
|
class ObservabilityInstanceConfig
|
2153
2372
|
include Google::Apis::Core::Hashable
|
2154
2373
|
|
2374
|
+
# Whether assistive experiences are enabled for this AlloyDB instance.
|
2375
|
+
# Corresponds to the JSON property `assistiveExperiencesEnabled`
|
2376
|
+
# @return [Boolean]
|
2377
|
+
attr_accessor :assistive_experiences_enabled
|
2378
|
+
alias_method :assistive_experiences_enabled?, :assistive_experiences_enabled
|
2379
|
+
|
2155
2380
|
# Observability feature status for an instance. This flag is turned "off" by
|
2156
2381
|
# default.
|
2157
2382
|
# Corresponds to the JSON property `enabled`
|
@@ -2214,6 +2439,7 @@ module Google
|
|
2214
2439
|
|
2215
2440
|
# Update properties of this object
|
2216
2441
|
def update!(**args)
|
2442
|
+
@assistive_experiences_enabled = args[:assistive_experiences_enabled] if args.key?(:assistive_experiences_enabled)
|
2217
2443
|
@enabled = args[:enabled] if args.key?(:enabled)
|
2218
2444
|
@max_query_string_length = args[:max_query_string_length] if args.key?(:max_query_string_length)
|
2219
2445
|
@preserve_comments = args[:preserve_comments] if args.key?(:preserve_comments)
|
@@ -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.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 = "
|
25
|
+
REVISION = "20250312"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -88,6 +88,12 @@ module Google
|
|
88
88
|
include Google::Apis::Core::JsonObjectSupport
|
89
89
|
end
|
90
90
|
|
91
|
+
class ConnectionPoolConfig
|
92
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
93
|
+
|
94
|
+
include Google::Apis::Core::JsonObjectSupport
|
95
|
+
end
|
96
|
+
|
91
97
|
class ContinuousBackupConfig
|
92
98
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
93
99
|
|
@@ -118,6 +124,12 @@ module Google
|
|
118
124
|
include Google::Apis::Core::JsonObjectSupport
|
119
125
|
end
|
120
126
|
|
127
|
+
class DenyMaintenancePeriod
|
128
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
129
|
+
|
130
|
+
include Google::Apis::Core::JsonObjectSupport
|
131
|
+
end
|
132
|
+
|
121
133
|
class Empty
|
122
134
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
123
135
|
|
@@ -184,6 +196,12 @@ module Google
|
|
184
196
|
include Google::Apis::Core::JsonObjectSupport
|
185
197
|
end
|
186
198
|
|
199
|
+
class GoogleTypeDate
|
200
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
201
|
+
|
202
|
+
include Google::Apis::Core::JsonObjectSupport
|
203
|
+
end
|
204
|
+
|
187
205
|
class GoogleTypeTimeOfDay
|
188
206
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
189
207
|
|
@@ -836,6 +854,24 @@ module Google
|
|
836
854
|
end
|
837
855
|
end
|
838
856
|
|
857
|
+
class ConnectionPoolConfig
|
858
|
+
# @private
|
859
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
860
|
+
property :default_pool_size, as: 'defaultPoolSize'
|
861
|
+
property :enable, as: 'enable'
|
862
|
+
property :enabled, as: 'enabled'
|
863
|
+
hash :flags, as: 'flags'
|
864
|
+
collection :ignore_startup_parameters, as: 'ignoreStartupParameters'
|
865
|
+
property :max_client_conn, as: 'maxClientConn'
|
866
|
+
property :max_prepared_statements, as: 'maxPreparedStatements'
|
867
|
+
property :min_pool_size, as: 'minPoolSize'
|
868
|
+
property :pool_mode, as: 'poolMode'
|
869
|
+
property :query_wait_timeout, as: 'queryWaitTimeout'
|
870
|
+
property :server_idle_timeout, as: 'serverIdleTimeout'
|
871
|
+
collection :stats_users, as: 'statsUsers'
|
872
|
+
end
|
873
|
+
end
|
874
|
+
|
839
875
|
class ContinuousBackupConfig
|
840
876
|
# @private
|
841
877
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -886,6 +922,18 @@ module Google
|
|
886
922
|
end
|
887
923
|
end
|
888
924
|
|
925
|
+
class DenyMaintenancePeriod
|
926
|
+
# @private
|
927
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
928
|
+
property :end_date, as: 'endDate', class: Google::Apis::AlloydbV1alpha::GoogleTypeDate, decorator: Google::Apis::AlloydbV1alpha::GoogleTypeDate::Representation
|
929
|
+
|
930
|
+
property :start_date, as: 'startDate', class: Google::Apis::AlloydbV1alpha::GoogleTypeDate, decorator: Google::Apis::AlloydbV1alpha::GoogleTypeDate::Representation
|
931
|
+
|
932
|
+
property :time, as: 'time', class: Google::Apis::AlloydbV1alpha::GoogleTypeTimeOfDay, decorator: Google::Apis::AlloydbV1alpha::GoogleTypeTimeOfDay::Representation
|
933
|
+
|
934
|
+
end
|
935
|
+
end
|
936
|
+
|
889
937
|
class Empty
|
890
938
|
# @private
|
891
939
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -976,6 +1024,15 @@ module Google
|
|
976
1024
|
end
|
977
1025
|
end
|
978
1026
|
|
1027
|
+
class GoogleTypeDate
|
1028
|
+
# @private
|
1029
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1030
|
+
property :day, as: 'day'
|
1031
|
+
property :month, as: 'month'
|
1032
|
+
property :year, as: 'year'
|
1033
|
+
end
|
1034
|
+
end
|
1035
|
+
|
979
1036
|
class GoogleTypeTimeOfDay
|
980
1037
|
# @private
|
981
1038
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1015,6 +1072,8 @@ module Google
|
|
1015
1072
|
property :availability_type, as: 'availabilityType'
|
1016
1073
|
property :client_connection_config, as: 'clientConnectionConfig', class: Google::Apis::AlloydbV1alpha::ClientConnectionConfig, decorator: Google::Apis::AlloydbV1alpha::ClientConnectionConfig::Representation
|
1017
1074
|
|
1075
|
+
property :connection_pool_config, as: 'connectionPoolConfig', class: Google::Apis::AlloydbV1alpha::ConnectionPoolConfig, decorator: Google::Apis::AlloydbV1alpha::ConnectionPoolConfig::Representation
|
1076
|
+
|
1018
1077
|
property :create_time, as: 'createTime'
|
1019
1078
|
hash :database_flags, as: 'databaseFlags'
|
1020
1079
|
property :delete_time, as: 'deleteTime'
|
@@ -1065,6 +1124,7 @@ module Google
|
|
1065
1124
|
|
1066
1125
|
property :enable_outbound_public_ip, as: 'enableOutboundPublicIp'
|
1067
1126
|
property :enable_public_ip, as: 'enablePublicIp'
|
1127
|
+
property :network, as: 'network'
|
1068
1128
|
end
|
1069
1129
|
end
|
1070
1130
|
|
@@ -1147,6 +1207,7 @@ module Google
|
|
1147
1207
|
# @private
|
1148
1208
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1149
1209
|
property :cpu_count, as: 'cpuCount'
|
1210
|
+
property :machine_type, as: 'machineType'
|
1150
1211
|
end
|
1151
1212
|
end
|
1152
1213
|
|
@@ -1160,6 +1221,8 @@ module Google
|
|
1160
1221
|
class MaintenanceUpdatePolicy
|
1161
1222
|
# @private
|
1162
1223
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1224
|
+
collection :deny_maintenance_periods, as: 'denyMaintenancePeriods', class: Google::Apis::AlloydbV1alpha::DenyMaintenancePeriod, decorator: Google::Apis::AlloydbV1alpha::DenyMaintenancePeriod::Representation
|
1225
|
+
|
1163
1226
|
collection :maintenance_windows, as: 'maintenanceWindows', class: Google::Apis::AlloydbV1alpha::MaintenanceWindow, decorator: Google::Apis::AlloydbV1alpha::MaintenanceWindow::Representation
|
1164
1227
|
|
1165
1228
|
end
|
@@ -1204,6 +1267,7 @@ module Google
|
|
1204
1267
|
class ObservabilityInstanceConfig
|
1205
1268
|
# @private
|
1206
1269
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1270
|
+
property :assistive_experiences_enabled, as: 'assistiveExperiencesEnabled'
|
1207
1271
|
property :enabled, as: 'enabled'
|
1208
1272
|
property :max_query_string_length, as: 'maxQueryStringLength'
|
1209
1273
|
property :preserve_comments, as: 'preserveComments'
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
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.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-
|
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_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.25.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:
|