google-apis-vmmigration_v1 0.31.0 → 0.32.0
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 289ec4b8a13c32cec5944eaac09981cf69da98b65e2fd94cbae7d4beca367e69
|
4
|
+
data.tar.gz: 94ea8f4c95cb2ac1fa8acad222f144d334f50a3ea9e023a5b1d50901ee29a615
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a338e37f64fe98c6b1ab19b4d20d37564b3a0b1cfe28a2aa84f1ab51e6f6029b9bd345b54ac64e1f4f7754a659c5a0800b532c05a08debdda214639818793a5a
|
7
|
+
data.tar.gz: 0ad4407c9b2c9eda385fb5510b9daf4784f667a86b836e8806d2d5b62c6d61bdc335cb000faaf7e4124737171a7a5449f7247253defae1b610d28b8dd4725a53
|
data/CHANGELOG.md
CHANGED
@@ -174,6 +174,37 @@ module Google
|
|
174
174
|
end
|
175
175
|
end
|
176
176
|
|
177
|
+
# The details of an AWS instance disk.
|
178
|
+
class AwsDiskDetails
|
179
|
+
include Google::Apis::Core::Hashable
|
180
|
+
|
181
|
+
# The ordinal number of the disk.
|
182
|
+
# Corresponds to the JSON property `diskNumber`
|
183
|
+
# @return [Fixnum]
|
184
|
+
attr_accessor :disk_number
|
185
|
+
|
186
|
+
# Size in GB.
|
187
|
+
# Corresponds to the JSON property `sizeGb`
|
188
|
+
# @return [Fixnum]
|
189
|
+
attr_accessor :size_gb
|
190
|
+
|
191
|
+
# AWS volume ID.
|
192
|
+
# Corresponds to the JSON property `volumeId`
|
193
|
+
# @return [String]
|
194
|
+
attr_accessor :volume_id
|
195
|
+
|
196
|
+
def initialize(**args)
|
197
|
+
update!(**args)
|
198
|
+
end
|
199
|
+
|
200
|
+
# Update properties of this object
|
201
|
+
def update!(**args)
|
202
|
+
@disk_number = args[:disk_number] if args.key?(:disk_number)
|
203
|
+
@size_gb = args[:size_gb] if args.key?(:size_gb)
|
204
|
+
@volume_id = args[:volume_id] if args.key?(:volume_id)
|
205
|
+
end
|
206
|
+
end
|
207
|
+
|
177
208
|
# AwsSecurityGroup describes a security group of an AWS VM.
|
178
209
|
class AwsSecurityGroup
|
179
210
|
include Google::Apis::Core::Hashable
|
@@ -278,6 +309,11 @@ module Google
|
|
278
309
|
# @return [Fixnum]
|
279
310
|
attr_accessor :committed_storage_bytes
|
280
311
|
|
312
|
+
# The disks attached to the source VM.
|
313
|
+
# Corresponds to the JSON property `disks`
|
314
|
+
# @return [Array<Google::Apis::VmmigrationV1::AwsDiskDetails>]
|
315
|
+
attr_accessor :disks
|
316
|
+
|
281
317
|
# The firmware type of the source VM.
|
282
318
|
# Corresponds to the JSON property `firmware`
|
283
319
|
# @return [String]
|
@@ -290,6 +326,7 @@ module Google
|
|
290
326
|
# Update properties of this object
|
291
327
|
def update!(**args)
|
292
328
|
@committed_storage_bytes = args[:committed_storage_bytes] if args.key?(:committed_storage_bytes)
|
329
|
+
@disks = args[:disks] if args.key?(:disks)
|
293
330
|
@firmware = args[:firmware] if args.key?(:firmware)
|
294
331
|
end
|
295
332
|
end
|
@@ -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.32.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.12.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20230515"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -58,6 +58,12 @@ module Google
|
|
58
58
|
include Google::Apis::Core::JsonObjectSupport
|
59
59
|
end
|
60
60
|
|
61
|
+
class AwsDiskDetails
|
62
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
63
|
+
|
64
|
+
include Google::Apis::Core::JsonObjectSupport
|
65
|
+
end
|
66
|
+
|
61
67
|
class AwsSecurityGroup
|
62
68
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
63
69
|
|
@@ -516,6 +522,15 @@ module Google
|
|
516
522
|
end
|
517
523
|
end
|
518
524
|
|
525
|
+
class AwsDiskDetails
|
526
|
+
# @private
|
527
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
528
|
+
property :disk_number, as: 'diskNumber'
|
529
|
+
property :size_gb, :numeric_string => true, as: 'sizeGb'
|
530
|
+
property :volume_id, as: 'volumeId'
|
531
|
+
end
|
532
|
+
end
|
533
|
+
|
519
534
|
class AwsSecurityGroup
|
520
535
|
# @private
|
521
536
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -545,6 +560,8 @@ module Google
|
|
545
560
|
# @private
|
546
561
|
class Representation < Google::Apis::Core::JsonRepresentation
|
547
562
|
property :committed_storage_bytes, :numeric_string => true, as: 'committedStorageBytes'
|
563
|
+
collection :disks, as: 'disks', class: Google::Apis::VmmigrationV1::AwsDiskDetails, decorator: Google::Apis::VmmigrationV1::AwsDiskDetails::Representation
|
564
|
+
|
548
565
|
property :firmware, as: 'firmware'
|
549
566
|
end
|
550
567
|
end
|
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.32.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: 2023-05-
|
11
|
+
date: 2023-05-21 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.32.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: []
|