google-apis-datamigration_v1 0.31.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: 6ba6d6cd4633adbb20f234e2ef5750ca0d61f3c058711ad450967f335df18088
4
- data.tar.gz: f3c8f2048fd162f1503375d7142ed9d4f7dde52b645600fba718379f90265db2
3
+ metadata.gz: 9f0faddae537a20cf1de16b36f96f35ff98843ed1cebad5b03409b7fa444ac78
4
+ data.tar.gz: 373590e2d84be58c68efd55521888b5329474364a4313e04ff9f5597c55dcd96
5
5
  SHA512:
6
- metadata.gz: 69adb60c965d923f06b1757f4eb8db4c2d6060843208ca40b5344e7b5bd26922c7435fb991ab84e4766209ef53fa9acd1c44d0e96684d7d542c98f47d96ad454
7
- data.tar.gz: 3c2589b7a9fc6228c8499dd266b77b64e7f5af5c591ca36343ddd5a59da60886e023e15a264ff70c9ee881ff77abc25623d20f69e3b83533c08f6df8cd5faec5
6
+ metadata.gz: 1772af26672851727755a12f6780bd391f1857607021b58fd743d36f5383680e4858ff7aa853773cca57d477a5c229122e0d3d3b69948ce91aaf61918d432590
7
+ data.tar.gz: 13c4a41fdbfc1c57a52d911290754e874c2dd901f9a3d14e899cd163b53c954e655a7c58d720d474756bd553ffdb3b03a8ab98ab69f63fe7d79e9b378e250ffb
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-datamigration_v1
2
2
 
3
+ ### v0.33.0 (2023-04-02)
4
+
5
+ * Regenerated from discovery document revision 20230320
6
+
7
+ ### v0.32.0 (2023-03-26)
8
+
9
+ * Regenerated from discovery document revision 20230308
10
+
3
11
  ### v0.31.0 (2023-03-12)
4
12
 
5
13
  * Regenerated from discovery document revision 20230301
@@ -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.31.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 = "20230301"
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
@@ -1863,13 +1863,7 @@ module Google
1863
1863
  end
1864
1864
 
1865
1865
  # Lists operations that match the specified filter in the request. If the server
1866
- # doesn't support this method, it returns `UNIMPLEMENTED`. NOTE: the `name`
1867
- # binding allows API services to override the binding to use different resource
1868
- # name schemes, such as `users/*/operations`. To override the binding, API
1869
- # services can add a binding such as `"/v1/`name=users/*`/operations"` to their
1870
- # service configuration. For backwards compatibility, the default name includes
1871
- # the operations collection id, however overriding users must ensure the name
1872
- # binding is the parent resource, without the operations collection id.
1866
+ # doesn't support this method, it returns `UNIMPLEMENTED`.
1873
1867
  # @param [String] name
1874
1868
  # The name of the operation's parent resource.
1875
1869
  # @param [String] filter
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.31.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-03-12 00:00:00.000000000 Z
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.31.0
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: []