google-apis-datamigration_v1 0.32.0 → 0.33.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: 9f0faddae537a20cf1de16b36f96f35ff98843ed1cebad5b03409b7fa444ac78
|
|
4
|
+
data.tar.gz: 373590e2d84be58c68efd55521888b5329474364a4313e04ff9f5597c55dcd96
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1772af26672851727755a12f6780bd391f1857607021b58fd743d36f5383680e4858ff7aa853773cca57d477a5c229122e0d3d3b69948ce91aaf61918d432590
|
|
7
|
+
data.tar.gz: 13c4a41fdbfc1c57a52d911290754e874c2dd901f9a3d14e899cd163b53c954e655a7c58d720d474756bd553ffdb3b03a8ab98ab69f63fe7d79e9b378e250ffb
|
data/CHANGELOG.md
CHANGED
|
@@ -53,6 +53,12 @@ module Google
|
|
|
53
53
|
class AlloyDbSettings
|
|
54
54
|
include Google::Apis::Core::Hashable
|
|
55
55
|
|
|
56
|
+
# EncryptionConfig describes the encryption config of a cluster that is
|
|
57
|
+
# encrypted with a CMEK (customer-managed encryption key).
|
|
58
|
+
# Corresponds to the JSON property `encryptionConfig`
|
|
59
|
+
# @return [Google::Apis::DatamigrationV1::EncryptionConfig]
|
|
60
|
+
attr_accessor :encryption_config
|
|
61
|
+
|
|
56
62
|
# The username/password for a database user. Used for specifying initial users
|
|
57
63
|
# at cluster creation time.
|
|
58
64
|
# Corresponds to the JSON property `initialUser`
|
|
@@ -85,6 +91,7 @@ module Google
|
|
|
85
91
|
|
|
86
92
|
# Update properties of this object
|
|
87
93
|
def update!(**args)
|
|
94
|
+
@encryption_config = args[:encryption_config] if args.key?(:encryption_config)
|
|
88
95
|
@initial_user = args[:initial_user] if args.key?(:initial_user)
|
|
89
96
|
@labels = args[:labels] if args.key?(:labels)
|
|
90
97
|
@primary_instance_settings = args[:primary_instance_settings] if args.key?(:primary_instance_settings)
|
|
@@ -1305,6 +1312,28 @@ module Google
|
|
|
1305
1312
|
end
|
|
1306
1313
|
end
|
|
1307
1314
|
|
|
1315
|
+
# EncryptionConfig describes the encryption config of a cluster that is
|
|
1316
|
+
# encrypted with a CMEK (customer-managed encryption key).
|
|
1317
|
+
class EncryptionConfig
|
|
1318
|
+
include Google::Apis::Core::Hashable
|
|
1319
|
+
|
|
1320
|
+
# The fully-qualified resource name of the KMS key. Each Cloud KMS key is
|
|
1321
|
+
# regionalized and has the following format: projects/[PROJECT]/locations/[
|
|
1322
|
+
# REGION]/keyRings/[RING]/cryptoKeys/[KEY_NAME]
|
|
1323
|
+
# Corresponds to the JSON property `kmsKeyName`
|
|
1324
|
+
# @return [String]
|
|
1325
|
+
attr_accessor :kms_key_name
|
|
1326
|
+
|
|
1327
|
+
def initialize(**args)
|
|
1328
|
+
update!(**args)
|
|
1329
|
+
end
|
|
1330
|
+
|
|
1331
|
+
# Update properties of this object
|
|
1332
|
+
def update!(**args)
|
|
1333
|
+
@kms_key_name = args[:kms_key_name] if args.key?(:kms_key_name)
|
|
1334
|
+
end
|
|
1335
|
+
end
|
|
1336
|
+
|
|
1308
1337
|
# Details of the mappings of a database entity.
|
|
1309
1338
|
class EntityMapping
|
|
1310
1339
|
include Google::Apis::Core::Hashable
|
|
@@ -16,13 +16,13 @@ module Google
|
|
|
16
16
|
module Apis
|
|
17
17
|
module DatamigrationV1
|
|
18
18
|
# Version of the google-apis-datamigration_v1 gem
|
|
19
|
-
GEM_VERSION = "0.
|
|
19
|
+
GEM_VERSION = "0.33.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
22
|
GENERATOR_VERSION = "0.12.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20230320"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -184,6 +184,12 @@ module Google
|
|
|
184
184
|
include Google::Apis::Core::JsonObjectSupport
|
|
185
185
|
end
|
|
186
186
|
|
|
187
|
+
class EncryptionConfig
|
|
188
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
189
|
+
|
|
190
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
191
|
+
end
|
|
192
|
+
|
|
187
193
|
class EntityMapping
|
|
188
194
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
189
195
|
|
|
@@ -586,6 +592,8 @@ module Google
|
|
|
586
592
|
class AlloyDbSettings
|
|
587
593
|
# @private
|
|
588
594
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
595
|
+
property :encryption_config, as: 'encryptionConfig', class: Google::Apis::DatamigrationV1::EncryptionConfig, decorator: Google::Apis::DatamigrationV1::EncryptionConfig::Representation
|
|
596
|
+
|
|
589
597
|
property :initial_user, as: 'initialUser', class: Google::Apis::DatamigrationV1::UserPassword, decorator: Google::Apis::DatamigrationV1::UserPassword::Representation
|
|
590
598
|
|
|
591
599
|
hash :labels, as: 'labels'
|
|
@@ -895,6 +903,13 @@ module Google
|
|
|
895
903
|
end
|
|
896
904
|
end
|
|
897
905
|
|
|
906
|
+
class EncryptionConfig
|
|
907
|
+
# @private
|
|
908
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
909
|
+
property :kms_key_name, as: 'kmsKeyName'
|
|
910
|
+
end
|
|
911
|
+
end
|
|
912
|
+
|
|
898
913
|
class EntityMapping
|
|
899
914
|
# @private
|
|
900
915
|
class Representation < Google::Apis::Core::JsonRepresentation
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-apis-datamigration_v1
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.33.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Google LLC
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2023-
|
|
11
|
+
date: 2023-04-02 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: google-apis-core
|
|
@@ -58,7 +58,7 @@ licenses:
|
|
|
58
58
|
metadata:
|
|
59
59
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
|
60
60
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-datamigration_v1/CHANGELOG.md
|
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-datamigration_v1/v0.
|
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-datamigration_v1/v0.33.0
|
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-datamigration_v1
|
|
63
63
|
post_install_message:
|
|
64
64
|
rdoc_options: []
|