google-apis-datamigration_v1 0.54.0 → 0.55.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: 31adf0d4cf6a4afb38923fe89235dd211b5f6b98e0e424819329606734f5c900
|
|
4
|
+
data.tar.gz: eb1b50a6d2a129d0893eb2218155713f128e71c9db7eb7ffa3e761ae10fd1707
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a1f30bdaaede617b3a2493199f6dd12a17aec5db8757de5674b846dd70c8aa4d44d5b4962b4505500a408b4ab48c898fdf8ff702b48e4cce9873f0bd8c8ad472
|
|
7
|
+
data.tar.gz: fd04ed81c4ae5ab38a7f38028c1c4acb874180b6f9d7e8e6c684067c33c201bcaf9a940fd8a2735c3e920a4ba1b0cc40e2b10986cfedab7a6f463a85fc29a46a
|
data/CHANGELOG.md
CHANGED
|
@@ -2858,6 +2858,12 @@ module Google
|
|
|
2858
2858
|
# @return [String]
|
|
2859
2859
|
attr_accessor :dump_path
|
|
2860
2860
|
|
|
2861
|
+
# Optional. The type of the data dump. Supported for MySQL to CloudSQL for MySQL
|
|
2862
|
+
# migrations only.
|
|
2863
|
+
# Corresponds to the JSON property `dumpType`
|
|
2864
|
+
# @return [String]
|
|
2865
|
+
attr_accessor :dump_type
|
|
2866
|
+
|
|
2861
2867
|
# Output only. The duration of the migration job (in seconds). A duration in
|
|
2862
2868
|
# seconds with up to nine fractional digits, terminated by 's'. Example: "3.5s".
|
|
2863
2869
|
# Corresponds to the JSON property `duration`
|
|
@@ -2982,6 +2988,7 @@ module Google
|
|
|
2982
2988
|
@display_name = args[:display_name] if args.key?(:display_name)
|
|
2983
2989
|
@dump_flags = args[:dump_flags] if args.key?(:dump_flags)
|
|
2984
2990
|
@dump_path = args[:dump_path] if args.key?(:dump_path)
|
|
2991
|
+
@dump_type = args[:dump_type] if args.key?(:dump_type)
|
|
2985
2992
|
@duration = args[:duration] if args.key?(:duration)
|
|
2986
2993
|
@end_time = args[:end_time] if args.key?(:end_time)
|
|
2987
2994
|
@error = args[:error] if args.key?(:error)
|
|
@@ -3819,12 +3826,20 @@ module Google
|
|
|
3819
3826
|
class ResumeMigrationJobRequest
|
|
3820
3827
|
include Google::Apis::Core::Hashable
|
|
3821
3828
|
|
|
3829
|
+
# Optional. Resume the migration job without running prior configuration
|
|
3830
|
+
# verification. Defaults to `false`.
|
|
3831
|
+
# Corresponds to the JSON property `skipValidation`
|
|
3832
|
+
# @return [Boolean]
|
|
3833
|
+
attr_accessor :skip_validation
|
|
3834
|
+
alias_method :skip_validation?, :skip_validation
|
|
3835
|
+
|
|
3822
3836
|
def initialize(**args)
|
|
3823
3837
|
update!(**args)
|
|
3824
3838
|
end
|
|
3825
3839
|
|
|
3826
3840
|
# Update properties of this object
|
|
3827
3841
|
def update!(**args)
|
|
3842
|
+
@skip_validation = args[:skip_validation] if args.key?(:skip_validation)
|
|
3828
3843
|
end
|
|
3829
3844
|
end
|
|
3830
3845
|
|
|
@@ -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.55.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
22
|
GENERATOR_VERSION = "0.14.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20240327"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -1552,6 +1552,7 @@ module Google
|
|
|
1552
1552
|
property :dump_flags, as: 'dumpFlags', class: Google::Apis::DatamigrationV1::DumpFlags, decorator: Google::Apis::DatamigrationV1::DumpFlags::Representation
|
|
1553
1553
|
|
|
1554
1554
|
property :dump_path, as: 'dumpPath'
|
|
1555
|
+
property :dump_type, as: 'dumpType'
|
|
1555
1556
|
property :duration, as: 'duration'
|
|
1556
1557
|
property :end_time, as: 'endTime'
|
|
1557
1558
|
property :error, as: 'error', class: Google::Apis::DatamigrationV1::Status, decorator: Google::Apis::DatamigrationV1::Status::Representation
|
|
@@ -1775,6 +1776,7 @@ module Google
|
|
|
1775
1776
|
class ResumeMigrationJobRequest
|
|
1776
1777
|
# @private
|
|
1777
1778
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1779
|
+
property :skip_validation, as: 'skipValidation'
|
|
1778
1780
|
end
|
|
1779
1781
|
end
|
|
1780
1782
|
|
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.55.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: 2024-
|
|
11
|
+
date: 2024-04-07 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.55.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: []
|