google-apis-vmmigration_v1alpha1 0.9.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: 8adbbbb908d3c1f6195995882f03deb4f54844c054640f126d91875cfc73dcf9
|
4
|
+
data.tar.gz: a49c95d176ebfef9a26b1b4168e40ba709b555c24fa328862aa339a7208d26f7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: dfd42cf08d5e5646d09a9005a6453563e782ca9474135cb9b269f449b9ef544bcbff5f9879ad73c84bfa1cf574732c18a3e567e50ce4532b049fd4cd294aabe7
|
7
|
+
data.tar.gz: 43ab37410891213cc9d4d3560337c6ff77c8da85c9c84519a2d90efb0b03a5824eb522fead8d1ab8f4fc734a9d275131105f25c40ea46e369e1a2893a1fdf9b0
|
data/CHANGELOG.md
CHANGED
@@ -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
|
@@ -1305,6 +1324,11 @@ module Google
|
|
1305
1324
|
class MigratingVm
|
1306
1325
|
include Google::Apis::Core::Hashable
|
1307
1326
|
|
1327
|
+
# Represent the source AWS VM details.
|
1328
|
+
# Corresponds to the JSON property `awsSourceVmDetails`
|
1329
|
+
# @return [Google::Apis::VmmigrationV1alpha1::AwsSourceVmDetails]
|
1330
|
+
attr_accessor :aws_source_vm_details
|
1331
|
+
|
1308
1332
|
# ComputeEngineTargetDefaults is a collection of details for creating a VM in a
|
1309
1333
|
# target Compute Engine project.
|
1310
1334
|
# Corresponds to the JSON property `computeEngineTargetDefaults`
|
@@ -1425,6 +1449,7 @@ module Google
|
|
1425
1449
|
|
1426
1450
|
# Update properties of this object
|
1427
1451
|
def update!(**args)
|
1452
|
+
@aws_source_vm_details = args[:aws_source_vm_details] if args.key?(:aws_source_vm_details)
|
1428
1453
|
@compute_engine_target_defaults = args[:compute_engine_target_defaults] if args.key?(:compute_engine_target_defaults)
|
1429
1454
|
@compute_engine_vm_defaults = args[:compute_engine_vm_defaults] if args.key?(:compute_engine_vm_defaults)
|
1430
1455
|
@create_time = args[:create_time] if args.key?(:create_time)
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module VmmigrationV1alpha1
|
18
18
|
# Version of the google-apis-vmmigration_v1alpha1 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
|
|
@@ -411,6 +417,13 @@ module Google
|
|
411
417
|
end
|
412
418
|
end
|
413
419
|
|
420
|
+
class AwsSourceVmDetails
|
421
|
+
# @private
|
422
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
423
|
+
property :firmware, as: 'firmware'
|
424
|
+
end
|
425
|
+
end
|
426
|
+
|
414
427
|
class CancelCloneJobRequest
|
415
428
|
# @private
|
416
429
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -735,6 +748,8 @@ module Google
|
|
735
748
|
class MigratingVm
|
736
749
|
# @private
|
737
750
|
class Representation < Google::Apis::Core::JsonRepresentation
|
751
|
+
property :aws_source_vm_details, as: 'awsSourceVmDetails', class: Google::Apis::VmmigrationV1alpha1::AwsSourceVmDetails, decorator: Google::Apis::VmmigrationV1alpha1::AwsSourceVmDetails::Representation
|
752
|
+
|
738
753
|
property :compute_engine_target_defaults, as: 'computeEngineTargetDefaults', class: Google::Apis::VmmigrationV1alpha1::ComputeEngineTargetDefaults, decorator: Google::Apis::VmmigrationV1alpha1::ComputeEngineTargetDefaults::Representation
|
739
754
|
|
740
755
|
property :compute_engine_vm_defaults, as: 'computeEngineVmDefaults', class: Google::Apis::VmmigrationV1alpha1::TargetVmDetails, decorator: Google::Apis::VmmigrationV1alpha1::TargetVmDetails::Representation
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-vmmigration_v1alpha1
|
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-04-
|
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_v1alpha1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-vmmigration_v1alpha1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-vmmigration_v1alpha1/v0.10.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-vmmigration_v1alpha1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|