google-apis-vmmigration_v1 0.35.0 → 0.36.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: 7618ff080e8d87ca299f5560057235c2ac38e7d6a5ee96c6ca9485f21fe32288
4
- data.tar.gz: dc9597df0482c84c9244c8680032d6b5d9d3b890ee61a19ccfe60593f816f9ff
3
+ metadata.gz: 6547a2245a987832d13dda08680ba5460f127f59dd04723e34bfe5ffac54e8b2
4
+ data.tar.gz: f9e34feb8ca6744dab3c27dec9b73e6f06bcda3043a680fd2824766027738171
5
5
  SHA512:
6
- metadata.gz: fc91ced802e5c61ae94689e3ba12fe2fb98a7fdea3f8ff85c65498f67903b73b8a684c7d7644778c431a47ef13ca5bf2293d279726b2f317a0dc50bc6521ee9d
7
- data.tar.gz: 52fcf64e512defacf264bfd8dd207886d32a2747b246cb00def04cbdb6271be5ef493666585e75ec0d6ac101fd679cc283d9a43f281447a2f39915409b3cc05e
6
+ metadata.gz: ac7aeb2c7efc3875717bcd46e650267ad05aa45becc3647f420896eb69af44653bb1213194a4b03f8959fe0d658d62375ba0ab25032c632ed87a7575319418ab
7
+ data.tar.gz: f7c5f1f16bf0a5638914d65ee36270c2092453d098dfaf61dcbe0c0975ed5ed7ba9aa1a50ab8652e6a3f1d43bd4f00befc69b372418f87cb14bd5cc5a3c56018
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-vmmigration_v1
2
2
 
3
+ ### v0.36.0 (2023-08-27)
4
+
5
+ * Regenerated from discovery document revision 20230817
6
+
3
7
  ### v0.35.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
 
@@ -2024,6 +2017,11 @@ module Google
2024
2017
  # @return [String]
2025
2018
  attr_accessor :update_time
2026
2019
 
2020
+ # Represent the source Vmware VM details.
2021
+ # Corresponds to the JSON property `vmwareSourceVmDetails`
2022
+ # @return [Google::Apis::VmmigrationV1::VmwareSourceVmDetails]
2023
+ attr_accessor :vmware_source_vm_details
2024
+
2027
2025
  def initialize(**args)
2028
2026
  update!(**args)
2029
2027
  end
@@ -2051,6 +2049,7 @@ module Google
2051
2049
  @state = args[:state] if args.key?(:state)
2052
2050
  @state_time = args[:state_time] if args.key?(:state_time)
2053
2051
  @update_time = args[:update_time] if args.key?(:update_time)
2052
+ @vmware_source_vm_details = args[:vmware_source_vm_details] if args.key?(:vmware_source_vm_details)
2054
2053
  end
2055
2054
  end
2056
2055
 
@@ -3086,6 +3085,37 @@ module Google
3086
3085
  end
3087
3086
  end
3088
3087
 
3088
+ # The details of a Vmware VM disk.
3089
+ class VmwareDiskDetails
3090
+ include Google::Apis::Core::Hashable
3091
+
3092
+ # The ordinal number of the disk.
3093
+ # Corresponds to the JSON property `diskNumber`
3094
+ # @return [Fixnum]
3095
+ attr_accessor :disk_number
3096
+
3097
+ # The disk label.
3098
+ # Corresponds to the JSON property `label`
3099
+ # @return [String]
3100
+ attr_accessor :label
3101
+
3102
+ # Size in GB.
3103
+ # Corresponds to the JSON property `sizeGb`
3104
+ # @return [Fixnum]
3105
+ attr_accessor :size_gb
3106
+
3107
+ def initialize(**args)
3108
+ update!(**args)
3109
+ end
3110
+
3111
+ # Update properties of this object
3112
+ def update!(**args)
3113
+ @disk_number = args[:disk_number] if args.key?(:disk_number)
3114
+ @label = args[:label] if args.key?(:label)
3115
+ @size_gb = args[:size_gb] if args.key?(:size_gb)
3116
+ end
3117
+ end
3118
+
3089
3119
  # VmwareSourceDetails message describes a specific source details for the vmware
3090
3120
  # source type.
3091
3121
  class VmwareSourceDetails
@@ -3131,6 +3161,37 @@ module Google
3131
3161
  end
3132
3162
  end
3133
3163
 
