google-apis-vmmigration_v1alpha1 0.36.0 → 0.37.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: e268fdc1e23fe359c765654aed9470f62691695e2a068bb775aacf6f9cd66612
4
- data.tar.gz: c6fefed4821531eb334fc490a8796ea01698fbd863498aa6eabbf91c4ae4c01b
3
+ metadata.gz: a333ab0ab0113c5c647e5723bed074f0e8c5994f2e634850bb1461987d864882
4
+ data.tar.gz: 794849573d48ab6cd84097b7ab8bde97ff91efe6a2537607c5a5c1e697141bfe
5
5
  SHA512:
6
- metadata.gz: 74aded7721eb36acc74c6bc39f6ee2bfb303eff09cb157c74b342d08682502e4e87d8e00f0bca8ac1d7b09238edf24dc634a4e6ffcc0cb7e45c60c76b8ed051b
7
- data.tar.gz: 9706fc988d11fc25e26ae8885980fbcff04de0125075069309af3921bbd383e48f68d2c0f2b4932896cec9f91683d61c18ca54a12796f0698c2de59ff7c885bd
6
+ metadata.gz: 3d70af60c5c7b27fdc7a9b82069958f22e9f91e7a5c5208ecae9f64465dcd38be7131bd58596e48d529ba227eae26281946fdf8f39e77ebd5747a2715b45986e
7
+ data.tar.gz: efd39c387ab8754d5fcdb13b34655f9838549004ccd99352c5338762b88979dc9c1be20085912921b068d51b710df305e347b1c8e7186996398589c0ee57a00e
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-vmmigration_v1alpha1
2
2
 
3
+ ### v0.37.0 (2023-08-27)
4
+
5
+ * Regenerated from discovery document revision 20230817
6
+
3
7
  ### v0.36.0 (2023-08-13)
4
8
 
5
9
  * Regenerated from discovery document revision 20230803
@@ -319,12 +319,6 @@ module Google
319
319
  # @return [String]
320
320
  attr_accessor :firmware
321
321
 
322
- # Output only. Unordered list. List of VM certain capabilities needed for some
323
- # Compute Engine features.
324
- # Corresponds to the JSON property `vmCapabilities`
325
- # @return [Array<String>]
326
- attr_accessor :vm_capabilities
327
-
328
322
  def initialize(**args)
329
323
  update!(**args)
330
324
  end
@@ -334,7 +328,6 @@ module Google
334
328
  @committed_storage_bytes = args[:committed_storage_bytes] if args.key?(:committed_storage_bytes)
335
329
  @disks = args[:disks] if args.key?(:disks)
336
330
  @firmware = args[:firmware] if args.key?(:firmware)
337
- @vm_capabilities = args[:vm_capabilities] if args.key?(:vm_capabilities)
338
331
  end
339
332
  end
340
333
 
@@ -2077,6 +2070,11 @@ module Google
2077
2070
  # @return [String]
2078
2071
  attr_accessor :update_time
2079
2072
 
2073
+ # Represent the source Vmware VM details.
2074
+ # Corresponds to the JSON property `vmwareSourceVmDetails`
2075
+ # @return [Google::Apis::VmmigrationV1alpha1::VmwareSourceVmDetails]
2076
+ attr_accessor :vmware_source_vm_details
2077
+
2080
2078
  def initialize(**args)
2081
2079
  update!(**args)
2082
2080
  end
@@ -2106,6 +2104,7 @@ module Google
2106
2104
  @state_time = args[:state_time] if args.key?(:state_time)
2107
2105
  @target_defaults = args[:target_defaults] if args.key?(:target_defaults)
2108
2106
  @update_time = args[:update_time] if args.key?(:update_time)
2107
+ @vmware_source_vm_details = args[:vmware_source_vm_details] if args.key?(:vmware_source_vm_details)
2109
2108
  end
2110
2109
  end
2111
2110
 
@@ -3359,6 +3358,37 @@ module Google
3359
3358
  end
3360
3359
  end
3361
3360
 
3361
+ # The details of a Vmware VM disk.
3362
+ class VmwareDiskDetails
3363
+ include Google::Apis::Core::Hashable
3364
+
3365
+ # The ordinal number of the disk.
3366
+ # Corresponds to the JSON property `diskNumber`
3367
+ # @return [Fixnum]
3368
+ attr_accessor :disk_number
3369
+
3370
+ # The disk label.
3371
+ # Corresponds to the JSON property `label`
3372
+ # @return [String]
3373
+ attr_accessor :label
3374
+
3375
+ # Size in GB.
3376
+ # Corresponds to the JSON property `sizeGb`
3377
+ # @return [Fixnum]
3378
+ attr_accessor :size_gb
3379
+
3380
+ def initialize(**args)
3381
+ update!(**args)
3382
+ end
3383
+
3384
+ # Update properties of this object
3385
+ def update!(**args)
3386
+ @disk_number = args[:disk_number] if args.key?(:disk_number)
3387
+ @label = args[:label] if args.key?(:label)
3388
+ @size_gb = args[:size_gb] if args.key?(:size_gb)
3389
+ end
3390
+ end
3391
+
3362
3392
  # VmwareSourceDetails message describes a specific source details for the vmware
3363
3393
  # source type.
3364
3394
  class VmwareSourceDetails
@@ -3404,6 +3434,37 @@ module Google
3404
3434
  end
3405
3435
  end
3406
3436
 
