google-apis-datamigration_v1 0.23.0 → 0.24.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: 452a23da26641245f198b77fa19c115540bf98fd496a672729ae828870e17a73
|
4
|
+
data.tar.gz: 8fcd95abd7b5188cf80aa723449c54a754d7c07e0fe32f4e88b63769776893f4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e2c3c4c6bb239d6b29a238e006977a4c5e715860b0982bdbd9bb11d80afb5fa825d7d44f5f994e6da5884ce6903abb5ef0d26409ccb67c59c17e1cd008f09330
|
7
|
+
data.tar.gz: ec6f2ee36677d1918316bba7a20a4fcfa7545448f9ace0be1cb10dfcc59c8b2d2e2ac0220c915f045a8e34b48ee316461707c4ddc832d3bab90648c1b23aa511
|
data/CHANGELOG.md
CHANGED
@@ -257,6 +257,13 @@ module Google
|
|
257
257
|
class CloudSqlConnectionProfile
|
258
258
|
include Google::Apis::Core::Hashable
|
259
259
|
|
260
|
+
# Output only. The Cloud SQL database instance's additional (outgoing) public IP.
|
261
|
+
# Used when the Cloud SQL database availability type is REGIONAL (i.e. multiple
|
262
|
+
# zones / highly available).
|
263
|
+
# Corresponds to the JSON property `additionalPublicIp`
|
264
|
+
# @return [String]
|
265
|
+
attr_accessor :additional_public_ip
|
266
|
+
|
260
267
|
# Output only. The Cloud SQL instance ID that this connection profile is
|
261
268
|
# associated with.
|
262
269
|
# Corresponds to the JSON property `cloudSqlId`
|
@@ -284,6 +291,7 @@ module Google
|
|
284
291
|
|
285
292
|
# Update properties of this object
|
286
293
|
def update!(**args)
|
294
|
+
@additional_public_ip = args[:additional_public_ip] if args.key?(:additional_public_ip)
|
287
295
|
@cloud_sql_id = args[:cloud_sql_id] if args.key?(:cloud_sql_id)
|
288
296
|
@private_ip = args[:private_ip] if args.key?(:private_ip)
|
289
297
|
@public_ip = args[:public_ip] if args.key?(:public_ip)
|
@@ -314,6 +322,14 @@ module Google
|
|
314
322
|
attr_accessor :auto_storage_increase
|
315
323
|
alias_method :auto_storage_increase?, :auto_storage_increase
|
316
324
|
|
325
|
+
# Optional. Availability type. Potential values: * `ZONAL`: The instance serves
|
326
|
+
# data from only one zone. Outages in that zone affect data availability. * `
|
327
|
+
# REGIONAL`: The instance can serve data from more than one zone in a region (it
|
328
|
+
# is highly available).
|
329
|
+
# Corresponds to the JSON property `availabilityType`
|
330
|
+
# @return [String]
|
331
|
+
attr_accessor :availability_type
|
332
|
+
|
317
333
|
# The KMS key name used for the csql instance.
|
318
334
|
# Corresponds to the JSON property `cmekKeyName`
|
319
335
|
# @return [String]
|
@@ -363,6 +379,13 @@ module Google
|
|
363
379
|
attr_accessor :root_password_set
|
364
380
|
alias_method :root_password_set?, :root_password_set
|
365
381
|
|
382
|
+
# Optional. The Google Cloud Platform zone where the failover Cloud SQL database
|
383
|
+
# instance is located. Used when the Cloud SQL database availability type is
|
384
|
+
# REGIONAL (i.e. multiple zones / highly available).
|
385
|
+
# Corresponds to the JSON property `secondaryZone`
|
386
|
+
# @return [String]
|
387
|
+
attr_accessor :secondary_zone
|
388
|
+
|
366
389
|
# The Database Migration Service source connection profile ID, in the format: `
|
367
390
|
# projects/my_project_name/locations/us-central1/connectionProfiles/
|
368
391
|
# connection_profile_ID`
|
@@ -406,6 +429,7 @@ module Google
|
|
406
429
|
def update!(**args)
|
407
430
|
@activation_policy = args[:activation_policy] if args.key?(:activation_policy)
|
408
431
|
@auto_storage_increase = args[:auto_storage_increase] if args.key?(:auto_storage_increase)
|
432
|
+
@availability_type = args[:availability_type] if args.key?(:availability_type)
|
409
433
|
@cmek_key_name = args[:cmek_key_name] if args.key?(:cmek_key_name)
|
410
434
|
@collation = args[:collation] if args.key?(:collation)
|
411
435
|
@data_disk_size_gb = args[:data_disk_size_gb] if args.key?(:data_disk_size_gb)
|
@@ -415,6 +439,7 @@ module Google
|
|
415
439
|
@ip_config = args[:ip_config] if args.key?(:ip_config)
|
416
440
|
@root_password = args[:root_password] if args.key?(:root_password)
|
417
441
|
@root_password_set = args[:root_password_set] if args.key?(:root_password_set)
|
442
|
+
@secondary_zone = args[:secondary_zone] if args.key?(:secondary_zone)
|
418
443
|
@source_id = args[:source_id] if args.key?(:source_id)
|
419
444
|
@storage_auto_resize_limit = args[:storage_auto_resize_limit] if args.key?(:storage_auto_resize_limit)
|
420
445
|
@tier = args[:tier] if args.key?(:tier)
|
@@ -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.24.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.11.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20221108"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -373,6 +373,7 @@ module Google
|
|
373
373
|
class CloudSqlConnectionProfile
|
374
374
|
# @private
|
375
375
|
class Representation < Google::Apis::Core::JsonRepresentation
|
376
|
+
property :additional_public_ip, as: 'additionalPublicIp'
|
376
377
|
property :cloud_sql_id, as: 'cloudSqlId'
|
377
378
|
property :private_ip, as: 'privateIp'
|
378
379
|
property :public_ip, as: 'publicIp'
|
@@ -386,6 +387,7 @@ module Google
|
|
386
387
|
class Representation < Google::Apis::Core::JsonRepresentation
|
387
388
|
property :activation_policy, as: 'activationPolicy'
|
388
389
|
property :auto_storage_increase, as: 'autoStorageIncrease'
|
390
|
+
property :availability_type, as: 'availabilityType'
|
389
391
|
property :cmek_key_name, as: 'cmekKeyName'
|
390
392
|
property :collation, as: 'collation'
|
391
393
|
property :data_disk_size_gb, :numeric_string => true, as: 'dataDiskSizeGb'
|
@@ -396,6 +398,7 @@ module Google
|
|
396
398
|
|
397
399
|
property :root_password, as: 'rootPassword'
|
398
400
|
property :root_password_set, as: 'rootPasswordSet'
|
401
|
+
property :secondary_zone, as: 'secondaryZone'
|
399
402
|
property :source_id, as: 'sourceId'
|
400
403
|
property :storage_auto_resize_limit, :numeric_string => true, as: 'storageAutoResizeLimit'
|
401
404
|
property :tier, as: 'tier'
|
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.24.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-
|
11
|
+
date: 2022-11-14 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.24.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: []
|