google-apis-datamigration_v1 0.89.0 → 0.90.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: e412a26aa5c289fdbbb49edfce3ae70aaf262b42f1c53652058d5951aa23cf3d
|
|
4
|
+
data.tar.gz: d4cf62ed63e38631974a990d9cad509f75c26ddf0e2a8e8b1bf6062d5267e11b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 0a0a3909b87eb297fb6f6fe67cf1d81e928d587418e0e0b4ba47746ab705b90ff3d35cb774b82c51f15b140991fd9c6058ed77d36b053a5e3b2d1be9a96d2e90
|
|
7
|
+
data.tar.gz: 94c0bd99ebea07dc98403682527a25390f361b602c2667b55586373f0b889b4343e89d156ebd95f801f91b8a91e990f28826ec4f0d07bf9c25b9a6355390a214
|
data/CHANGELOG.md
CHANGED
|
@@ -3421,6 +3421,11 @@ module Google
|
|
|
3421
3421
|
# @return [Hash<String,String>]
|
|
3422
3422
|
attr_accessor :labels
|
|
3423
3423
|
|
|
3424
|
+
# Configuration for MySQL to MySQL migrations.
|
|
3425
|
+
# Corresponds to the JSON property `mysqlHomogeneousConfig`
|
|
3426
|
+
# @return [Google::Apis::DatamigrationV1::MySqlHomogeneousConfig]
|
|
3427
|
+
attr_accessor :mysql_homogeneous_config
|
|
3428
|
+
|
|
3424
3429
|
# The name (URI) of this migration job resource, in the form of: projects/`
|
|
3425
3430
|
# project`/locations/`location`/migrationJobs/`migrationJob`.
|
|
3426
3431
|
# Corresponds to the JSON property `name`
|
|
@@ -3566,6 +3571,7 @@ module Google
|
|
|
3566
3571
|
@error = args[:error] if args.key?(:error)
|
|
3567
3572
|
@filter = args[:filter] if args.key?(:filter)
|
|
3568
3573
|
@labels = args[:labels] if args.key?(:labels)
|
|
3574
|
+
@mysql_homogeneous_config = args[:mysql_homogeneous_config] if args.key?(:mysql_homogeneous_config)
|
|
3569
3575
|
@name = args[:name] if args.key?(:name)
|
|
3570
3576
|
@objects_config = args[:objects_config] if args.key?(:objects_config)
|
|
3571
3577
|
@oracle_to_postgres_config = args[:oracle_to_postgres_config] if args.key?(:oracle_to_postgres_config)
|
|
@@ -3881,6 +3887,26 @@ module Google
|
|
|
3881
3887
|
end
|
|
3882
3888
|
end
|
|
3883
3889
|
|
|
3890
|
+
# Configuration for MySQL to MySQL migrations.
|
|
3891
|
+
class MySqlHomogeneousConfig
|
|
3892
|
+
include Google::Apis::Core::Hashable
|
|
3893
|
+
|
|
3894
|
+
# Optional. Whether the destination for the migration job is a primary instance.
|
|
3895
|
+
# Corresponds to the JSON property `isPrimaryDestination`
|
|
3896
|
+
# @return [Boolean]
|
|
3897
|
+
attr_accessor :is_primary_destination
|
|
3898
|
+
alias_method :is_primary_destination?, :is_primary_destination
|
|
3899
|
+
|
|
3900
|
+
def initialize(**args)
|
|
3901
|
+
update!(**args)
|
|
3902
|
+
end
|
|
3903
|
+
|
|
3904
|
+
# Update properties of this object
|
|
3905
|
+
def update!(**args)
|
|
3906
|
+
@is_primary_destination = args[:is_primary_destination] if args.key?(:is_primary_destination)
|
|
3907
|
+
end
|
|
3908
|
+
end
|
|
3909
|
+
|
|
3884
3910
|
# This resource represents a long-running operation that is the result of a
|
|
3885
3911
|
# network API call.
|
|
3886
3912
|
class Operation
|
|
@@ -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.90.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
22
|
GENERATOR_VERSION = "0.19.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20260620"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -544,6 +544,12 @@ module Google
|
|
|
544
544
|
include Google::Apis::Core::JsonObjectSupport
|
|
545
545
|
end
|
|
546
546
|
|
|
547
|
+
class MySqlHomogeneousConfig
|
|
548
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
549
|
+
|
|
550
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
551
|
+
end
|
|
552
|
+
|
|
547
553
|
class Operation
|
|
548
554
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
549
555
|
|
|
@@ -1941,6 +1947,8 @@ module Google
|
|
|
1941
1947
|
|
|
1942
1948
|
property :filter, as: 'filter'
|
|
1943
1949
|
hash :labels, as: 'labels'
|
|
1950
|
+
property :mysql_homogeneous_config, as: 'mysqlHomogeneousConfig', class: Google::Apis::DatamigrationV1::MySqlHomogeneousConfig, decorator: Google::Apis::DatamigrationV1::MySqlHomogeneousConfig::Representation
|
|
1951
|
+
|
|
1944
1952
|
property :name, as: 'name'
|
|
1945
1953
|
property :objects_config, as: 'objectsConfig', class: Google::Apis::DatamigrationV1::MigrationJobObjectsConfig, decorator: Google::Apis::DatamigrationV1::MigrationJobObjectsConfig::Representation
|
|
1946
1954
|
|
|
@@ -2049,6 +2057,13 @@ module Google
|
|
|
2049
2057
|
end
|
|
2050
2058
|
end
|
|
2051
2059
|
|
|
2060
|
+
class MySqlHomogeneousConfig
|
|
2061
|
+
# @private
|
|
2062
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
2063
|
+
property :is_primary_destination, as: 'isPrimaryDestination'
|
|
2064
|
+
end
|
|
2065
|
+
end
|
|
2066
|
+
|
|
2052
2067
|
class Operation
|
|
2053
2068
|
# @private
|
|
2054
2069
|
class Representation < Google::Apis::Core::JsonRepresentation
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
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.90.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Google LLC
|
|
@@ -57,7 +57,7 @@ licenses:
|
|
|
57
57
|
metadata:
|
|
58
58
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
|
59
59
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-datamigration_v1/CHANGELOG.md
|
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-datamigration_v1/v0.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-datamigration_v1/v0.90.0
|
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-datamigration_v1
|
|
62
62
|
rdoc_options: []
|
|
63
63
|
require_paths:
|