google-apis-vmmigration_v1alpha1 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 +4 -4
- data/CHANGELOG.md +12 -0
- data/lib/google/apis/vmmigration_v1alpha1/classes.rb +27 -3
- data/lib/google/apis/vmmigration_v1alpha1/gem_version.rb +2 -2
- data/lib/google/apis/vmmigration_v1alpha1/representations.rb +15 -0
- data/lib/google/apis/vmmigration_v1alpha1/service.rb +2 -2
- metadata +3 -3
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
@@ -1,5 +1,17 @@
|
|
1
1
|
# Release history for google-apis-vmmigration_v1alpha1
|
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-03-12)
|
4
16
|
|
5
17
|
* Regenerated from discovery document revision 20220306
|
@@ -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
|
@@ -786,8 +805,7 @@ module Google
|
|
786
805
|
# A generic empty message that you can re-use to avoid defining duplicated empty
|
787
806
|
# messages in your APIs. A typical example is to use it as the request or the
|
788
807
|
# response type of an API method. For instance: service Foo ` rpc Bar(google.
|
789
|
-
# protobuf.Empty) returns (google.protobuf.Empty); `
|
790
|
-
# `Empty` is empty JSON object ````.
|
808
|
+
# protobuf.Empty) returns (google.protobuf.Empty); `
|
791
809
|
class Empty
|
792
810
|
include Google::Apis::Core::Hashable
|
793
811
|
|
@@ -1306,6 +1324,11 @@ module Google
|
|
1306
1324
|
class MigratingVm
|
1307
1325
|
include Google::Apis::Core::Hashable
|
1308
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
|
+
|
1309
1332
|
# ComputeEngineTargetDefaults is a collection of details for creating a VM in a
|
1310
1333
|
# target Compute Engine project.
|
1311
1334
|
# Corresponds to the JSON property `computeEngineTargetDefaults`
|
@@ -1426,6 +1449,7 @@ module Google
|
|
1426
1449
|
|
1427
1450
|
# Update properties of this object
|
1428
1451
|
def update!(**args)
|
1452
|
+
@aws_source_vm_details = args[:aws_source_vm_details] if args.key?(:aws_source_vm_details)
|
1429
1453
|
@compute_engine_target_defaults = args[:compute_engine_target_defaults] if args.key?(:compute_engine_target_defaults)
|
1430
1454
|
@compute_engine_vm_defaults = args[:compute_engine_vm_defaults] if args.key?(:compute_engine_vm_defaults)
|
1431
1455
|
@create_time = args[:create_time] if args.key?(:create_time)
|
@@ -1757,7 +1781,7 @@ module Google
|
|
1757
1781
|
# @return [String]
|
1758
1782
|
attr_accessor :start_time
|
1759
1783
|
|
1760
|
-
# The cycle's steps list
|
1784
|
+
# The cycle's steps list representing its progress.
|
1761
1785
|
# Corresponds to the JSON property `steps`
|
1762
1786
|
# @return [Array<Google::Apis::VmmigrationV1alpha1::CycleStep>]
|
1763
1787
|
attr_accessor :steps
|
@@ -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
|
@@ -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_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-
|
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: []
|