google-apis-datamigration_v1 0.54.0 → 0.56.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: 966e261185c991a7b3683d8d762917c25bf82b69c71e5af2896c273db81d43b3
|
4
|
+
data.tar.gz: efcef39b62454653e98af5b65fd94ea9ba7e180ef4da9be60ce5ce124ccd4d29
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b4810e4d6c9ab46241ab27b8fae304e9916e51f623d7f7ddf31dc3c7345f876b62047ec741a8cea1a428e5ec9d9724803a2bb81fd899efad53385a060fc263b1
|
7
|
+
data.tar.gz: 7d8a40da19c370255a7bd048c312e8b4a80083f6dcb2f7ff2aa518b1a1284aec8e50f78abe48830ab1fc081025b8cfe04be91b24522392fa711e4eac9ed8decf
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-datamigration_v1
|
2
2
|
|
3
|
+
### v0.56.0 (2024-04-28)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20240421
|
6
|
+
|
7
|
+
### v0.55.0 (2024-04-07)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20240327
|
10
|
+
|
3
11
|
### v0.54.0 (2024-03-24)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20240315
|
@@ -2233,6 +2233,15 @@ module Google
|
|
2233
2233
|
# @return [Array<String>]
|
2234
2234
|
attr_accessor :table_columns
|
2235
2235
|
|
2236
|
+
# For each table_column, mark whether it's sorting order is ascending (false) or
|
2237
|
+
# descending (true). If no value is defined, assume all columns are sorted in
|
2238
|
+
# ascending order. Otherwise, the number of items must match that of
|
2239
|
+
# table_columns with each value specifying the direction of the matched column
|
2240
|
+
# by its index.
|
2241
|
+
# Corresponds to the JSON property `tableColumnsDescending`
|
2242
|
+
# @return [Array<Boolean>]
|
2243
|
+
attr_accessor :table_columns_descending
|
2244
|
+
|
2236
2245
|
# Type of index, for example B-TREE.
|
2237
2246
|
# Corresponds to the JSON property `type`
|
2238
2247
|
# @return [String]
|
@@ -2253,6 +2262,7 @@ module Google
|
|
2253
2262
|
@custom_features = args[:custom_features] if args.key?(:custom_features)
|
2254
2263
|
@name = args[:name] if args.key?(:name)
|
2255
2264
|
@table_columns = args[:table_columns] if args.key?(:table_columns)
|
2265
|
+
@table_columns_descending = args[:table_columns_descending] if args.key?(:table_columns_descending)
|
2256
2266
|
@type = args[:type] if args.key?(:type)
|
2257
2267
|
@unique = args[:unique] if args.key?(:unique)
|
2258
2268
|
end
|
@@ -2858,6 +2868,12 @@ module Google
|
|
2858
2868
|
# @return [String]
|
2859
2869
|
attr_accessor :dump_path
|
2860
2870
|
|
2871
|
+
# Optional. The type of the data dump. Supported for MySQL to CloudSQL for MySQL
|
2872
|
+
# migrations only.
|
2873
|
+
# Corresponds to the JSON property `dumpType`
|
2874
|
+
# @return [String]
|
2875
|
+
attr_accessor :dump_type
|
2876
|
+
|
2861
2877
|
# Output only. The duration of the migration job (in seconds). A duration in
|
2862
2878
|
# seconds with up to nine fractional digits, terminated by 's'. Example: "3.5s".
|
2863
2879
|
# Corresponds to the JSON property `duration`
|
@@ -2982,6 +2998,7 @@ module Google
|
|
2982
2998
|
@display_name = args[:display_name] if args.key?(:display_name)
|
2983
2999
|
@dump_flags = args[:dump_flags] if args.key?(:dump_flags)
|
2984
3000
|
@dump_path = args[:dump_path] if args.key?(:dump_path)
|
3001
|
+
@dump_type = args[:dump_type] if args.key?(:dump_type)
|
2985
3002
|
@duration = args[:duration] if args.key?(:duration)
|
2986
3003
|
@end_time = args[:end_time] if args.key?(:end_time)
|
2987
3004
|
@error = args[:error] if args.key?(:error)
|
@@ -3819,12 +3836,20 @@ module Google
|
|
3819
3836
|
class ResumeMigrationJobRequest
|
3820
3837
|
include Google::Apis::Core::Hashable
|
3821
3838
|
|
3839
|
+
# Optional. Resume the migration job without running prior configuration
|
3840
|
+
# verification. Defaults to `false`.
|
3841
|
+
# Corresponds to the JSON property `skipValidation`
|
3842
|
+
# @return [Boolean]
|
3843
|
+
attr_accessor :skip_validation
|
3844
|
+
alias_method :skip_validation?, :skip_validation
|
3845
|
+
|
3822
3846
|
def initialize(**args)
|
3823
3847
|
update!(**args)
|
3824
3848
|
end
|
3825
3849
|
|
3826
3850
|
# Update properties of this object
|
3827
3851
|
def update!(**args)
|
3852
|
+
@skip_validation = args[:skip_validation] if args.key?(:skip_validation)
|
3828
3853
|
end
|
3829
3854
|
end
|
3830
3855
|
|
@@ -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.56.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 = "20240421"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -1384,6 +1384,7 @@ module Google
|
|
1384
1384
|
hash :custom_features, as: 'customFeatures'
|
1385
1385
|
property :name, as: 'name'
|
1386
1386
|
collection :table_columns, as: 'tableColumns'
|
1387
|
+
collection :table_columns_descending, as: 'tableColumnsDescending'
|
1387
1388
|
property :type, as: 'type'
|
1388
1389
|
property :unique, as: 'unique'
|
1389
1390
|
end
|
@@ -1552,6 +1553,7 @@ module Google
|
|
1552
1553
|
property :dump_flags, as: 'dumpFlags', class: Google::Apis::DatamigrationV1::DumpFlags, decorator: Google::Apis::DatamigrationV1::DumpFlags::Representation
|
1553
1554
|
|
1554
1555
|
property :dump_path, as: 'dumpPath'
|
1556
|
+
property :dump_type, as: 'dumpType'
|
1555
1557
|
property :duration, as: 'duration'
|
1556
1558
|
property :end_time, as: 'endTime'
|
1557
1559
|
property :error, as: 'error', class: Google::Apis::DatamigrationV1::Status, decorator: Google::Apis::DatamigrationV1::Status::Representation
|
@@ -1775,6 +1777,7 @@ module Google
|
|
1775
1777
|
class ResumeMigrationJobRequest
|
1776
1778
|
# @private
|
1777
1779
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1780
|
+
property :skip_validation, as: 'skipValidation'
|
1778
1781
|
end
|
1779
1782
|
end
|
1780
1783
|
|
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.56.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-28 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.56.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: []
|