google-apis-alloydb_v1 0.52.0 → 0.53.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: e4e858682fc648cc3cff70a0dde46eb4c8105a1f25d6f3e69559299e1b7313b7
|
|
4
|
+
data.tar.gz: 9f654642f29ee1caddf6e7f719241ee3891f593a1e55b4c1bbe96b66cbcc87d4
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d9d24e01314f60d7e9e7e3c332fa3da97332e3968393699993900262376795a24a3732ea3fb4fc3d0ed3e7bf8a98d34e3276c1ebb696c0ea9b4f290c310ad651
|
|
7
|
+
data.tar.gz: 917f145415a8267d00b0964dfcfcdd850fa4ec6d6d70bef4dc5ad67d86d5ad6ea97ff13890682a0b7e4e50b869f144bdfd2984a49b8c248082826a640ca7a374
|
data/CHANGELOG.md
CHANGED
|
@@ -1755,6 +1755,16 @@ module Google
|
|
|
1755
1755
|
# @return [String]
|
|
1756
1756
|
attr_accessor :create_time
|
|
1757
1757
|
|
|
1758
|
+
# Optional. Controls whether the Data API is enabled for this instance. When
|
|
1759
|
+
# enabled, this allows authorized users to connect to the instance from the
|
|
1760
|
+
# public internet using the `executeSql` API, even for private IP instances. If
|
|
1761
|
+
# this is not specified, the data API is enabled by default for Google internal
|
|
1762
|
+
# services like AlloyDB Studio. Disable it explicitly to disallow Google
|
|
1763
|
+
# internal services as well.
|
|
1764
|
+
# Corresponds to the JSON property `dataApiAccess`
|
|
1765
|
+
# @return [String]
|
|
1766
|
+
attr_accessor :data_api_access
|
|
1767
|
+
|
|
1758
1768
|
# Database flags. Set at the instance level. They are copied from the primary
|
|
1759
1769
|
# instance on secondary instance creation. Flags that have restrictions default
|
|
1760
1770
|
# to the value at primary instance on read instances during creation. Read
|
|
@@ -1928,6 +1938,7 @@ module Google
|
|
|
1928
1938
|
@client_connection_config = args[:client_connection_config] if args.key?(:client_connection_config)
|
|
1929
1939
|
@connection_pool_config = args[:connection_pool_config] if args.key?(:connection_pool_config)
|
|
1930
1940
|
@create_time = args[:create_time] if args.key?(:create_time)
|
|
1941
|
+
@data_api_access = args[:data_api_access] if args.key?(:data_api_access)
|
|
1931
1942
|
@database_flags = args[:database_flags] if args.key?(:database_flags)
|
|
1932
1943
|
@delete_time = args[:delete_time] if args.key?(:delete_time)
|
|
1933
1944
|
@display_name = args[:display_name] if args.key?(:display_name)
|
|
@@ -4582,12 +4593,23 @@ module Google
|
|
|
4582
4593
|
# @return [Google::Apis::AlloydbV1::StorageDatabasecenterPartnerapiV1mainResourceMaintenanceSchedule]
|
|
4583
4594
|
attr_accessor :maintenance_schedule
|
|
4584
4595
|
|
|
4596
|
+
# Output only. Current state of maintenance on the database resource.
|
|
4597
|
+
# Corresponds to the JSON property `maintenanceState`
|
|
4598
|
+
# @return [String]
|
|
4599
|
+
attr_accessor :maintenance_state
|
|
4600
|
+
|
|
4585
4601
|
# Optional. Current Maintenance version of the database resource. Example: "
|
|
4586
4602
|
# MYSQL_8_0_41.R20250531.01_15"
|
|
4587
4603
|
# Corresponds to the JSON property `maintenanceVersion`
|
|
4588
4604
|
# @return [String]
|
|
4589
4605
|
attr_accessor :maintenance_version
|
|
4590
4606
|
|
|
4607
|
+
# Upcoming maintenance for the database resource. This is generated by SLM once
|
|
4608
|
+
# the upcoming maintenance schedule is published.
|
|
4609
|
+
# Corresponds to the JSON property `upcomingMaintenance`
|
|
4610
|
+
# @return [Google::Apis::AlloydbV1::StorageDatabasecenterPartnerapiV1mainUpcomingMaintenance]
|
|
4611
|
+
attr_accessor :upcoming_maintenance
|
|
4612
|
+
|
|
4591
4613
|
def initialize(**args)
|
|
4592
4614
|
update!(**args)
|
|
4593
4615
|
end
|
|
@@ -4596,7 +4618,9 @@ module Google
|
|
|
4596
4618
|
def update!(**args)
|
|
4597
4619
|
@deny_maintenance_schedules = args[:deny_maintenance_schedules] if args.key?(:deny_maintenance_schedules)
|
|
4598
4620
|
@maintenance_schedule = args[:maintenance_schedule] if args.key?(:maintenance_schedule)
|
|
4621
|
+
@maintenance_state = args[:maintenance_state] if args.key?(:maintenance_state)
|
|
4599
4622
|
@maintenance_version = args[:maintenance_version] if args.key?(:maintenance_version)
|
|
4623
|
+
@upcoming_maintenance = args[:upcoming_maintenance] if args.key?(:upcoming_maintenance)
|
|
4600
4624
|
end
|
|
4601
4625
|
end
|
|
4602
4626
|
|
|
@@ -4703,6 +4727,32 @@ module Google
|
|
|
4703
4727
|
end
|
|
4704
4728
|
end
|
|
4705
4729
|
|
|
4730
|
+
# Upcoming maintenance for the database resource. This is generated by SLM once
|
|
4731
|
+
# the upcoming maintenance schedule is published.
|
|
4732
|
+
class StorageDatabasecenterPartnerapiV1mainUpcomingMaintenance
|
|
4733
|
+
include Google::Apis::Core::Hashable
|
|
4734
|
+
|
|
4735
|
+
# Optional. The end time of the upcoming maintenance.
|
|
4736
|
+
# Corresponds to the JSON property `endTime`
|
|
4737
|
+
# @return [String]
|
|
4738
|
+
attr_accessor :end_time
|
|
4739
|
+
|
|
4740
|
+
# Optional. The start time of the upcoming maintenance.
|
|
4741
|
+
# Corresponds to the JSON property `startTime`
|
|
4742
|
+
# @return [String]
|
|
4743
|
+
attr_accessor :start_time
|
|
4744
|
+
|
|
4745
|
+
def initialize(**args)
|
|
4746
|
+
update!(**args)
|
|
4747
|
+
end
|
|
4748
|
+
|
|
4749
|
+
# Update properties of this object
|
|
4750
|
+
def update!(**args)
|
|
4751
|
+
@end_time = args[:end_time] if args.key?(:end_time)
|
|
4752
|
+
@start_time = args[:start_time] if args.key?(:start_time)
|
|
4753
|
+
end
|
|
4754
|
+
end
|
|
4755
|
+
|
|
4706
4756
|
# Message type for storing user labels. User labels are used to tag App Engine
|
|
4707
4757
|
# resources, allowing users to search for resources matching a set of labels and
|
|
4708
4758
|
# to aggregate usage data by labels.
|
|
@@ -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.
|
|
19
|
+
GEM_VERSION = "0.53.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
|
|
@@ -646,6 +646,12 @@ module Google
|
|
|
646
646
|
include Google::Apis::Core::JsonObjectSupport
|
|
647
647
|
end
|
|
648
648
|
|
|
649
|
+
class StorageDatabasecenterPartnerapiV1mainUpcomingMaintenance
|
|
650
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
651
|
+
|
|
652
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
653
|
+
end
|
|
654
|
+
|
|
649
655
|
class StorageDatabasecenterPartnerapiV1mainUserLabels
|
|
650
656
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
651
657
|
|
|
@@ -1170,6 +1176,7 @@ module Google
|
|
|
1170
1176
|
property :connection_pool_config, as: 'connectionPoolConfig', class: Google::Apis::AlloydbV1::ConnectionPoolConfig, decorator: Google::Apis::AlloydbV1::ConnectionPoolConfig::Representation
|
|
1171
1177
|
|
|
1172
1178
|
property :create_time, as: 'createTime'
|
|
1179
|
+
property :data_api_access, as: 'dataApiAccess'
|
|
1173
1180
|
hash :database_flags, as: 'databaseFlags'
|
|
1174
1181
|
property :delete_time, as: 'deleteTime'
|
|
1175
1182
|
property :display_name, as: 'displayName'
|
|
@@ -1896,7 +1903,10 @@ module Google
|
|
|
1896
1903
|
|
|
1897
1904
|
property :maintenance_schedule, as: 'maintenanceSchedule', class: Google::Apis::AlloydbV1::StorageDatabasecenterPartnerapiV1mainResourceMaintenanceSchedule, decorator: Google::Apis::AlloydbV1::StorageDatabasecenterPartnerapiV1mainResourceMaintenanceSchedule::Representation
|
|
1898
1905
|
|
|
1906
|
+
property :maintenance_state, as: 'maintenanceState'
|
|
1899
1907
|
property :maintenance_version, as: 'maintenanceVersion'
|
|
1908
|
+
property :upcoming_maintenance, as: 'upcomingMaintenance', class: Google::Apis::AlloydbV1::StorageDatabasecenterPartnerapiV1mainUpcomingMaintenance, decorator: Google::Apis::AlloydbV1::StorageDatabasecenterPartnerapiV1mainUpcomingMaintenance::Representation
|
|
1909
|
+
|
|
1900
1910
|
end
|
|
1901
1911
|
end
|
|
1902
1912
|
|
|
@@ -1928,6 +1938,14 @@ module Google
|
|
|
1928
1938
|
end
|
|
1929
1939
|
end
|
|
1930
1940
|
|
|
1941
|
+
class StorageDatabasecenterPartnerapiV1mainUpcomingMaintenance
|
|
1942
|
+
# @private
|
|
1943
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1944
|
+
property :end_time, as: 'endTime'
|
|
1945
|
+
property :start_time, as: 'startTime'
|
|
1946
|
+
end
|
|
1947
|
+
end
|
|
1948
|
+
|
|
1931
1949
|
class StorageDatabasecenterPartnerapiV1mainUserLabels
|
|
1932
1950
|
# @private
|
|
1933
1951
|
class Representation < Google::Apis::Core::JsonRepresentation
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-apis-alloydb_v1
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.53.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_v1/CHANGELOG.md
|
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-alloydb_v1/v0.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-alloydb_v1/v0.53.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:
|