google-apis-alloydb_v1beta 0.38.0 → 0.40.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: 1b192d9e3726d98f0430d7e33fb75e3b8c47dfce3176cb2257368396a6a845f7
|
|
4
|
+
data.tar.gz: 436050b62ea96c37cbe4837432e95e94d5795f46858abd3290cc83fc89292522
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: bfd098e25fd81200467ab7eff933d6c2c812a6399aa257a8a1d3dc77820cfad77aac77c7581f3bfc1e9ed9bcc75771950d0cf329fa2ad7fefa00c43707a671fd
|
|
7
|
+
data.tar.gz: 35517d6ab72e62c1bd697a1014e19cd27026232dd2b2b28cc4eac56cb2a9238cff654f02a5d2599611aab5aadce0b3a4fd1c35bbe4e2977033e81b19da2c0a78
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Release history for google-apis-alloydb_v1beta
|
|
2
2
|
|
|
3
|
+
### v0.40.0 (2025-10-26)
|
|
4
|
+
|
|
5
|
+
* Regenerated from discovery document revision 20251016
|
|
6
|
+
|
|
7
|
+
### v0.39.0 (2025-10-19)
|
|
8
|
+
|
|
9
|
+
* Regenerated from discovery document revision 20251009
|
|
10
|
+
|
|
3
11
|
### v0.38.0 (2025-10-05)
|
|
4
12
|
|
|
5
13
|
* Regenerated from discovery document revision 20250925
|
|
@@ -665,6 +665,11 @@ module Google
|
|
|
665
665
|
# @return [String]
|
|
666
666
|
attr_accessor :database_version
|
|
667
667
|
|
|
668
|
+
# Configuration for Dataplex integration.
|
|
669
|
+
# Corresponds to the JSON property `dataplexConfig`
|
|
670
|
+
# @return [Google::Apis::AlloydbV1beta::DataplexConfig]
|
|
671
|
+
attr_accessor :dataplex_config
|
|
672
|
+
|
|
668
673
|
# Output only. Delete time stamp
|
|
669
674
|
# Corresponds to the JSON property `deleteTime`
|
|
670
675
|
# @return [String]
|
|
@@ -721,6 +726,12 @@ module Google
|
|
|
721
726
|
# @return [Google::Apis::AlloydbV1beta::MaintenanceUpdatePolicy]
|
|
722
727
|
attr_accessor :maintenance_update_policy
|
|
723
728
|
|
|
729
|
+
# Input only. Policy to use to automatically select the maintenance version to
|
|
730
|
+
# which to update the cluster's instances.
|
|
731
|
+
# Corresponds to the JSON property `maintenanceVersionSelectionPolicy`
|
|
732
|
+
# @return [String]
|
|
733
|
+
attr_accessor :maintenance_version_selection_policy
|
|
734
|
+
|
|
724
735
|
# Subset of the source instance configuration that is available when reading the
|
|
725
736
|
# cluster resource.
|
|
726
737
|
# Corresponds to the JSON property `migrationSource`
|
|
@@ -846,6 +857,7 @@ module Google
|
|
|
846
857
|
@continuous_backup_info = args[:continuous_backup_info] if args.key?(:continuous_backup_info)
|
|
847
858
|
@create_time = args[:create_time] if args.key?(:create_time)
|
|
848
859
|
@database_version = args[:database_version] if args.key?(:database_version)
|
|
860
|
+
@dataplex_config = args[:dataplex_config] if args.key?(:dataplex_config)
|
|
849
861
|
@delete_time = args[:delete_time] if args.key?(:delete_time)
|
|
850
862
|
@display_name = args[:display_name] if args.key?(:display_name)
|
|
851
863
|
@encryption_config = args[:encryption_config] if args.key?(:encryption_config)
|
|
@@ -856,6 +868,7 @@ module Google
|
|
|
856
868
|
@labels = args[:labels] if args.key?(:labels)
|
|
857
869
|
@maintenance_schedule = args[:maintenance_schedule] if args.key?(:maintenance_schedule)
|
|
858
870
|
@maintenance_update_policy = args[:maintenance_update_policy] if args.key?(:maintenance_update_policy)
|
|
871
|
+
@maintenance_version_selection_policy = args[:maintenance_version_selection_policy] if args.key?(:maintenance_version_selection_policy)
|
|
859
872
|
@migration_source = args[:migration_source] if args.key?(:migration_source)
|
|
860
873
|
@name = args[:name] if args.key?(:name)
|
|
861
874
|
@network = args[:network] if args.key?(:network)
|
|
@@ -1322,6 +1335,28 @@ module Google
|
|
|
1322
1335
|
end
|
|
1323
1336
|
end
|
|
1324
1337
|
|
|
1338
|
+
# Configuration for Dataplex integration.
|
|
1339
|
+
class DataplexConfig
|
|
1340
|
+
include Google::Apis::Core::Hashable
|
|
1341
|
+
|
|
1342
|
+
# Dataplex is enabled by default for resources such as clusters and instances.
|
|
1343
|
+
# This flag controls the integration of AlloyDB PG resources (like databases,
|
|
1344
|
+
# schemas, and tables) with Dataplex."
|
|
1345
|
+
# Corresponds to the JSON property `enabled`
|
|
1346
|
+
# @return [Boolean]
|
|
1347
|
+
attr_accessor :enabled
|
|
1348
|
+
alias_method :enabled?, :enabled
|
|
1349
|
+
|
|
1350
|
+
def initialize(**args)
|
|
1351
|
+
update!(**args)
|
|
1352
|
+
end
|
|
1353
|
+
|
|
1354
|
+
# Update properties of this object
|
|
1355
|
+
def update!(**args)
|
|
1356
|
+
@enabled = args[:enabled] if args.key?(:enabled)
|
|
1357
|
+
end
|
|
1358
|
+
end
|
|
1359
|
+
|
|
1325
1360
|
# DenyMaintenancePeriod definition. Excepting emergencies, maintenance will not
|
|
1326
1361
|
# be scheduled to start within this deny period. The start_date must be less
|
|
1327
1362
|
# than the end_date.
|
|
@@ -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.
|
|
19
|
+
GEM_VERSION = "0.40.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 = "20251016"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -154,6 +154,12 @@ module Google
|
|
|
154
154
|
include Google::Apis::Core::JsonObjectSupport
|
|
155
155
|
end
|
|
156
156
|
|
|
157
|
+
class DataplexConfig
|
|
158
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
159
|
+
|
|
160
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
161
|
+
end
|
|
162
|
+
|
|
157
163
|
class DenyMaintenancePeriod
|
|
158
164
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
159
165
|
|
|
@@ -917,6 +923,8 @@ module Google
|
|
|
917
923
|
|
|
918
924
|
property :create_time, as: 'createTime'
|
|
919
925
|
property :database_version, as: 'databaseVersion'
|
|
926
|
+
property :dataplex_config, as: 'dataplexConfig', class: Google::Apis::AlloydbV1beta::DataplexConfig, decorator: Google::Apis::AlloydbV1beta::DataplexConfig::Representation
|
|
927
|
+
|
|
920
928
|
property :delete_time, as: 'deleteTime'
|
|
921
929
|
property :display_name, as: 'displayName'
|
|
922
930
|
property :encryption_config, as: 'encryptionConfig', class: Google::Apis::AlloydbV1beta::EncryptionConfig, decorator: Google::Apis::AlloydbV1beta::EncryptionConfig::Representation
|
|
@@ -933,6 +941,7 @@ module Google
|
|
|
933
941
|
|
|
934
942
|
property :maintenance_update_policy, as: 'maintenanceUpdatePolicy', class: Google::Apis::AlloydbV1beta::MaintenanceUpdatePolicy, decorator: Google::Apis::AlloydbV1beta::MaintenanceUpdatePolicy::Representation
|
|
935
943
|
|
|
944
|
+
property :maintenance_version_selection_policy, as: 'maintenanceVersionSelectionPolicy'
|
|
936
945
|
property :migration_source, as: 'migrationSource', class: Google::Apis::AlloydbV1beta::MigrationSource, decorator: Google::Apis::AlloydbV1beta::MigrationSource::Representation
|
|
937
946
|
|
|
938
947
|
property :name, as: 'name'
|
|
@@ -1062,6 +1071,13 @@ module Google
|
|
|
1062
1071
|
end
|
|
1063
1072
|
end
|
|
1064
1073
|
|
|
1074
|
+
class DataplexConfig
|
|
1075
|
+
# @private
|
|
1076
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1077
|
+
property :enabled, as: 'enabled'
|
|
1078
|
+
end
|
|
1079
|
+
end
|
|
1080
|
+
|
|
1065
1081
|
class DenyMaintenancePeriod
|
|
1066
1082
|
# @private
|
|
1067
1083
|
class Representation < Google::Apis::Core::JsonRepresentation
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-apis-alloydb_v1beta
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.40.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_v1beta/CHANGELOG.md
|
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-alloydb_v1beta/v0.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-alloydb_v1beta/v0.40.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:
|