Class: Google::Apis::MigrationcenterV1::VmwarePlatformDetails

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/migrationcenter_v1/classes.rb,
lib/google/apis/migrationcenter_v1/representations.rb,
lib/google/apis/migrationcenter_v1/representations.rb

Overview

VMware specific details.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ VmwarePlatformDetails

Returns a new instance of VmwarePlatformDetails.



6793
6794
6795
# File 'lib/google/apis/migrationcenter_v1/classes.rb', line 6793

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#esx_hyperthreadingString

Whether the ESX is hyperthreaded. Corresponds to the JSON property esxHyperthreading

Returns:

  • (String)


6759
6760
6761
# File 'lib/google/apis/migrationcenter_v1/classes.rb', line 6759

def esx_hyperthreading
  @esx_hyperthreading
end

#esx_versionString

ESX version. Corresponds to the JSON property esxVersion

Returns:

  • (String)


6764
6765
6766
# File 'lib/google/apis/migrationcenter_v1/classes.rb', line 6764

def esx_version
  @esx_version
end

#osidString

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

Returns:

  • (String)


6771
6772
6773
# File 'lib/google/apis/migrationcenter_v1/classes.rb', line 6771

def osid
  @osid
end

#vcenter_folderString

Folder name in vCenter where asset resides. Corresponds to the JSON property vcenterFolder

Returns:

  • (String)


6776
6777
6778
# File 'lib/google/apis/migrationcenter_v1/classes.rb', line 6776

def vcenter_folder
  @vcenter_folder
end

#vcenter_uriString

vCenter URI used in collection. Corresponds to the JSON property vcenterUri

Returns:

  • (String)


6781
6782
6783
# File 'lib/google/apis/migrationcenter_v1/classes.rb', line 6781

def vcenter_uri
  @vcenter_uri
end

#vcenter_versionString

vCenter version. Corresponds to the JSON property vcenterVersion

Returns:

  • (String)


6786
6787
6788
# File 'lib/google/apis/migrationcenter_v1/classes.rb', line 6786

def vcenter_version
  @vcenter_version
end

#vcenter_vm_idString

vCenter VM ID. Corresponds to the JSON property vcenterVmId

Returns:

  • (String)


6791
6792
6793
# File 'lib/google/apis/migrationcenter_v1/classes.rb', line 6791

def vcenter_vm_id
  @vcenter_vm_id
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



6798
6799
6800
6801
6802
6803
6804
6805
6806
# File 'lib/google/apis/migrationcenter_v1/classes.rb', line 6798

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