3437
+ # Represent the source Vmware VM details.
3438
+ class VmwareSourceVmDetails
3439
+ include Google::Apis::Core::Hashable
3440
+
3441
+ # The total size of the disks being migrated in bytes.
3442
+ # Corresponds to the JSON property `committedStorageBytes`
3443
+ # @return [Fixnum]
3444
+ attr_accessor :committed_storage_bytes
3445
+
3446
+ # The disks attached to the source VM.
3447
+ # Corresponds to the JSON property `disks`
3448
+ # @return [Array<Google::Apis::VmmigrationV1alpha1::VmwareDiskDetails>]
3449
+ attr_accessor :disks
3450
+
3451
+ # The firmware type of the source VM.
3452
+ # Corresponds to the JSON property `firmware`
3453
+ # @return [String]
3454
+ attr_accessor :firmware
3455
+
3456
+ def initialize(**args)
3457
+ update!(**args)
3458
+ end
3459
+
3460
+ # Update properties of this object
3461
+ def update!(**args)
3462
+ @committed_storage_bytes = args[:committed_storage_bytes] if args.key?(:committed_storage_bytes)
3463
+ @disks = args[:disks] if args.key?(:disks)
3464
+ @firmware = args[:firmware] if args.key?(:firmware)
3465
+ end
3466
+ end
3467
+
3407
3468
  # VmwareVmDetails describes a VM in vCenter.
3408
3469
  class VmwareVmDetails
3409
3470
  include Google::Apis::Core::Hashable
@@ -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.36.0"
19
+ GEM_VERSION = "0.37.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 = "20230803"
25
+ REVISION = "20230817"
26
26
  end
27
27
  end
28
28
  end
@@ -484,12 +484,24 @@ module Google
484
484
  include Google::Apis::Core::JsonObjectSupport
485
485
  end
486
486
 
487
+ class VmwareDiskDetails
488
+ class Representation < Google::Apis::Core::JsonRepresentation; end
489
+
490
+ include Google::Apis::Core::JsonObjectSupport
491
+ end
492
+
487
493
  class VmwareSourceDetails
488
494
  class Representation < Google::Apis::Core::JsonRepresentation; end
489
495
 
490
496
  include Google::Apis::Core::JsonObjectSupport
491
497
  end
492
498
 
499
+ class VmwareSourceVmDetails
500
+ class Representation < Google::Apis::Core::JsonRepresentation; end
501
+
502
+ include Google::Apis::Core::JsonObjectSupport
503
+ end
504
+
493
505
  class VmwareVmDetails
494
506
  class Representation < Google::Apis::Core::JsonRepresentation; end
495
507
 
@@ -593,7 +605,6 @@ module Google
593
605
  collection :disks, as: 'disks', class: Google::Apis::VmmigrationV1alpha1::AwsDiskDetails, decorator: Google::Apis::VmmigrationV1alpha1::AwsDiskDetails::Representation
594
606
 
595
607
  property :firmware, as: 'firmware'
596
- collection :vm_capabilities, as: 'vmCapabilities'
597
608
  end
598
609
  end
599
610
 
@@ -1079,6 +1090,8 @@ module Google
1079
1090
  property :target_defaults, as: 'targetDefaults', class: Google::Apis::VmmigrationV1alpha1::TargetVmDetails, decorator: Google::Apis::VmmigrationV1alpha1::TargetVmDetails::Representation
1080
1091
 
1081
1092
  property :update_time, as: 'updateTime'
1093
+ property :vmware_source_vm_details, as: 'vmwareSourceVmDetails', class: Google::Apis::VmmigrationV1alpha1::VmwareSourceVmDetails, decorator: Google::Apis::VmmigrationV1alpha1::VmwareSourceVmDetails::Representation
1094
+
1082
1095
  end
1083
1096
  end
1084
1097
 
@@ -1406,6 +1419,15 @@ module Google
1406
1419
  end
1407
1420
  end
1408
1421
 
1422
+ class VmwareDiskDetails
1423
+ # @private
1424
+ class Representation < Google::Apis::Core::JsonRepresentation
1425
+ property :disk_number, as: 'diskNumber'
1426
+ property :label, as: 'label'
1427
+ property :size_gb, :numeric_string => true, as: 'sizeGb'
1428
+ end
1429
+ end
1430
+
1409
1431
  class VmwareSourceDetails
1410
1432
  # @private
1411
1433
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1417,6 +1439,16 @@ module Google
1417
1439
  end
1418
1440
  end
1419
1441
 
1442
+ class VmwareSourceVmDetails
1443
+ # @private
1444
+ class Representation < Google::Apis::Core::JsonRepresentation
1445
+ property :committed_storage_bytes, :numeric_string => true, as: 'committedStorageBytes'
1446
+ collection :disks, as: 'disks', class: Google::Apis::VmmigrationV1alpha1::VmwareDiskDetails, decorator: Google::Apis::VmmigrationV1alpha1::VmwareDiskDetails::Representation
1447
+
1448
+ property :firmware, as: 'firmware'
1449
+ end
1450
+ end
1451
+
1420
1452
  class VmwareVmDetails
1421
1453
  # @private
1422
1454
  class Representation < Google::Apis::Core::JsonRepresentation
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.36.0
4
+ version: 0.37.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-08-13 00:00:00.000000000 Z
11
+ date: 2023-08-27 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.36.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-vmmigration_v1alpha1/v0.37.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: []
@@ -75,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
75
75
  - !ruby/object:Gem::Version
76
76
  version: '0'
77
77
  requirements: []
78
- rubygems_version: 3.4.2
78
+ rubygems_version: 3.4.19
79
79
  signing_key:
80
80
  specification_version: 4
81
81
  summary: Simple REST client for VM Migration API V1alpha1