3164
+ # Represent the source Vmware VM details.
3165
+ class VmwareSourceVmDetails
3166
+ include Google::Apis::Core::Hashable
3167
+
3168
+ # The total size of the disks being migrated in bytes.
3169
+ # Corresponds to the JSON property `committedStorageBytes`
3170
+ # @return [Fixnum]
3171
+ attr_accessor :committed_storage_bytes
3172
+
3173
+ # The disks attached to the source VM.
3174
+ # Corresponds to the JSON property `disks`
3175
+ # @return [Array<Google::Apis::VmmigrationV1::VmwareDiskDetails>]
3176
+ attr_accessor :disks
3177
+
3178
+ # The firmware type of the source VM.
3179
+ # Corresponds to the JSON property `firmware`
3180
+ # @return [String]
3181
+ attr_accessor :firmware
3182
+
3183
+ def initialize(**args)
3184
+ update!(**args)
3185
+ end
3186
+
3187
+ # Update properties of this object
3188
+ def update!(**args)
3189
+ @committed_storage_bytes = args[:committed_storage_bytes] if args.key?(:committed_storage_bytes)
3190
+ @disks = args[:disks] if args.key?(:disks)
3191
+ @firmware = args[:firmware] if args.key?(:firmware)
3192
+ end
3193
+ end
3194
+
3134
3195
  # VmwareVmDetails describes a VM in vCenter.
3135
3196
  class VmwareVmDetails
3136
3197
  include Google::Apis::Core::Hashable
@@ -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.35.0"
19
+ GEM_VERSION = "0.36.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
@@ -478,12 +478,24 @@ module Google
478
478
  include Google::Apis::Core::JsonObjectSupport
479
479
  end
480
480
 
481
+ class VmwareDiskDetails
482
+ class Representation < Google::Apis::Core::JsonRepresentation; end
483
+
484
+ include Google::Apis::Core::JsonObjectSupport
485
+ end
486
+
481
487
  class VmwareSourceDetails
482
488
  class Representation < Google::Apis::Core::JsonRepresentation; end
483
489
 
484
490
  include Google::Apis::Core::JsonObjectSupport
485
491
  end
486
492
 
493
+ class VmwareSourceVmDetails
494
+ class Representation < Google::Apis::Core::JsonRepresentation; end
495
+
496
+ include Google::Apis::Core::JsonObjectSupport
497
+ end
498
+
487
499
  class VmwareVmDetails
488
500
  class Representation < Google::Apis::Core::JsonRepresentation; end
489
501
 
@@ -587,7 +599,6 @@ module Google
587
599
  collection :disks, as: 'disks', class: Google::Apis::VmmigrationV1::AwsDiskDetails, decorator: Google::Apis::VmmigrationV1::AwsDiskDetails::Representation
588
600
 
589
601
  property :firmware, as: 'firmware'
590
- collection :vm_capabilities, as: 'vmCapabilities'
591
602
  end
592
603
  end
593
604
 
@@ -1059,6 +1070,8 @@ module Google
1059
1070
  property :state, as: 'state'
1060
1071
  property :state_time, as: 'stateTime'
1061
1072
  property :update_time, as: 'updateTime'
1073
+ property :vmware_source_vm_details, as: 'vmwareSourceVmDetails', class: Google::Apis::VmmigrationV1::VmwareSourceVmDetails, decorator: Google::Apis::VmmigrationV1::VmwareSourceVmDetails::Representation
1074
+
1062
1075
  end
1063
1076
  end
1064
1077
 
@@ -1344,6 +1357,15 @@ module Google
1344
1357
  end
1345
1358
  end
1346
1359
 
1360
+ class VmwareDiskDetails
1361
+ # @private
1362
+ class Representation < Google::Apis::Core::JsonRepresentation
1363
+ property :disk_number, as: 'diskNumber'
1364
+ property :label, as: 'label'
1365
+ property :size_gb, :numeric_string => true, as: 'sizeGb'
1366
+ end
1367
+ end
1368
+
1347
1369
  class VmwareSourceDetails
1348
1370
  # @private
1349
1371
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1355,6 +1377,16 @@ module Google
1355
1377
  end
1356
1378
  end
1357
1379
 
1380
+ class VmwareSourceVmDetails
1381
+ # @private
1382
+ class Representation < Google::Apis::Core::JsonRepresentation
1383
+ property :committed_storage_bytes, :numeric_string => true, as: 'committedStorageBytes'
1384
+ collection :disks, as: 'disks', class: Google::Apis::VmmigrationV1::VmwareDiskDetails, decorator: Google::Apis::VmmigrationV1::VmwareDiskDetails::Representation
1385
+
1386
+ property :firmware, as: 'firmware'
1387
+ end
1388
+ end
1389
+
1358
1390
  class VmwareVmDetails
1359
1391
  # @private
1360
1392
  class Representation < Google::Apis::Core::JsonRepresentation
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.35.0
4
+ version: 0.36.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-20 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_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-vmmigration_v1/v0.35.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-vmmigration_v1/v0.36.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: []
@@ -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 V1