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_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_version ⇒ String
vCenter version.
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.
4813 4814 4815 |
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 4813 def initialize(**args) update!(**args) end |
Instance Attribute Details
#esx_version ⇒ String
ESX version.
Corresponds to the JSON property esxVersion
4799 4800 4801 |
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 4799 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
4806 4807 4808 |
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 4806 def osid @osid end |
#vcenter_version ⇒ String
vCenter version.
Corresponds to the JSON property vcenterVersion
4811 4812 4813 |
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 4811 def vcenter_version @vcenter_version end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
4818 4819 4820 4821 4822 |
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 4818 def update!(**args) @esx_version = args[:esx_version] if args.key?(:esx_version) @osid = args[:osid] if args.key?(:osid) @vcenter_version = args[:vcenter_version] if args.key?(:vcenter_version) end |