google-apis-datamigration_v1 0.47.0 → 0.48.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: 93ebaaf1f4f461788a6af1074c4a50c78044b754d2c0cd0df26112cf520a54eb
|
|
4
|
+
data.tar.gz: 64251b8c0fdf94c496a89731024045bf013efe7000da9813e3f7806d68a385c5
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 54fb5fc961b9da15fa31972508b3bac48adc30f7518778b9091282aa50eb719680a06f853526723a7863e149cf1c9fb31a8b05392537c787bdadb43b1f72e399
|
|
7
|
+
data.tar.gz: 5e47c2a1f198a8fce1965030c1a16b0a6725e1d66eac59ceff7023a56c741095a9e48bcb4d479cf8ac63655458e017379b832a3d9847c76a89885c8c92ba4737
|
data/CHANGELOG.md
CHANGED
|
@@ -53,6 +53,13 @@ module Google
|
|
|
53
53
|
class AlloyDbSettings
|
|
54
54
|
include Google::Apis::Core::Hashable
|
|
55
55
|
|
|
56
|
+
# Optional. The database engine major version. This is an optional field. If a
|
|
57
|
+
# database version is not supplied at cluster creation time, then a default
|
|
58
|
+
# database version will be used.
|
|
59
|
+
# Corresponds to the JSON property `databaseVersion`
|
|
60
|
+
# @return [String]
|
|
61
|
+
attr_accessor :database_version
|
|
62
|
+
|
|
56
63
|
# EncryptionConfig describes the encryption config of a cluster that is
|
|
57
64
|
# encrypted with a CMEK (customer-managed encryption key).
|
|
58
65
|
# Corresponds to the JSON property `encryptionConfig`
|
|
@@ -91,6 +98,7 @@ module Google
|
|
|
91
98
|
|
|
92
99
|
# Update properties of this object
|
|
93
100
|
def update!(**args)
|
|
101
|
+
@database_version = args[:database_version] if args.key?(:database_version)
|
|
94
102
|
@encryption_config = args[:encryption_config] if args.key?(:encryption_config)
|
|
95
103
|
@initial_user = args[:initial_user] if args.key?(:initial_user)
|
|
96
104
|
@labels = args[:labels] if args.key?(:labels)
|
|
@@ -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.48.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 = "20231111"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -796,6 +796,7 @@ module Google
|
|
|
796
796
|
class AlloyDbSettings
|
|
797
797
|
# @private
|
|
798
798
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
799
|
+
property :database_version, as: 'databaseVersion'
|
|
799
800
|
property :encryption_config, as: 'encryptionConfig', class: Google::Apis::DatamigrationV1::EncryptionConfig, decorator: Google::Apis::DatamigrationV1::EncryptionConfig::Representation
|
|
800
801
|
|
|
801
802
|
property :initial_user, as: 'initialUser', class: Google::Apis::DatamigrationV1::UserPassword, decorator: Google::Apis::DatamigrationV1::UserPassword::Representation
|
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.48.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-
|
|
11
|
+
date: 2023-11-19 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.48.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: []
|