google-apis-vmmigration_v1alpha1 0.32.0 → 0.33.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: 7b30f1933d641f234b00290dbd165cdb91f20b018f02ea44f58b1124667a9b27
4
- data.tar.gz: 4ddde56c03af91b730cae498bace2c14a8dc9a4c0f582f1cfcdf0e43db446827
3
+ metadata.gz: b579919b287263110e7ea834df6ee2ffb1545e6679bdf284c0836a5769c7f7b8
4
+ data.tar.gz: c396a25be75923f749505bc818ea5115730561169d3bd6f5fbd07f9c8a6a0921
5
5
  SHA512:
6
- metadata.gz: 12d9db20d26ae61fa04ee99b1cd5933ab3e1fb223878ca1b471e6488fa75ed02b36137893e3af6aafb080eb350f95d096149fffb360e9df283f366eb59a676a0
7
- data.tar.gz: ba8af6a8c279166fd0a52fd0dcde8b7269365214f6fed8765dcdbb7a6ff30628e88829230d1a627c432d7356ba9f99ecdbb3ac5078e4b4f0387275aa8f78458b
6
+ metadata.gz: af0be165def3b4028ba6d9a9d144784d42a06dc1e80a31bd503854e82cb36710929dd314f07d2bac506849196e3e9db1f98eb187b63a920edefb67b233666300
7
+ data.tar.gz: 492cd55ebe419fd9b55a1a0f9570735b767f4ad3ad040edfc95af54b569a5495653623822f9d4f2e4ae50388c65800a99fd3ec9fbd62143cf86a47c4ba161dbb
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-vmmigration_v1alpha1
2
2
 
3
+ ### v0.33.0 (2023-05-21)
4
+
5
+ * Regenerated from discovery document revision 20230515
6
+
3
7
  ### v0.32.0 (2023-05-14)
4
8
 
5
9
  * Regenerated from discovery document revision 20230504
@@ -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::VmmigrationV1alpha1::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 VmmigrationV1alpha1
18
18
  # Version of the google-apis-vmmigration_v1alpha1 gem
19
- GEM_VERSION = "0.32.0"
19
+ GEM_VERSION = "0.33.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 = "20230504"
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
 
@@ -522,6 +528,15 @@ module Google
522
528
  end
523
529
  end
524
530
 
531
+ class AwsDiskDetails
532
+ # @private
533
+ class Representation < Google::Apis::Core::JsonRepresentation
534
+ property :disk_number, as: 'diskNumber'
535
+ property :size_gb, :numeric_string => true, as: 'sizeGb'
536
+ property :volume_id, as: 'volumeId'
537
+ end
538
+ end
539
+
525
540
  class AwsSecurityGroup
526
541
  # @private
527
542
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -551,6 +566,8 @@ module Google
551
566
  # @private
552
567
  class Representation < Google::Apis::Core::JsonRepresentation
553
568
  property :committed_storage_bytes, :numeric_string => true, as: 'committedStorageBytes'
569
+ collection :disks, as: 'disks', class: Google::Apis::VmmigrationV1alpha1::AwsDiskDetails, decorator: Google::Apis::VmmigrationV1alpha1::AwsDiskDetails::Representation
570
+
554
571
  property :firmware, as: 'firmware'
555
572
  end
556
573
  end
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.32.0
4
+ version: 0.33.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-14 00:00:00.000000000 Z
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_v1alpha1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-vmmigration_v1alpha1/v0.32.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-vmmigration_v1alpha1/v0.33.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: []