google-apis-datamigration_v1 0.18.0 → 0.21.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: e0cef89a1ff712d389ad8bcebe85da0375ed8386142aadbfd0239206daf1cfd0
|
4
|
+
data.tar.gz: 2456ae9965d495a2474f24eab6a03830ee0414d817078c53a2a999c6119470b3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 195862a21cedac9a32139ba1cbeea3453d11569cddf7ce1b40ab8952df560faa4130e2f537689af7bdfc1b43e97bc2e4ad719e366c546fad4dc27a79bb4a0c7d
|
7
|
+
data.tar.gz: d1b06972d81bbec91c02402c9a4f770273f5fb6479b170f3f908812fc81d784614d1783747d668adeba3333639f0c09db0ff43be1a947671c1da827531d5c601
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,18 @@
|
|
1
1
|
# Release history for google-apis-datamigration_v1
|
2
2
|
|
3
|
+
### v0.21.0 (2022-09-07)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20220901
|
6
|
+
|
7
|
+
### v0.20.0 (2022-08-24)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20220822
|
10
|
+
|
11
|
+
### v0.19.0 (2022-08-14)
|
12
|
+
|
13
|
+
* Regenerated from discovery document revision 20220804
|
14
|
+
* Regenerated using generator version 0.9.0
|
15
|
+
|
3
16
|
### v0.18.0 (2022-06-30)
|
4
17
|
|
5
18
|
* Regenerated using generator version 0.8.0
|
@@ -22,6 +22,76 @@ module Google
|
|
22
22
|
module Apis
|
23
23
|
module DatamigrationV1
|
24
24
|
|
25
|
+
# Specifies required connection parameters, and the parameters required to
|
26
|
+
# create an AlloyDB destination cluster.
|
27
|
+
class AlloyDbConnectionProfile
|
28
|
+
include Google::Apis::Core::Hashable
|
29
|
+
|
30
|
+
# Required. The AlloyDB cluster ID that this connection profile is associated
|
31
|
+
# with.
|
32
|
+
# Corresponds to the JSON property `clusterId`
|
33
|
+
# @return [String]
|
34
|
+
attr_accessor :cluster_id
|
35
|
+
|
36
|
+
# Settings for creating an AlloyDB cluster.
|
37
|
+
# Corresponds to the JSON property `settings`
|
38
|
+
# @return [Google::Apis::DatamigrationV1::AlloyDbSettings]
|
39
|
+
attr_accessor :settings
|
40
|
+
|
41
|
+
def initialize(**args)
|
42
|
+
update!(**args)
|
43
|
+
end
|
44
|
+
|
45
|
+
# Update properties of this object
|
46
|
+
def update!(**args)
|
47
|
+
@cluster_id = args[:cluster_id] if args.key?(:cluster_id)
|
48
|
+
@settings = args[:settings] if args.key?(:settings)
|
49
|
+
end
|
50
|
+
end
|
51
|
+
|
52
|
+
# Settings for creating an AlloyDB cluster.
|
53
|
+
class AlloyDbSettings
|
54
|
+
include Google::Apis::Core::Hashable
|
55
|
+
|
56
|
+
# The username/password for a database user. Used for specifying initial users
|
57
|
+
# at cluster creation time.
|
58
|
+
# Corresponds to the JSON property `initialUser`
|
59
|
+
# @return [Google::Apis::DatamigrationV1::UserPassword]
|
60
|
+
attr_accessor :initial_user
|
61
|
+
|
62
|
+
# Labels for the AlloyDB cluster created by DMS. An object containing a list of '
|
63
|
+
# key', 'value' pairs.
|
64
|
+
# Corresponds to the JSON property `labels`
|
65
|
+
# @return [Hash<String,String>]
|
66
|
+
attr_accessor :labels
|
67
|
+
|
68
|
+
# Settings for the cluster's primary instance
|
69
|
+
# Corresponds to the JSON property `primaryInstanceSettings`
|
70
|
+
# @return [Google::Apis::DatamigrationV1::PrimaryInstanceSettings]
|
71
|
+
attr_accessor :primary_instance_settings
|
72
|
+
|
73
|
+
# Required. The resource link for the VPC network in which cluster resources are
|
74
|
+
# created and from which they are accessible via Private IP. The network must
|
75
|
+
# belong to the same project as the cluster. It is specified in the form: "
|
76
|
+
# projects/`project_number`/global/networks/`network_id`". This is required to
|
77
|
+
# create a cluster.
|
78
|
+
# Corresponds to the JSON property `vpcNetwork`
|
79
|
+
# @return [String]
|
80
|
+
attr_accessor :vpc_network
|
81
|
+
|
82
|
+
def initialize(**args)
|
83
|
+
update!(**args)
|
84
|
+
end
|
85
|
+
|
86
|
+
# Update properties of this object
|
87
|
+
def update!(**args)
|
88
|
+
@initial_user = args[:initial_user] if args.key?(:initial_user)
|
89
|
+
@labels = args[:labels] if args.key?(:labels)
|
90
|
+
@primary_instance_settings = args[:primary_instance_settings] if args.key?(:primary_instance_settings)
|
91
|
+
@vpc_network = args[:vpc_network] if args.key?(:vpc_network)
|
92
|
+
end
|
93
|
+
end
|
94
|
+
|
25
95
|
# Specifies the audit configuration for a service. The configuration determines
|
26
96
|
# which permission types are logged, and what identities, if any, are exempted
|
27
97
|
# from logging. An AuditConfig must have one or more AuditLogConfigs. If there
|
@@ -120,28 +190,33 @@ module Google
|
|
120
190
|
# members` can have the following values: * `allUsers`: A special identifier
|
121
191
|
# that represents anyone who is on the internet; with or without a Google
|
122
192
|
# account. * `allAuthenticatedUsers`: A special identifier that represents
|
123
|
-
# anyone who is authenticated with a Google account or a service account.
|
124
|
-
#
|
125
|
-
#
|
126
|
-
#
|
127
|
-
#
|
128
|
-
#
|
129
|
-
# `
|
130
|
-
#
|
131
|
-
#
|
132
|
-
#
|
133
|
-
#
|
134
|
-
#
|
135
|
-
# example, `
|
136
|
-
# If the
|
137
|
-
# emailid`` and the
|
138
|
-
# `deleted:
|
139
|
-
# identifier) representing a
|
140
|
-
# example, `
|
141
|
-
#
|
142
|
-
#
|
143
|
-
#
|
144
|
-
#
|
193
|
+
# anyone who is authenticated with a Google account or a service account. Does
|
194
|
+
# not include identities that come from external identity providers (IdPs)
|
195
|
+
# through identity federation. * `user:`emailid``: An email address that
|
196
|
+
# represents a specific Google account. For example, `alice@example.com` . * `
|
197
|
+
# serviceAccount:`emailid``: An email address that represents a Google service
|
198
|
+
# account. For example, `my-other-app@appspot.gserviceaccount.com`. * `
|
199
|
+
# serviceAccount:`projectid`.svc.id.goog[`namespace`/`kubernetes-sa`]`: An
|
200
|
+
# identifier for a [Kubernetes service account](https://cloud.google.com/
|
201
|
+
# kubernetes-engine/docs/how-to/kubernetes-service-accounts). For example, `my-
|
202
|
+
# project.svc.id.goog[my-namespace/my-kubernetes-sa]`. * `group:`emailid``: An
|
203
|
+
# email address that represents a Google group. For example, `admins@example.com`
|
204
|
+
# . * `deleted:user:`emailid`?uid=`uniqueid``: An email address (plus unique
|
205
|
+
# identifier) representing a user that has been recently deleted. For example, `
|
206
|
+
# alice@example.com?uid=123456789012345678901`. If the user is recovered, this
|
207
|
+
# value reverts to `user:`emailid`` and the recovered user retains the role in
|
208
|
+
# the binding. * `deleted:serviceAccount:`emailid`?uid=`uniqueid``: An email
|
209
|
+
# address (plus unique identifier) representing a service account that has been
|
210
|
+
# recently deleted. For example, `my-other-app@appspot.gserviceaccount.com?uid=
|
211
|
+
# 123456789012345678901`. If the service account is undeleted, this value
|
212
|
+
# reverts to `serviceAccount:`emailid`` and the undeleted service account
|
213
|
+
# retains the role in the binding. * `deleted:group:`emailid`?uid=`uniqueid``:
|
214
|
+
# An email address (plus unique identifier) representing a Google group that has
|
215
|
+
# been recently deleted. For example, `admins@example.com?uid=
|
216
|
+
# 123456789012345678901`. If the group is recovered, this value reverts to `
|
217
|
+
# group:`emailid`` and the recovered group retains the role in the binding. * `
|
218
|
+
# domain:`domain``: The G Suite domain (primary) that represents all the users
|
219
|
+
# of that domain. For example, `google.com` or `example.com`.
|
145
220
|
# Corresponds to the JSON property `members`
|
146
221
|
# @return [Array<String>]
|
147
222
|
attr_accessor :members
|
@@ -352,6 +427,12 @@ module Google
|
|
352
427
|
class ConnectionProfile
|
353
428
|
include Google::Apis::Core::Hashable
|
354
429
|
|
430
|
+
# Specifies required connection parameters, and the parameters required to
|
431
|
+
# create an AlloyDB destination cluster.
|
432
|
+
# Corresponds to the JSON property `alloydb`
|
433
|
+
# @return [Google::Apis::DatamigrationV1::AlloyDbConnectionProfile]
|
434
|
+
attr_accessor :alloydb
|
435
|
+
|
355
436
|
# Specifies required connection parameters, and, optionally, the parameters
|
356
437
|
# required to create a Cloud SQL destination database instance.
|
357
438
|
# Corresponds to the JSON property `cloudsql`
|
@@ -427,6 +508,7 @@ module Google
|
|
427
508
|
|
428
509
|
# Update properties of this object
|
429
510
|
def update!(**args)
|
511
|
+
@alloydb = args[:alloydb] if args.key?(:alloydb)
|
430
512
|
@cloudsql = args[:cloudsql] if args.key?(:cloudsql)
|
431
513
|
@create_time = args[:create_time] if args.key?(:create_time)
|
432
514
|
@display_name = args[:display_name] if args.key?(:display_name)
|
@@ -837,6 +919,25 @@ module Google
|
|
837
919
|
end
|
838
920
|
end
|
839
921
|
|
922
|
+
# MachineConfig describes the configuration of a machine.
|
923
|
+
class MachineConfig
|
924
|
+
include Google::Apis::Core::Hashable
|
925
|
+
|
926
|
+
# The number of CPU's in the VM instance.
|
927
|
+
# Corresponds to the JSON property `cpuCount`
|
928
|
+
# @return [Fixnum]
|
929
|
+
attr_accessor :cpu_count
|
930
|
+
|
931
|
+
def initialize(**args)
|
932
|
+
update!(**args)
|
933
|
+
end
|
934
|
+
|
935
|
+
# Update properties of this object
|
936
|
+
def update!(**args)
|
937
|
+
@cpu_count = args[:cpu_count] if args.key?(:cpu_count)
|
938
|
+
end
|
939
|
+
end
|
940
|
+
|
840
941
|
# Represents a Database Migration Service migration job object.
|
841
942
|
class MigrationJob
|
842
943
|
include Google::Apis::Core::Hashable
|
@@ -1261,6 +1362,12 @@ module Google
|
|
1261
1362
|
# @return [String]
|
1262
1363
|
attr_accessor :host
|
1263
1364
|
|
1365
|
+
# Output only. If the source is a Cloud SQL database, this field indicates the
|
1366
|
+
# network architecture it's associated with.
|
1367
|
+
# Corresponds to the JSON property `networkArchitecture`
|
1368
|
+
# @return [String]
|
1369
|
+
attr_accessor :network_architecture
|
1370
|
+
|
1264
1371
|
# Required. Input only. The password for the user that Database Migration
|
1265
1372
|
# Service will be using to connect to the database. This field is not returned
|
1266
1373
|
# on request, and the value is encrypted when stored in Database Migration
|
@@ -1299,6 +1406,7 @@ module Google
|
|
1299
1406
|
def update!(**args)
|
1300
1407
|
@cloud_sql_id = args[:cloud_sql_id] if args.key?(:cloud_sql_id)
|
1301
1408
|
@host = args[:host] if args.key?(:host)
|
1409
|
+
@network_architecture = args[:network_architecture] if args.key?(:network_architecture)
|
1302
1410
|
@password = args[:password] if args.key?(:password)
|
1303
1411
|
@password_set = args[:password_set] if args.key?(:password_set)
|
1304
1412
|
@port = args[:port] if args.key?(:port)
|
@@ -1307,6 +1415,53 @@ module Google
|
|
1307
1415
|
end
|
1308
1416
|
end
|
1309
1417
|
|
1418
|
+
# Settings for the cluster's primary instance
|
1419
|
+
class PrimaryInstanceSettings
|
1420
|
+
include Google::Apis::Core::Hashable
|
1421
|
+
|
1422
|
+
# Database flags to pass to AlloyDB when DMS is creating the AlloyDB cluster and
|
1423
|
+
# instances. See the AlloyDB documentation for how these can be used.
|
1424
|
+
# Corresponds to the JSON property `databaseFlags`
|
1425
|
+
# @return [Hash<String,String>]
|
1426
|
+
attr_accessor :database_flags
|
1427
|
+
|
1428
|
+
# Required. The ID of the AlloyDB primary instance. The ID must satisfy the
|
1429
|
+
# regex expression "[a-z0-9-]+".
|
1430
|
+
# Corresponds to the JSON property `id`
|
1431
|
+
# @return [String]
|
1432
|
+
attr_accessor :id
|
1433
|
+
|
1434
|
+
# Labels for the AlloyDB primary instance created by DMS. An object containing a
|
1435
|
+
# list of 'key', 'value' pairs.
|
1436
|
+
# Corresponds to the JSON property `labels`
|
1437
|
+
# @return [Hash<String,String>]
|
1438
|
+
attr_accessor :labels
|
1439
|
+
|
1440
|
+
# MachineConfig describes the configuration of a machine.
|
1441
|
+
# Corresponds to the JSON property `machineConfig`
|
1442
|
+
# @return [Google::Apis::DatamigrationV1::MachineConfig]
|
1443
|
+
attr_accessor :machine_config
|
1444
|
+
|
1445
|
+
# Output only. The private IP address for the Instance. This is the connection
|
1446
|
+
# endpoint for an end-user application.
|
1447
|
+
# Corresponds to the JSON property `privateIp`
|
1448
|
+
# @return [String]
|
1449
|
+
attr_accessor :private_ip
|
1450
|
+
|
1451
|
+
def initialize(**args)
|
1452
|
+
update!(**args)
|
1453
|
+
end
|
1454
|
+
|
1455
|
+
# Update properties of this object
|
1456
|
+
def update!(**args)
|
1457
|
+
@database_flags = args[:database_flags] if args.key?(:database_flags)
|
1458
|
+
@id = args[:id] if args.key?(:id)
|
1459
|
+
@labels = args[:labels] if args.key?(:labels)
|
1460
|
+
@machine_config = args[:machine_config] if args.key?(:machine_config)
|
1461
|
+
@private_ip = args[:private_ip] if args.key?(:private_ip)
|
1462
|
+
end
|
1463
|
+
end
|
1464
|
+
|
1310
1465
|
# Request message for 'PromoteMigrationJob' request.
|
1311
1466
|
class PromoteMigrationJobRequest
|
1312
1467
|
include Google::Apis::Core::Hashable
|
@@ -1710,6 +1865,39 @@ module Google
|
|
1710
1865
|
end
|
1711
1866
|
end
|
1712
1867
|
|
1868
|
+
# The username/password for a database user. Used for specifying initial users
|
1869
|
+
# at cluster creation time.
|
1870
|
+
class UserPassword
|
1871
|
+
include Google::Apis::Core::Hashable
|
1872
|
+
|
1873
|
+
# The initial password for the user.
|
1874
|
+
# Corresponds to the JSON property `password`
|
1875
|
+
# @return [String]
|
1876
|
+
attr_accessor :password
|
1877
|
+
|
1878
|
+
# Output only. Indicates if the initial_user.password field has been set.
|
1879
|
+
# Corresponds to the JSON property `passwordSet`
|
1880
|
+
# @return [Boolean]
|
1881
|
+
attr_accessor :password_set
|
1882
|
+
alias_method :password_set?, :password_set
|
1883
|
+
|
1884
|
+
# The database username.
|
1885
|
+
# Corresponds to the JSON property `user`
|
1886
|
+
# @return [String]
|
1887
|
+
attr_accessor :user
|
1888
|
+
|
1889
|
+
def initialize(**args)
|
1890
|
+
update!(**args)
|
1891
|
+
end
|
1892
|
+
|
1893
|
+
# Update properties of this object
|
1894
|
+
def update!(**args)
|
1895
|
+
@password = args[:password] if args.key?(:password)
|
1896
|
+
@password_set = args[:password_set] if args.key?(:password_set)
|
1897
|
+
@user = args[:user] if args.key?(:user)
|
1898
|
+
end
|
1899
|
+
end
|
1900
|
+
|
1713
1901
|
# Request message for 'VerifyMigrationJob' request.
|
1714
1902
|
class VerifyMigrationJobRequest
|
1715
1903
|
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.21.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.9.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20220901"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -22,6 +22,18 @@ module Google
|
|
22
22
|
module Apis
|
23
23
|
module DatamigrationV1
|
24
24
|
|
25
|
+
class AlloyDbConnectionProfile
|
26
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
27
|
+
|
28
|
+
include Google::Apis::Core::JsonObjectSupport
|
29
|
+
end
|
30
|
+
|
31
|
+
class AlloyDbSettings
|
32
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
33
|
+
|
34
|
+
include Google::Apis::Core::JsonObjectSupport
|
35
|
+
end
|
36
|
+
|
25
37
|
class AuditConfig
|
26
38
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
27
39
|
|
@@ -136,6 +148,12 @@ module Google
|
|
136
148
|
include Google::Apis::Core::JsonObjectSupport
|
137
149
|
end
|
138
150
|
|
151
|
+
class MachineConfig
|
152
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
153
|
+
|
154
|
+
include Google::Apis::Core::JsonObjectSupport
|
155
|
+
end
|
156
|
+
|
139
157
|
class MigrationJob
|
140
158
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
141
159
|
|
@@ -172,6 +190,12 @@ module Google
|
|
172
190
|
include Google::Apis::Core::JsonObjectSupport
|
173
191
|
end
|
174
192
|
|
193
|
+
class PrimaryInstanceSettings
|
194
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
195
|
+
|
196
|
+
include Google::Apis::Core::JsonObjectSupport
|
197
|
+
end
|
198
|
+
|
175
199
|
class PromoteMigrationJobRequest
|
176
200
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
177
201
|
|
@@ -262,6 +286,12 @@ module Google
|
|
262
286
|
include Google::Apis::Core::JsonObjectSupport
|
263
287
|
end
|
264
288
|
|
289
|
+
class UserPassword
|
290
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
291
|
+
|
292
|
+
include Google::Apis::Core::JsonObjectSupport
|
293
|
+
end
|
294
|
+
|
265
295
|
class VerifyMigrationJobRequest
|
266
296
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
267
297
|
|
@@ -286,6 +316,27 @@ module Google
|
|
286
316
|
include Google::Apis::Core::JsonObjectSupport
|
287
317
|
end
|
288
318
|
|
319
|
+
class AlloyDbConnectionProfile
|
320
|
+
# @private
|
321
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
322
|
+
property :cluster_id, as: 'clusterId'
|
323
|
+
property :settings, as: 'settings', class: Google::Apis::DatamigrationV1::AlloyDbSettings, decorator: Google::Apis::DatamigrationV1::AlloyDbSettings::Representation
|
324
|
+
|
325
|
+
end
|
326
|
+
end
|
327
|
+
|
328
|
+
class AlloyDbSettings
|
329
|
+
# @private
|
330
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
331
|
+
property :initial_user, as: 'initialUser', class: Google::Apis::DatamigrationV1::UserPassword, decorator: Google::Apis::DatamigrationV1::UserPassword::Representation
|
332
|
+
|
333
|
+
hash :labels, as: 'labels'
|
334
|
+
property :primary_instance_settings, as: 'primaryInstanceSettings', class: Google::Apis::DatamigrationV1::PrimaryInstanceSettings, decorator: Google::Apis::DatamigrationV1::PrimaryInstanceSettings::Representation
|
335
|
+
|
336
|
+
property :vpc_network, as: 'vpcNetwork'
|
337
|
+
end
|
338
|
+
end
|
339
|
+
|
289
340
|
class AuditConfig
|
290
341
|
# @private
|
291
342
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -356,6 +407,8 @@ module Google
|
|
356
407
|
class ConnectionProfile
|
357
408
|
# @private
|
358
409
|
class Representation < Google::Apis::Core::JsonRepresentation
|
410
|
+
property :alloydb, as: 'alloydb', class: Google::Apis::DatamigrationV1::AlloyDbConnectionProfile, decorator: Google::Apis::DatamigrationV1::AlloyDbConnectionProfile::Representation
|
411
|
+
|
359
412
|
property :cloudsql, as: 'cloudsql', class: Google::Apis::DatamigrationV1::CloudSqlConnectionProfile, decorator: Google::Apis::DatamigrationV1::CloudSqlConnectionProfile::Representation
|
360
413
|
|
361
414
|
property :create_time, as: 'createTime'
|
@@ -488,6 +541,13 @@ module Google
|
|
488
541
|
end
|
489
542
|
end
|
490
543
|
|
544
|
+
class MachineConfig
|
545
|
+
# @private
|
546
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
547
|
+
property :cpu_count, as: 'cpuCount'
|
548
|
+
end
|
549
|
+
end
|
550
|
+
|
491
551
|
class MigrationJob
|
492
552
|
# @private
|
493
553
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -573,6 +633,7 @@ module Google
|
|
573
633
|
class Representation < Google::Apis::Core::JsonRepresentation
|
574
634
|
property :cloud_sql_id, as: 'cloudSqlId'
|
575
635
|
property :host, as: 'host'
|
636
|
+
property :network_architecture, as: 'networkArchitecture'
|
576
637
|
property :password, as: 'password'
|
577
638
|
property :password_set, as: 'passwordSet'
|
578
639
|
property :port, as: 'port'
|
@@ -582,6 +643,18 @@ module Google
|
|
582
643
|
end
|
583
644
|
end
|
584
645
|
|
646
|
+
class PrimaryInstanceSettings
|
647
|
+
# @private
|
648
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
649
|
+
hash :database_flags, as: 'databaseFlags'
|
650
|
+
property :id, as: 'id'
|
651
|
+
hash :labels, as: 'labels'
|
652
|
+
property :machine_config, as: 'machineConfig', class: Google::Apis::DatamigrationV1::MachineConfig, decorator: Google::Apis::DatamigrationV1::MachineConfig::Representation
|
653
|
+
|
654
|
+
property :private_ip, as: 'privateIp'
|
655
|
+
end
|
656
|
+
end
|
657
|
+
|
585
658
|
class PromoteMigrationJobRequest
|
586
659
|
# @private
|
587
660
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -698,6 +771,15 @@ module Google
|
|
698
771
|
end
|
699
772
|
end
|
700
773
|
|
774
|
+
class UserPassword
|
775
|
+
# @private
|
776
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
777
|
+
property :password, as: 'password'
|
778
|
+
property :password_set, as: 'passwordSet'
|
779
|
+
property :user, as: 'user'
|
780
|
+
end
|
781
|
+
end
|
782
|
+
|
701
783
|
class VerifyMigrationJobRequest
|
702
784
|
# @private
|
703
785
|
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.21.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: 2022-
|
11
|
+
date: 2022-09-12 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.21.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: []
|