google-apis-alloydb_v1beta 0.39.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: aa7627775da8c96292804b740119b83aa56185b9f691b5193ea3910339ae13a9
4
- data.tar.gz: 3bf1b3d5571f48e4c7c9a3d113708ae7134c3b63a2edab1ba69b4e34bf15b080
3
+ metadata.gz: 1b192d9e3726d98f0430d7e33fb75e3b8c47dfce3176cb2257368396a6a845f7
4
+ data.tar.gz: 436050b62ea96c37cbe4837432e95e94d5795f46858abd3290cc83fc89292522
5
5
  SHA512:
6
- metadata.gz: 3b6a0b1106d29afe49e5730291ad177e6b0a4e09083cefa7d0d25bd1757ebb1dba67f3dfbca07d83be1af3fce8ae7ce4b7d6ce14393324acf5f68a8242aa5b8d
7
- data.tar.gz: cc55ab1e6e0516e52cb277ca4fb5eabf44bf6128c18a32f6d81127d1ab628b54f4481c7f907823d7ab3e2fd810632d49f3ff558d5b1f8f2d5748955529b4328f
6
+ metadata.gz: bfd098e25fd81200467ab7eff933d6c2c812a6399aa257a8a1d3dc77820cfad77aac77c7581f3bfc1e9ed9bcc75771950d0cf329fa2ad7fefa00c43707a671fd
7
+ data.tar.gz: 35517d6ab72e62c1bd697a1014e19cd27026232dd2b2b28cc4eac56cb2a9238cff654f02a5d2599611aab5aadce0b3a4fd1c35bbe4e2977033e81b19da2c0a78
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
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
+
3
7
  ### v0.39.0 (2025-10-19)
4
8
 
5
9
  * Regenerated from discovery document revision 20251009
@@ -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]
@@ -852,6 +857,7 @@ module Google
852
857
  @continuous_backup_info = args[:continuous_backup_info] if args.key?(:continuous_backup_info)
853
858
  @create_time = args[:create_time] if args.key?(:create_time)
854
859
  @database_version = args[:database_version] if args.key?(:database_version)
860
+ @dataplex_config = args[:dataplex_config] if args.key?(:dataplex_config)
855
861
  @delete_time = args[:delete_time] if args.key?(:delete_time)
856
862
  @display_name = args[:display_name] if args.key?(:display_name)
857
863
  @encryption_config = args[:encryption_config] if args.key?(:encryption_config)
@@ -1329,6 +1335,28 @@ module Google
1329
1335
  end
1330
1336
  end
1331
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
+
1332
1360
  # DenyMaintenancePeriod definition. Excepting emergencies, maintenance will not
1333
1361
  # be scheduled to start within this deny period. The start_date must be less
1334
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.39.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 = "20251009"
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
@@ -1063,6 +1071,13 @@ module Google
1063
1071
  end
1064
1072
  end
1065
1073
 
1074
+ class DataplexConfig
1075
+ # @private
1076
+ class Representation < Google::Apis::Core::JsonRepresentation
1077
+ property :enabled, as: 'enabled'
1078
+ end
1079
+ end
1080
+
1066
1081
  class DenyMaintenancePeriod
1067
1082
  # @private
1068
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.39.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.39.0
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: