google-apis-alloydb_v1alpha 0.44.0 → 0.45.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: d5dad50fe8cee4374ac95f6c3e1d25fbe00b5baa23b175783608c707389cd894
|
|
4
|
+
data.tar.gz: 7b9ef8f5396f5de68bfea76d6aad21ede4aa4764459b3421babf08342eb5e934
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 8729c0660f453dc2426da2ae99968d9c41f1d1924b2d8404c2b3b5919442aa6b2d07539cf3255899aa064b5e3e16f50d32d46726ef093aeb001dc23ba02bf020
|
|
7
|
+
data.tar.gz: b67c0c3f22c62c03f1825d8790e93f8c7b96b7be3dfd2c5541b1dd20628e4342c3defa084d8da85ac8c658a8404e54e9f5098a00a440ddadf4a40e62a7d6d65f
|
data/CHANGELOG.md
CHANGED
|
@@ -1959,6 +1959,16 @@ module Google
|
|
|
1959
1959
|
# @return [String]
|
|
1960
1960
|
attr_accessor :create_time
|
|
1961
1961
|
|
|
1962
|
+
# Optional. Controls whether the Data API is enabled for this instance. When
|
|
1963
|
+
# enabled, this allows authorized users to connect to the instance from the
|
|
1964
|
+
# public internet using the `executeSql` API, even for private IP instances. If
|
|
1965
|
+
# this is not specified, the data API is enabled by default for Google internal
|
|
1966
|
+
# services like AlloyDB Studio. Disable it explicitly to disallow Google
|
|
1967
|
+
# internal services as well.
|
|
1968
|
+
# Corresponds to the JSON property `dataApiAccess`
|
|
1969
|
+
# @return [String]
|
|
1970
|
+
attr_accessor :data_api_access
|
|
1971
|
+
|
|
1962
1972
|
# Database flags. Set at the instance level. They are copied from the primary
|
|
1963
1973
|
# instance on secondary instance creation. Flags that have restrictions default
|
|
1964
1974
|
# to the value at primary instance on read instances during creation. Read
|
|
@@ -2154,6 +2164,7 @@ module Google
|
|
|
2154
2164
|
@client_connection_config = args[:client_connection_config] if args.key?(:client_connection_config)
|
|
2155
2165
|
@connection_pool_config = args[:connection_pool_config] if args.key?(:connection_pool_config)
|
|
2156
2166
|
@create_time = args[:create_time] if args.key?(:create_time)
|
|
2167
|
+
@data_api_access = args[:data_api_access] if args.key?(:data_api_access)
|
|
2157
2168
|
@database_flags = args[:database_flags] if args.key?(:database_flags)
|
|
2158
2169
|
@delete_time = args[:delete_time] if args.key?(:delete_time)
|
|
2159
2170
|
@display_name = args[:display_name] if args.key?(:display_name)
|
|
@@ -4931,12 +4942,23 @@ module Google
|
|
|
4931
4942
|
# @return [Google::Apis::AlloydbV1alpha::StorageDatabasecenterPartnerapiV1mainResourceMaintenanceSchedule]
|
|
4932
4943
|
attr_accessor :maintenance_schedule
|
|
4933
4944
|
|
|
4945
|
+
# Output only. Current state of maintenance on the database resource.
|
|
4946
|
+
# Corresponds to the JSON property `maintenanceState`
|
|
4947
|
+
# @return [String]
|
|
4948
|
+
attr_accessor :maintenance_state
|
|
4949
|
+
|
|
4934
4950
|
# Optional. Current Maintenance version of the database resource. Example: "
|
|
4935
4951
|
# MYSQL_8_0_41.R20250531.01_15"
|
|
4936
4952
|
# Corresponds to the JSON property `maintenanceVersion`
|
|
4937
4953
|
# @return [String]
|
|
4938
4954
|
attr_accessor :maintenance_version
|
|
4939
4955
|
|
|
4956
|
+
# Upcoming maintenance for the database resource. This is generated by SLM once
|
|
4957
|
+
# the upcoming maintenance schedule is published.
|
|
4958
|
+
# Corresponds to the JSON property `upcomingMaintenance`
|
|
4959
|
+
# @return [Google::Apis::AlloydbV1alpha::StorageDatabasecenterPartnerapiV1mainUpcomingMaintenance]
|
|
4960
|
+
attr_accessor :upcoming_maintenance
|
|
4961
|
+
|
|
4940
4962
|
def initialize(**args)
|
|
4941
4963
|
update!(**args)
|
|
4942
4964
|
end
|
|
@@ -4945,7 +4967,9 @@ module Google
|
|
|
4945
4967
|
def update!(**args)
|
|
4946
4968
|
@deny_maintenance_schedules = args[:deny_maintenance_schedules] if args.key?(:deny_maintenance_schedules)
|
|
4947
4969
|
@maintenance_schedule = args[:maintenance_schedule] if args.key?(:maintenance_schedule)
|
|
4970
|
+
@maintenance_state = args[:maintenance_state] if args.key?(:maintenance_state)
|
|
4948
4971
|
@maintenance_version = args[:maintenance_version] if args.key?(:maintenance_version)
|
|
4972
|
+
@upcoming_maintenance = args[:upcoming_maintenance] if args.key?(:upcoming_maintenance)
|
|
4949
4973
|
end
|
|
4950
4974
|
end
|
|
4951
4975
|
|
|
@@ -5052,6 +5076,32 @@ module Google
|
|
|
5052
5076
|
end
|
|
5053
5077
|
end
|
|
5054
5078
|
|
|
5079
|
+
# Upcoming maintenance for the database resource. This is generated by SLM once
|
|
5080
|
+
# the upcoming maintenance schedule is published.
|
|
5081
|
+
class StorageDatabasecenterPartnerapiV1mainUpcomingMaintenance
|
|
5082
|
+
include Google::Apis::Core::Hashable
|
|
5083
|
+
|
|
5084
|
+
# Optional. The end time of the upcoming maintenance.
|
|
5085
|
+
# Corresponds to the JSON property `endTime`
|
|
5086
|
+
# @return [String]
|
|
5087
|
+
attr_accessor :end_time
|
|
5088
|
+
|
|
5089
|
+
# Optional. The start time of the upcoming maintenance.
|
|
5090
|
+
# Corresponds to the JSON property `startTime`
|
|
5091
|
+
# @return [String]
|
|
5092
|
+
attr_accessor :start_time
|
|
5093
|
+
|
|
5094
|
+
def initialize(**args)
|
|
5095
|
+
update!(**args)
|
|
5096
|
+
end
|
|
5097
|
+
|
|
5098
|
+
# Update properties of this object
|
|
5099
|
+
def update!(**args)
|
|
5100
|
+
@end_time = args[:end_time] if args.key?(:end_time)
|
|
5101
|
+
@start_time = args[:start_time] if args.key?(:start_time)
|
|
5102
|
+
end
|
|
5103
|
+
end
|
|
5104
|
+
|
|
5055
5105
|
# Message type for storing user labels. User labels are used to tag App Engine
|
|
5056
5106
|
# resources, allowing users to search for resources matching a set of labels and
|
|
5057
5107
|
# to aggregate usage data by labels.
|
|
@@ -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.45.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
22
|
GENERATOR_VERSION = "0.18.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20260122"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -676,6 +676,12 @@ module Google
|
|
|
676
676
|
include Google::Apis::Core::JsonObjectSupport
|
|
677
677
|
end
|
|
678
678
|
|
|
679
|
+
class StorageDatabasecenterPartnerapiV1mainUpcomingMaintenance
|
|
680
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
681
|
+
|
|
682
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
683
|
+
end
|
|
684
|
+
|
|
679
685
|
class StorageDatabasecenterPartnerapiV1mainUserLabels
|
|
680
686
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
681
687
|
|
|
@@ -1247,6 +1253,7 @@ module Google
|
|
|
1247
1253
|
property :connection_pool_config, as: 'connectionPoolConfig', class: Google::Apis::AlloydbV1alpha::ConnectionPoolConfig, decorator: Google::Apis::AlloydbV1alpha::ConnectionPoolConfig::Representation
|
|
1248
1254
|
|
|
1249
1255
|
property :create_time, as: 'createTime'
|
|
1256
|
+
property :data_api_access, as: 'dataApiAccess'
|
|
1250
1257
|
hash :database_flags, as: 'databaseFlags'
|
|
1251
1258
|
property :delete_time, as: 'deleteTime'
|
|
1252
1259
|
property :display_name, as: 'displayName'
|
|
@@ -2008,7 +2015,10 @@ module Google
|
|
|
2008
2015
|
|
|
2009
2016
|
property :maintenance_schedule, as: 'maintenanceSchedule', class: Google::Apis::AlloydbV1alpha::StorageDatabasecenterPartnerapiV1mainResourceMaintenanceSchedule, decorator: Google::Apis::AlloydbV1alpha::StorageDatabasecenterPartnerapiV1mainResourceMaintenanceSchedule::Representation
|
|
2010
2017
|
|
|
2018
|
+
property :maintenance_state, as: 'maintenanceState'
|
|
2011
2019
|
property :maintenance_version, as: 'maintenanceVersion'
|
|
2020
|
+
property :upcoming_maintenance, as: 'upcomingMaintenance', class: Google::Apis::AlloydbV1alpha::StorageDatabasecenterPartnerapiV1mainUpcomingMaintenance, decorator: Google::Apis::AlloydbV1alpha::StorageDatabasecenterPartnerapiV1mainUpcomingMaintenance::Representation
|
|
2021
|
+
|
|
2012
2022
|
end
|
|
2013
2023
|
end
|
|
2014
2024
|
|
|
@@ -2040,6 +2050,14 @@ module Google
|
|
|
2040
2050
|
end
|
|
2041
2051
|
end
|
|
2042
2052
|
|
|
2053
|
+
class StorageDatabasecenterPartnerapiV1mainUpcomingMaintenance
|
|
2054
|
+
# @private
|
|
2055
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
2056
|
+
property :end_time, as: 'endTime'
|
|
2057
|
+
property :start_time, as: 'startTime'
|
|
2058
|
+
end
|
|
2059
|
+
end
|
|
2060
|
+
|
|
2043
2061
|
class StorageDatabasecenterPartnerapiV1mainUserLabels
|
|
2044
2062
|
# @private
|
|
2045
2063
|
class Representation < Google::Apis::Core::JsonRepresentation
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-apis-alloydb_v1alpha
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.45.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Google LLC
|
|
@@ -57,7 +57,7 @@ licenses:
|
|
|
57
57
|
metadata:
|
|
58
58
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
|
59
59
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-alloydb_v1alpha/CHANGELOG.md
|
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-alloydb_v1alpha/v0.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-alloydb_v1alpha/v0.45.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:
|