google-apis-vmmigration_v1 0.7.0 → 0.10.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: 4a02227fafd897b871dbaad9f60fe5631b6d09f85155ca0c6fb1e210d3170b8e
|
4
|
+
data.tar.gz: 969744b128f40a3e2e080c15b83587da0fab815e9b018bc79d3eac05487d068d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b8519d82fcf1e2e704a0f02a68216cd96f14aca83a670656534f0c4becdbd4763933df1880af5bde00be897d118abe3c19bdbe2114ae9cb0176a61874149d387
|
7
|
+
data.tar.gz: 8ffdc884b909f5a814ec7386530c6b60f226b8040b345f0a214172018a59cb660171e8a676e7d24cb448d374ab9a777aa6fbfe5ad8aa082fad75c25fc47f5e04
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,17 @@
|
|
1
1
|
# Release history for google-apis-vmmigration_v1
|
2
2
|
|
3
|
+
### v0.10.0 (2022-04-15)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20220408
|
6
|
+
|
7
|
+
### v0.9.0 (2022-04-08)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20220401
|
10
|
+
|
11
|
+
### v0.8.0 (2022-04-02)
|
12
|
+
|
13
|
+
* Regenerated from discovery document revision 20220327
|
14
|
+
|
3
15
|
### v0.7.0 (2022-02-10)
|
4
16
|
|
5
17
|
* Regenerated from discovery document revision 20220203
|
@@ -129,6 +129,25 @@ module Google
|
|
129
129
|
end
|
130
130
|
end
|
131
131
|
|
132
|
+
# Represent the source AWS VM details.
|
133
|
+
class AwsSourceVmDetails
|
134
|
+
include Google::Apis::Core::Hashable
|
135
|
+
|
136
|
+
# The firmware type of the source VM.
|
137
|
+
# Corresponds to the JSON property `firmware`
|
138
|
+
# @return [String]
|
139
|
+
attr_accessor :firmware
|
140
|
+
|
141
|
+
def initialize(**args)
|
142
|
+
update!(**args)
|
143
|
+
end
|
144
|
+
|
145
|
+
# Update properties of this object
|
146
|
+
def update!(**args)
|
147
|
+
@firmware = args[:firmware] if args.key?(:firmware)
|
148
|
+
end
|
149
|
+
end
|
150
|
+
|
132
151
|
# Request message for 'CancelCloneJob' request.
|
133
152
|
class CancelCloneJobRequest
|
134
153
|
include Google::Apis::Core::Hashable
|
@@ -192,6 +211,11 @@ module Google
|
|
192
211
|
# @return [String]
|
193
212
|
attr_accessor :create_time
|
194
213
|
|
214
|
+
# Output only. The time the clone job was ended.
|
215
|
+
# Corresponds to the JSON property `endTime`
|
216
|
+
# @return [String]
|
217
|
+
attr_accessor :end_time
|
218
|
+
|
195
219
|
# The `Status` type defines a logical error model that is suitable for different
|
196
220
|
# programming environments, including REST APIs and RPC APIs. It is used by [
|
197
221
|
# gRPC](https://github.com/grpc). Each `Status` message contains three pieces of
|
@@ -225,6 +249,7 @@ module Google
|
|
225
249
|
def update!(**args)
|
226
250
|
@compute_engine_target_details = args[:compute_engine_target_details] if args.key?(:compute_engine_target_details)
|
227
251
|
@create_time = args[:create_time] if args.key?(:create_time)
|
252
|
+
@end_time = args[:end_time] if args.key?(:end_time)
|
228
253
|
@error = args[:error] if args.key?(:error)
|
229
254
|
@name = args[:name] if args.key?(:name)
|
230
255
|
@state = args[:state] if args.key?(:state)
|
@@ -533,6 +558,11 @@ module Google
|
|
533
558
|
# @return [String]
|
534
559
|
attr_accessor :create_time
|
535
560
|
|
561
|
+
# Output only. The time the cutover job had finished.
|
562
|
+
# Corresponds to the JSON property `endTime`
|
563
|
+
# @return [String]
|
564
|
+
attr_accessor :end_time
|
565
|
+
|
536
566
|
# The `Status` type defines a logical error model that is suitable for different
|
537
567
|
# programming environments, including REST APIs and RPC APIs. It is used by [
|
538
568
|
# gRPC](https://github.com/grpc). Each `Status` message contains three pieces of
|
@@ -577,6 +607,7 @@ module Google
|
|
577
607
|
def update!(**args)
|
578
608
|
@compute_engine_target_details = args[:compute_engine_target_details] if args.key?(:compute_engine_target_details)
|
579
609
|
@create_time = args[:create_time] if args.key?(:create_time)
|
610
|
+
@end_time = args[:end_time] if args.key?(:end_time)
|
580
611
|
@error = args[:error] if args.key?(:error)
|
581
612
|
@name = args[:name] if args.key?(:name)
|
582
613
|
@progress_percent = args[:progress_percent] if args.key?(:progress_percent)
|
@@ -702,8 +733,7 @@ module Google
|
|
702
733
|
# A generic empty message that you can re-use to avoid defining duplicated empty
|
703
734
|
# messages in your APIs. A typical example is to use it as the request or the
|
704
735
|
# response type of an API method. For instance: service Foo ` rpc Bar(google.
|
705
|
-
# protobuf.Empty) returns (google.protobuf.Empty); `
|
706
|
-
# `Empty` is empty JSON object ````.
|
736
|
+
# protobuf.Empty) returns (google.protobuf.Empty); `
|
707
737
|
class Empty
|
708
738
|
include Google::Apis::Core::Hashable
|
709
739
|
|
@@ -1209,6 +1239,11 @@ module Google
|
|
1209
1239
|
class MigratingVm
|
1210
1240
|
include Google::Apis::Core::Hashable
|
1211
1241
|
|
1242
|
+
# Represent the source AWS VM details.
|
1243
|
+
# Corresponds to the JSON property `awsSourceVmDetails`
|
1244
|
+
# @return [Google::Apis::VmmigrationV1::AwsSourceVmDetails]
|
1245
|
+
attr_accessor :aws_source_vm_details
|
1246
|
+
|
1212
1247
|
# ComputeEngineTargetDefaults is a collection of details for creating a VM in a
|
1213
1248
|
# target Compute Engine project.
|
1214
1249
|
# Corresponds to the JSON property `computeEngineTargetDefaults`
|
@@ -1317,6 +1352,7 @@ module Google
|
|
1317
1352
|
|
1318
1353
|
# Update properties of this object
|
1319
1354
|
def update!(**args)
|
1355
|
+
@aws_source_vm_details = args[:aws_source_vm_details] if args.key?(:aws_source_vm_details)
|
1320
1356
|
@compute_engine_target_defaults = args[:compute_engine_target_defaults] if args.key?(:compute_engine_target_defaults)
|
1321
1357
|
@create_time = args[:create_time] if args.key?(:create_time)
|
1322
1358
|
@current_sync_info = args[:current_sync_info] if args.key?(:current_sync_info)
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module VmmigrationV1
|
18
18
|
# Version of the google-apis-vmmigration_v1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.10.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.4.1"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20220408"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -46,6 +46,12 @@ module Google
|
|
46
46
|
include Google::Apis::Core::JsonObjectSupport
|
47
47
|
end
|
48
48
|
|
49
|
+
class AwsSourceVmDetails
|
50
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
51
|
+
|
52
|
+
include Google::Apis::Core::JsonObjectSupport
|
53
|
+
end
|
54
|
+
|
49
55
|
class CancelCloneJobRequest
|
50
56
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
51
57
|
|
@@ -381,6 +387,13 @@ module Google
|
|
381
387
|
end
|
382
388
|
end
|
383
389
|
|
390
|
+
class AwsSourceVmDetails
|
391
|
+
# @private
|
392
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
393
|
+
property :firmware, as: 'firmware'
|
394
|
+
end
|
395
|
+
end
|
396
|
+
|
384
397
|
class CancelCloneJobRequest
|
385
398
|
# @private
|
386
399
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -405,6 +418,7 @@ module Google
|
|
405
418
|
property :compute_engine_target_details, as: 'computeEngineTargetDetails', class: Google::Apis::VmmigrationV1::ComputeEngineTargetDetails, decorator: Google::Apis::VmmigrationV1::ComputeEngineTargetDetails::Representation
|
406
419
|
|
407
420
|
property :create_time, as: 'createTime'
|
421
|
+
property :end_time, as: 'endTime'
|
408
422
|
property :error, as: 'error', class: Google::Apis::VmmigrationV1::Status, decorator: Google::Apis::VmmigrationV1::Status::Representation
|
409
423
|
|
410
424
|
property :name, as: 'name'
|
@@ -482,6 +496,7 @@ module Google
|
|
482
496
|
property :compute_engine_target_details, as: 'computeEngineTargetDetails', class: Google::Apis::VmmigrationV1::ComputeEngineTargetDetails, decorator: Google::Apis::VmmigrationV1::ComputeEngineTargetDetails::Representation
|
483
497
|
|
484
498
|
property :create_time, as: 'createTime'
|
499
|
+
property :end_time, as: 'endTime'
|
485
500
|
property :error, as: 'error', class: Google::Apis::VmmigrationV1::Status, decorator: Google::Apis::VmmigrationV1::Status::Representation
|
486
501
|
|
487
502
|
property :name, as: 'name'
|
@@ -675,6 +690,8 @@ module Google
|
|
675
690
|
class MigratingVm
|
676
691
|
# @private
|
677
692
|
class Representation < Google::Apis::Core::JsonRepresentation
|
693
|
+
property :aws_source_vm_details, as: 'awsSourceVmDetails', class: Google::Apis::VmmigrationV1::AwsSourceVmDetails, decorator: Google::Apis::VmmigrationV1::AwsSourceVmDetails::Representation
|
694
|
+
|
678
695
|
property :compute_engine_target_defaults, as: 'computeEngineTargetDefaults', class: Google::Apis::VmmigrationV1::ComputeEngineTargetDefaults, decorator: Google::Apis::VmmigrationV1::ComputeEngineTargetDefaults::Representation
|
679
696
|
|
680
697
|
property :create_time, as: 'createTime'
|
@@ -84,8 +84,8 @@ module Google
|
|
84
84
|
# The resource that owns the locations collection, if applicable.
|
85
85
|
# @param [String] filter
|
86
86
|
# A filter to narrow down results to a preferred subset. The filtering language
|
87
|
-
# accepts strings like "displayName=tokyo"
|
88
|
-
# AIP-160](https://google.aip.dev/160).
|
87
|
+
# accepts strings like `"displayName=tokyo"`, and is documented in more detail
|
88
|
+
# in [AIP-160](https://google.aip.dev/160).
|
89
89
|
# @param [Fixnum] page_size
|
90
90
|
# The maximum number of results to return. If not set, the service selects a
|
91
91
|
# default.
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-vmmigration_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.10.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
|
+
date: 2022-04-18 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-vmmigration_v1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-vmmigration_v1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-vmmigration_v1/v0.10.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-vmmigration_v1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|