google-apis-datamigration_v1 0.78.0 → 0.79.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: 321a491688783569cd31f616ab45264344d522da62a0601381fdeff7df8fb20f
|
4
|
+
data.tar.gz: dfd6e8cd524b2cf9f6d2e93834b42479b77002ad34861da82443f957e484ab91
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f470fa1227341afc9e46064459124864ab723f194622a86f6bc8ffbf86d9fce6f519aa84796e0d06825f8e0737e530b9eff717b089219b1f64e4c823f233719c
|
7
|
+
data.tar.gz: 83f7f07242b092a23cd67bd837ac30d03e8a28e921ace50486b94e34017d7d8083c3c43ade8fa3758ba2d1fe21a176bdc5e973c876dbc87e432f7218d8101847
|
data/CHANGELOG.md
CHANGED
@@ -2279,6 +2279,25 @@ module Google
|
|
2279
2279
|
end
|
2280
2280
|
end
|
2281
2281
|
|
2282
|
+
# Metadata for heterogeneous migration jobs objects.
|
2283
|
+
class HeterogeneousMetadata
|
2284
|
+
include Google::Apis::Core::Hashable
|
2285
|
+
|
2286
|
+
# The number of unsupported events.
|
2287
|
+
# Corresponds to the JSON property `unsupportedEventsCount`
|
2288
|
+
# @return [Fixnum]
|
2289
|
+
attr_accessor :unsupported_events_count
|
2290
|
+
|
2291
|
+
def initialize(**args)
|
2292
|
+
update!(**args)
|
2293
|
+
end
|
2294
|
+
|
2295
|
+
# Update properties of this object
|
2296
|
+
def update!(**args)
|
2297
|
+
@unsupported_events_count = args[:unsupported_events_count] if args.key?(:unsupported_events_count)
|
2298
|
+
end
|
2299
|
+
end
|
2300
|
+
|
2282
2301
|
# Request message for 'ImportMappingRules' request.
|
2283
2302
|
class ImportMappingRulesRequest
|
2284
2303
|
include Google::Apis::Core::Hashable
|
@@ -3328,6 +3347,11 @@ module Google
|
|
3328
3347
|
# @return [Google::Apis::DatamigrationV1::Status]
|
3329
3348
|
attr_accessor :error
|
3330
3349
|
|
3350
|
+
# Metadata for heterogeneous migration jobs objects.
|
3351
|
+
# Corresponds to the JSON property `heterogeneousMetadata`
|
3352
|
+
# @return [Google::Apis::DatamigrationV1::HeterogeneousMetadata]
|
3353
|
+
attr_accessor :heterogeneous_metadata
|
3354
|
+
|
3331
3355
|
# The object's name.
|
3332
3356
|
# Corresponds to the JSON property `name`
|
3333
3357
|
# @return [String]
|
@@ -3361,6 +3385,7 @@ module Google
|
|
3361
3385
|
def update!(**args)
|
3362
3386
|
@create_time = args[:create_time] if args.key?(:create_time)
|
3363
3387
|
@error = args[:error] if args.key?(:error)
|
3388
|
+
@heterogeneous_metadata = args[:heterogeneous_metadata] if args.key?(:heterogeneous_metadata)
|
3364
3389
|
@name = args[:name] if args.key?(:name)
|
3365
3390
|
@phase = args[:phase] if args.key?(:phase)
|
3366
3391
|
@source_object = args[:source_object] if args.key?(:source_object)
|
@@ -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.79.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.18.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20250815"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -328,6 +328,12 @@ module Google
|
|
328
328
|
include Google::Apis::Core::JsonObjectSupport
|
329
329
|
end
|
330
330
|
|
331
|
+
class HeterogeneousMetadata
|
332
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
333
|
+
|
334
|
+
include Google::Apis::Core::JsonObjectSupport
|
335
|
+
end
|
336
|
+
|
331
337
|
class ImportMappingRulesRequest
|
332
338
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
333
339
|
|
@@ -1509,6 +1515,13 @@ module Google
|
|
1509
1515
|
end
|
1510
1516
|
end
|
1511
1517
|
|
1518
|
+
class HeterogeneousMetadata
|
1519
|
+
# @private
|
1520
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1521
|
+
property :unsupported_events_count, :numeric_string => true, as: 'unsupportedEventsCount'
|
1522
|
+
end
|
1523
|
+
end
|
1524
|
+
|
1512
1525
|
class ImportMappingRulesRequest
|
1513
1526
|
# @private
|
1514
1527
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1788,6 +1801,8 @@ module Google
|
|
1788
1801
|
property :create_time, as: 'createTime'
|
1789
1802
|
property :error, as: 'error', class: Google::Apis::DatamigrationV1::Status, decorator: Google::Apis::DatamigrationV1::Status::Representation
|
1790
1803
|
|
1804
|
+
property :heterogeneous_metadata, as: 'heterogeneousMetadata', class: Google::Apis::DatamigrationV1::HeterogeneousMetadata, decorator: Google::Apis::DatamigrationV1::HeterogeneousMetadata::Representation
|
1805
|
+
|
1791
1806
|
property :name, as: 'name'
|
1792
1807
|
property :phase, as: 'phase'
|
1793
1808
|
property :source_object, as: 'sourceObject', class: Google::Apis::DatamigrationV1::SourceObjectIdentifier, decorator: Google::Apis::DatamigrationV1::SourceObjectIdentifier::Representation
|
@@ -123,8 +123,8 @@ module Google
|
|
123
123
|
# @param [String] name
|
124
124
|
# The resource that owns the locations collection, if applicable.
|
125
125
|
# @param [Array<String>, String] extra_location_types
|
126
|
-
# Optional.
|
127
|
-
#
|
126
|
+
# Optional. Do not use this field. It is unsupported and is ignored unless
|
127
|
+
# explicitly documented otherwise. This is primarily for internal usage.
|
128
128
|
# @param [String] filter
|
129
129
|
# A filter to narrow down results to a preferred subset. The filtering language
|
130
130
|
# accepts strings like `"displayName=tokyo"`, and is documented in more detail
|
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.79.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.79.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:
|