Class: Google::Apis::MigrationcenterV1alpha1::VmwarePlatformDetails
- Inherits:
-
Object
- Object
- Google::Apis::MigrationcenterV1alpha1::VmwarePlatformDetails
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/migrationcenter_v1alpha1/classes.rb,
lib/google/apis/migrationcenter_v1alpha1/representations.rb,
lib/google/apis/migrationcenter_v1alpha1/representations.rb
Overview
VMware specific details.
Instance Attribute Summary collapse
-
#esx_hyperthreading ⇒ String
Whether the ESX is hyperthreaded.
-
#esx_version ⇒ String
ESX version.
-
#osid ⇒ String
VMware os enum - https://vdc-repo.vmware.com/vmwb-repository/dcr-public/ da47f910-60ac-438b-8b9b-6122f4d14524/16b7274a-bf8b-4b4c-a05e-746f2aa93c8c/doc/ vim.vm.GuestOsDescriptor.GuestOsIdentifier.html.
-
#vcenter_folder ⇒ String
Folder name in vCenter where asset resides.
-
#vcenter_uri ⇒ String
vCenter URI used in collection.
-
#vcenter_version ⇒ String
vCenter version.
-
#vcenter_vm_id ⇒ String
vCenter VM ID.
Instance Method Summary collapse
-
#initialize(**args) ⇒ VmwarePlatformDetails
constructor
A new instance of VmwarePlatformDetails.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ VmwarePlatformDetails
Returns a new instance of VmwarePlatformDetails.
9441 9442 9443 |
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 9441 def initialize(**args) update!(**args) end |
Instance Attribute Details
#esx_hyperthreading ⇒ String
Whether the ESX is hyperthreaded.
Corresponds to the JSON property esxHyperthreading
9407 9408 9409 |
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 9407 def esx_hyperthreading @esx_hyperthreading end |
#esx_version ⇒ String
ESX version.
Corresponds to the JSON property esxVersion
9412 9413 9414 |
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 9412 def esx_version @esx_version end |
#osid ⇒ String
VMware os enum - https://vdc-repo.vmware.com/vmwb-repository/dcr-public/
da47f910-60ac-438b-8b9b-6122f4d14524/16b7274a-bf8b-4b4c-a05e-746f2aa93c8c/doc/
vim.vm.GuestOsDescriptor.GuestOsIdentifier.html.
Corresponds to the JSON property osid
9419 9420 9421 |
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 9419 def osid @osid end |
#vcenter_folder ⇒ String
Folder name in vCenter where asset resides.
Corresponds to the JSON property vcenterFolder
9424 9425 9426 |
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 9424 def vcenter_folder @vcenter_folder end |
#vcenter_uri ⇒ String
vCenter URI used in collection.
Corresponds to the JSON property vcenterUri
9429 9430 9431 |
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 9429 def vcenter_uri @vcenter_uri end |
#vcenter_version ⇒ String
vCenter version.
Corresponds to the JSON property vcenterVersion
9434 9435 9436 |
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 9434 def vcenter_version @vcenter_version end |
#vcenter_vm_id ⇒ String
vCenter VM ID.
Corresponds to the JSON property vcenterVmId
9439 9440 9441 |
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 9439 def vcenter_vm_id @vcenter_vm_id end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
9446 9447 9448 9449 9450 9451 9452 9453 9454 |
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 9446 def update!(**args) @esx_hyperthreading = args[:esx_hyperthreading] if args.key?(:esx_hyperthreading) @esx_version = args[:esx_version] if args.key?(:esx_version) @osid = args[:osid] if args.key?(:osid) @vcenter_folder = args[:vcenter_folder] if args.key?(:vcenter_folder) @vcenter_uri = args[:vcenter_uri] if args.key?(:vcenter_uri) @vcenter_version = args[:vcenter_version] if args.key?(:vcenter_version) @vcenter_vm_id = args[:vcenter_vm_id] if args.key?(:vcenter_vm_id) end |