com.vmware.vcenter.vm.hardware package¶
Submodules¶
com.vmware.vcenter.vm.hardware.adapter_client module¶
The com.vmware.vcenter.vm.hardware.adapter_client module provides classes
for managing the configuration and state of the virtual adapters belonging to a
virtual machine. This includes methods for reading and manipulating the
conifguration of USB adapters and host bus adapters.
Note that classes for adapters with no configurable properties or runtime state, such as IDE and PCI adapters, are omitted.
-
class
com.vmware.vcenter.vm.hardware.adapter_client.Sata(config)¶ Bases:
vmware.vapi.bindings.stub.VapiInterfaceThe
Sataclass provides methods for configuring the virtual SATA adapters of a virtual machine.-
class
CreateSpec(type=None, bus=None, pci_slot_number=None)¶ Bases:
vmware.vapi.bindings.struct.VapiStructThe
Sata.CreateSpecclass provides a specification for the configuration of a newly-created virtual SATA adapter.Tip
The arguments are used to initialize data attributes with the same names.
-
class
Info(label=None, type=None, bus=None, pci_slot_number=None)¶ Bases:
vmware.vapi.bindings.struct.VapiStructThe
Sata.Infoclass contains information about a virtual SATA adapter.Tip
The arguments are used to initialize data attributes with the same names.
-
RESOURCE_TYPE= 'com.vmware.vcenter.vm.hardware.SataAdapter'¶ Resource type for the virtual SATA adapter device.
-
class
Summary(adapter=None)¶ Bases:
vmware.vapi.bindings.struct.VapiStructThe
Sata.Summaryclass contains commonly used information about a Virtual SATA adapter.Tip
The arguments are used to initialize data attributes with the same names.
-
class
Type(string)¶ Bases:
vmware.vapi.bindings.enum.EnumThe
Sata.Typeclass defines the valid emulation types for a virtual SATA adapter.Note
This class represents an enumerated type in the interface language definition. The class contains class attributes which represent the values in the current version of the enumerated type. Newer versions of the enumerated type may contain new values. To use new values of the enumerated type in communication with a server that supports the newer version of the API, you instantiate this class. See enumerated type description page.
-
AHCI= Type(string='AHCI')¶ AHCI host bus adapter.
-
-
create(vm, spec)¶ Adds a virtual SATA adapter to the virtual machine.
Parameters: - vm (
str) – Virtual machine identifier. The parameter must be an identifier for the resource type:VirtualMachine. - spec (
Sata.CreateSpec) – Specification for the new virtual SATA adapter.
Return type: strReturns: Virtual SATA adapter identifier. The return value will be an identifier for the resource type:
com.vmware.vcenter.vm.hardware.SataAdapter.Raise: com.vmware.vapi.std.errors_client.Errorif the system reports an error while responding to the request.Raise: com.vmware.vapi.std.errors_client.Errorif the system reported that the SATA adapter was created but was unable to confirm the creation because the identifier of the new adapter could not be determined.Raise: com.vmware.vapi.std.errors_client.NotAllowedInCurrentStateif the virtual machine is suspendedRaise: com.vmware.vapi.std.errors_client.NotFoundif the virtual machine is not found.Raise: com.vmware.vapi.std.errors_client.UnableToAllocateResourceif there are no more available SATA buses on the virtual machine.Raise: com.vmware.vapi.std.errors_client.ResourceInUseif the specified SATA bus or PCI address is in use.Raise: com.vmware.vapi.std.errors_client.InvalidArgumentif the specified SATA bus or PCI address is out of bounds.Raise: com.vmware.vapi.std.errors_client.ResourceBusyif the virtual machine is busy performing another operation.Raise: com.vmware.vapi.std.errors_client.ResourceInaccessibleif the virtual machine’s configuration state cannot be accessed.Raise: com.vmware.vapi.std.errors_client.ServiceUnavailableif the system is unable to communicate with a service to complete the request.Raise: com.vmware.vapi.std.errors_client.Unauthenticatedif the user can not be authenticated.Raise: com.vmware.vapi.std.errors_client.Unauthorizedif the user doesn’t have the required privileges.Raise: com.vmware.vapi.std.errors_client.Unsupportedif the guest operating system of the virtual machine is not supported and spec includes None attributes that default to guest-specific values.- vm (
-
delete(vm, adapter)¶ Removes a virtual SATA adapter from the virtual machine.
Parameters: - vm (
str) – Virtual machine identifier. The parameter must be an identifier for the resource type:VirtualMachine. - adapter (
str) – Virtual SATA adapter identifier. The parameter must be an identifier for the resource type:com.vmware.vcenter.vm.hardware.SataAdapter.
Raise: com.vmware.vapi.std.errors_client.Errorif the system reports an error while responding to the request.Raise: com.vmware.vapi.std.errors_client.NotAllowedInCurrentStateif the virtual machine is suspendedRaise: com.vmware.vapi.std.errors_client.NotFoundif the virtual machine or virtual SATA adapter is not found.Raise: com.vmware.vapi.std.errors_client.ResourceBusyif the virtual machine is busy performing another operation.Raise: com.vmware.vapi.std.errors_client.ResourceInaccessibleif the virtual machine’s configuration state cannot be accessed.Raise: com.vmware.vapi.std.errors_client.ServiceUnavailableif the system is unable to communicate with a service to complete the request.Raise: com.vmware.vapi.std.errors_client.Unauthenticatedif the user can not be authenticated.Raise: com.vmware.vapi.std.errors_client.Unauthorizedif the user doesn’t have the required privileges.- vm (
-
get(vm, adapter)¶ Returns information about a virtual SATA adapter.
Parameters: - vm (
str) – Virtual machine identifier. The parameter must be an identifier for the resource type:VirtualMachine. - adapter (
str) – Virtual SATA adapter identifier. The parameter must be an identifier for the resource type:com.vmware.vcenter.vm.hardware.SataAdapter.
Return type: Returns: Information about the specified virtual SATA adapter.
Raise: com.vmware.vapi.std.errors_client.Errorif the system reports an error while responding to the request.Raise: com.vmware.vapi.std.errors_client.NotFoundif the virtual machine or virtual SATA adapter is not found.Raise: com.vmware.vapi.std.errors_client.ResourceInaccessibleif the virtual machine’s configuration state cannot be accessed.Raise: com.vmware.vapi.std.errors_client.ServiceUnavailableif the system is unable to communicate with a service to complete the request.Raise: com.vmware.vapi.std.errors_client.Unauthenticatedif the user can not be authenticated.Raise: com.vmware.vapi.std.errors_client.Unauthorizedif the user doesn’t have the required privileges.- vm (
-
list(vm)¶ Returns commonly used information about the virtual SATA adapters belonging to the virtual machine.
Parameters: vm ( str) – Virtual machine identifier. The parameter must be an identifier for the resource type:VirtualMachine.Return type: listofSata.SummaryReturns: List of commonly used information about virtual SATA adapters. Raise: com.vmware.vapi.std.errors_client.Errorif the system reports an error while responding to the request.Raise: com.vmware.vapi.std.errors_client.NotFoundif the virtual machine is not found.Raise: com.vmware.vapi.std.errors_client.ResourceInaccessibleif the virtual machine’s configuration state cannot be accessed.Raise: com.vmware.vapi.std.errors_client.ServiceUnavailableif the system is unable to communicate with a service to complete the request.Raise: com.vmware.vapi.std.errors_client.Unauthenticatedif the user can not be authenticated.Raise: com.vmware.vapi.std.errors_client.Unauthorizedif the user doesn’t have the required privileges.
-
class
-
class
com.vmware.vcenter.vm.hardware.adapter_client.Scsi(config)¶ Bases:
vmware.vapi.bindings.stub.VapiInterfaceThe
Scsiclass provides methods for configuring the virtual SCSI adapters of a virtual machine.-
class
CreateSpec(type=None, bus=None, pci_slot_number=None, sharing=None)¶ Bases:
vmware.vapi.bindings.struct.VapiStructThe
Scsi.CreateSpecclass provides a specification for the configuration of a newly-created virtual SCSI adapter.Tip
The arguments are used to initialize data attributes with the same names.
-
class
Info(label=None, type=None, scsi=None, pci_slot_number=None, sharing=None)¶ Bases:
vmware.vapi.bindings.struct.VapiStructThe
Scsi.Infoclass contains information about a virtual SCSI adapter.Tip
The arguments are used to initialize data attributes with the same names.
-
RESOURCE_TYPE= 'com.vmware.vcenter.vm.hardware.ScsiAdapter'¶ Resource type for the virtual SCSI adapter device.
-
class
Sharing(string)¶ Bases:
vmware.vapi.bindings.enum.EnumThe
Scsi.Sharingclass defines the valid bus sharing modes for a virtual SCSI adapter.Note
This class represents an enumerated type in the interface language definition. The class contains class attributes which represent the values in the current version of the enumerated type. Newer versions of the enumerated type may contain new values. To use new values of the enumerated type in communication with a server that supports the newer version of the API, you instantiate this class. See enumerated type description page.
-
NONE= Sharing(string='NONE')¶ The virtual SCSI bus is not shared.
-
PHYSICAL= Sharing(string='PHYSICAL')¶ The virtual SCSI bus is shared between two or more virtual machines residing on different physical hosts.
-
VIRTUAL= Sharing(string='VIRTUAL')¶ The virtual SCSI bus is shared between two or more virtual machines. In this case, no physical machine is involved.
-
-
class
Summary(adapter=None)¶ Bases:
vmware.vapi.bindings.struct.VapiStructThe
Scsi.Summaryclass contains commonly used information about a Virtual SCSI adapter.Tip
The arguments are used to initialize data attributes with the same names.
-
class
Type(string)¶ Bases:
vmware.vapi.bindings.enum.EnumThe
Scsi.Typeclass defines the valid emulation types for a virtual SCSI adapter.Note
This class represents an enumerated type in the interface language definition. The class contains class attributes which represent the values in the current version of the enumerated type. Newer versions of the enumerated type may contain new values. To use new values of the enumerated type in communication with a server that supports the newer version of the API, you instantiate this class. See enumerated type description page.
-
BUSLOGIC= Type(string='BUSLOGIC')¶ BusLogic host bus adapter.
-
LSILOGIC= Type(string='LSILOGIC')¶ LSI Logic host bus adapter.
-
LSILOGICSAS= Type(string='LSILOGICSAS')¶ LSI Logic SAS 1068 host bus adapter.
-
PVSCSI= Type(string='PVSCSI')¶ Paravirtualized host bus adapter.
-
-
class
UpdateSpec(sharing=None)¶ Bases:
vmware.vapi.bindings.struct.VapiStructThe
Scsi.UpdateSpecclass describes the updates to be made to the configuration of a virtual SCSI adapter.Tip
The arguments are used to initialize data attributes with the same names.
-
create(vm, spec)¶ Adds a virtual SCSI adapter to the virtual machine.
Parameters: - vm (
str) – Virtual machine identifier. The parameter must be an identifier for the resource type:VirtualMachine. - spec (
Scsi.CreateSpec) – Specification for the new virtual SCSI adapter.
Return type: strReturns: Virtual SCSI adapter identifier. The return value will be an identifier for the resource type:
com.vmware.vcenter.vm.hardware.ScsiAdapter.Raise: com.vmware.vapi.std.errors_client.Errorif the system reported that the SCSI adapter was created but was unable to confirm the creation because the identifier of the new adapter could not be determined.Raise: com.vmware.vapi.std.errors_client.Errorif the system reports an error while responding to the request.Raise: com.vmware.vapi.std.errors_client.NotAllowedInCurrentStateif the virtual machine is suspendedRaise: com.vmware.vapi.std.errors_client.NotFoundif the virtual machine is not found.Raise: com.vmware.vapi.std.errors_client.UnableToAllocateResourceif there are no more available SCSI buses on the virtual machine.Raise: com.vmware.vapi.std.errors_client.ResourceInUseif the specified SCSI bus is in use.Raise: com.vmware.vapi.std.errors_client.InvalidArgumentif the specified SATA bus or PCI address is out of bounds.Raise: com.vmware.vapi.std.errors_client.ResourceBusyif the virtual machine is busy performing another operation.Raise: com.vmware.vapi.std.errors_client.ResourceInaccessibleif the virtual machine’s configuration state cannot be accessed.Raise: com.vmware.vapi.std.errors_client.ServiceUnavailableif the system is unable to communicate with a service to complete the request.Raise: com.vmware.vapi.std.errors_client.Unauthenticatedif the user can not be authenticated.Raise: com.vmware.vapi.std.errors_client.Unauthorizedif the user doesn’t have the required privileges.Raise: com.vmware.vapi.std.errors_client.Unsupportedif the guest operating system of the virtual machine is not supported and spec includes None attributes that default to guest-specific values.- vm (
-
delete(vm, adapter)¶ Removes a virtual SCSI adapter from the virtual machine.
Parameters: - vm (
str) – Virtual machine identifier. The parameter must be an identifier for the resource type:VirtualMachine. - adapter (
str) – Virtual SCSI adapter identifier. The parameter must be an identifier for the resource type:com.vmware.vcenter.vm.hardware.ScsiAdapter.
Raise: com.vmware.vapi.std.errors_client.Errorif the system reports an error while responding to the request.Raise: com.vmware.vapi.std.errors_client.NotAllowedInCurrentStateif the virtual machine is suspendedRaise: com.vmware.vapi.std.errors_client.NotFoundif the virtual machine or virtual SCSI adapter is not found.Raise: com.vmware.vapi.std.errors_client.ResourceBusyif the virtual machine is busy performing another operation.Raise: com.vmware.vapi.std.errors_client.ResourceInaccessibleif the virtual machine’s configuration state cannot be accessed.Raise: com.vmware.vapi.std.errors_client.ServiceUnavailableif the system is unable to communicate with a service to complete the request.Raise: com.vmware.vapi.std.errors_client.Unauthenticatedif the user can not be authenticated.Raise: com.vmware.vapi.std.errors_client.Unauthorizedif the user doesn’t have the required privileges.- vm (
-
get(vm, adapter)¶ Returns information about a virtual SCSI adapter.
Parameters: - vm (
str) – Virtual machine identifier. The parameter must be an identifier for the resource type:VirtualMachine. - adapter (
str) – Virtual SCSI adapter identifier. The parameter must be an identifier for the resource type:com.vmware.vcenter.vm.hardware.ScsiAdapter.
Return type: Returns: Information about the specified virtual SCSI adapter.
Raise: com.vmware.vapi.std.errors_client.Errorif the system reports an error while responding to the request.Raise: com.vmware.vapi.std.errors_client.NotFoundif the virtual machine or virtual SCSI adapter is not found.Raise: com.vmware.vapi.std.errors_client.ResourceInaccessibleif the virtual machine’s configuration state cannot be accessed.Raise: com.vmware.vapi.std.errors_client.ServiceUnavailableif the system is unable to communicate with a service to complete the request.Raise: com.vmware.vapi.std.errors_client.Unauthenticatedif the user can not be authenticated.Raise: com.vmware.vapi.std.errors_client.Unauthorizedif the user doesn’t have the required privileges.- vm (
-
list(vm)¶ Returns commonly used information about the virtual SCSI adapters belonging to the virtual machine.
Parameters: vm ( str) – Virtual machine identifier. The parameter must be an identifier for the resource type:VirtualMachine.Return type: listofScsi.SummaryReturns: List of commonly used information about virtual SCSI adapters. Raise: com.vmware.vapi.std.errors_client.Errorif the system reports an error while responding to the request.Raise: com.vmware.vapi.std.errors_client.NotFoundif the virtual machine is not found.Raise: com.vmware.vapi.std.errors_client.ResourceInaccessibleif the virtual machine’s configuration state cannot be accessed.Raise: com.vmware.vapi.std.errors_client.ServiceUnavailableif the system is unable to communicate with a service to complete the request.Raise: com.vmware.vapi.std.errors_client.Unauthenticatedif the user can not be authenticated.Raise: com.vmware.vapi.std.errors_client.Unauthorizedif the user doesn’t have the required privileges.
-
update(vm, adapter, spec)¶ Updates the configuration of a virtual SCSI adapter.
Parameters: - vm (
str) – Virtual machine identifier. The parameter must be an identifier for the resource type:VirtualMachine. - adapter (
str) – Virtual SCSI adapter identifier. The parameter must be an identifier for the resource type:com.vmware.vcenter.vm.hardware.ScsiAdapter. - spec (
Scsi.UpdateSpec) – Specification for updating the virtual SCSI adapter.
Raise: com.vmware.vapi.std.errors_client.Errorif the system reports an error while responding to the request.Raise: com.vmware.vapi.std.errors_client.NotFoundif the virtual machine or virtual SCSI adapter is not found.Raise: com.vmware.vapi.std.errors_client.NotAllowedInCurrentStateif one or more of the attributes specified in thespecparameter cannot be modified due to the current power state of the virtual machine or the connection state of the virtual SCSI adapter.Raise: com.vmware.vapi.std.errors_client.ResourceBusyif the virtual machine is busy performing another operation.Raise: com.vmware.vapi.std.errors_client.ResourceInaccessibleif the virtual machine’s configuration state cannot be accessed.Raise: com.vmware.vapi.std.errors_client.ServiceUnavailableif the system is unable to communicate with a service to complete the request.Raise: com.vmware.vapi.std.errors_client.Unauthenticatedif the user can not be authenticated.Raise: com.vmware.vapi.std.errors_client.Unauthorizedif the user doesn’t have the required privileges.- vm (
-
class
-
class
com.vmware.vcenter.vm.hardware.adapter_client.StubFactory(stub_config)¶ Bases:
vmware.vapi.bindings.stub.StubFactoryBase
com.vmware.vcenter.vm.hardware.boot_client module¶
The com.vmware.vcenter.vm.hardware.boot_client module provides classes for
managing the virtual devices used to boot a virtual machine.
-
class
com.vmware.vcenter.vm.hardware.boot_client.Device(config)¶ Bases:
vmware.vapi.bindings.stub.VapiInterfaceThe
Deviceclass provides methods for configuring the device order used when booting a virtual machine.The boot order may be specified using a mixture of device classes and device instances, chosen from among the following:
Device.Type.CDROM: Boot from a virtual CD-ROM drive; the device instance(s) will be chosen by the BIOS subsystem.Device.Type.FLOPPY: Boot from a virtual floppy drive; the device instance(s) will be chosen by the BIOS subsystem.Device.Type.DISK: Boot from a virtual disk device; the device instance is specified explicitly inDevice.Entry.diskslist, and multiple instances may be specified in the list.Device.Type.ETHERNET: Boot from a virtual Ethernet adapter; the device instance is specified explicitly asDevice.Entry.nic, and multiple adapters may be specified in the boot order list.
-
class
Entry(type=None, nic=None, disks=None)¶ Bases:
vmware.vapi.bindings.struct.VapiStructThe
Device.Entryclass specifies a bootable virtual device class or specific bootable virtual device(s).Tip
The arguments are used to initialize data attributes with the same names.
-
class
EntryCreateSpec(type=None)¶ Bases:
vmware.vapi.bindings.struct.VapiStructThe class
Device.EntryCreateSpecspecifies a list of bootable virtual device classes. When a VM is being created and alistofDevice.EntryCreateSpecis specified, the boot order of the specific device instances are not specified in this class. The boot order of the specific device instance will be the order in which the Ethernet and Disk devices appear in thenicsanddisksrespectively.Tip
The arguments are used to initialize data attributes with the same names.
-
class
Type(string)¶ Bases:
vmware.vapi.bindings.enum.EnumThe
Device.Typeclass defines the valid device types that may be used as bootable devices.Note
This class represents an enumerated type in the interface language definition. The class contains class attributes which represent the values in the current version of the enumerated type. Newer versions of the enumerated type may contain new values. To use new values of the enumerated type in communication with a server that supports the newer version of the API, you instantiate this class. See enumerated type description page.
-
CDROM= Type(string='CDROM')¶ Virtual CD-ROM device.
-
DISK= Type(string='DISK')¶ Virtual disk device.
-
ETHERNET= Type(string='ETHERNET')¶ Virtual Ethernet adapter.
-
FLOPPY= Type(string='FLOPPY')¶ Virtual floppy drive.
-
-
get(vm)¶ Returns an ordered list of boot devices for the virtual machine. If the
listis empty, the virtual machine uses a default boot sequence.Parameters: vm ( str) – Virtual machine identifier. The parameter must be an identifier for the resource type:VirtualMachine.Return type: listofDevice.EntryReturns: Ordered list of configured boot devices. Raise: com.vmware.vapi.std.errors_client.Errorif the system reports an error while responding to the request.Raise: com.vmware.vapi.std.errors_client.NotFoundif the virtual machine is not found.Raise: com.vmware.vapi.std.errors_client.ResourceInaccessibleif the virtual machine’s configuration state cannot be accessed.Raise: com.vmware.vapi.std.errors_client.ServiceUnavailableif the system is unable to communicate with a service to complete the request.Raise: com.vmware.vapi.std.errors_client.Unauthenticatedif the user can not be authenticated.Raise: com.vmware.vapi.std.errors_client.Unauthorizedif the user doesn’t have the required privileges.
-
set(vm, devices)¶ Sets the virtual devices that will be used to boot the virtual machine. The virtual machine will check the devices in order, attempting to boot from each, until the virtual machine boots successfully. If the
listis empty, the virtual machine will use a default boot sequence. There should be no more than one instance ofDevice.Entryfor a given device type exceptDevice.Type.ETHERNETin thelist.Parameters: - vm (
str) – Virtual machine identifier. The parameter must be an identifier for the resource type:VirtualMachine. - devices (
listofDevice.Entry) – Ordered list of boot devices.
Raise: com.vmware.vapi.std.errors_client.Errorif the system reports an error while responding to the request.Raise: com.vmware.vapi.std.errors_client.NotFoundif the virtual machine is not found, or if any of the specified virtual devices is not found.Raise: com.vmware.vapi.std.errors_client.InvalidArgumentif a any of the CDROM, DISK, ETHERNET, FLOPPY values appears in more than oneDevice.Entrywith the exception ofDevice.Type.ETHERNET, which may appear multiple times if the virtual machine has been configured with multiple Ethernet adapters.Raise: com.vmware.vapi.std.errors_client.ResourceBusyif the virtual machine is busy performing another operation.Raise: com.vmware.vapi.std.errors_client.ResourceInaccessibleif the virtual machine’s configuration state cannot be accessed.Raise: com.vmware.vapi.std.errors_client.ServiceUnavailableif the system is unable to communicate with a service to complete the request.Raise: com.vmware.vapi.std.errors_client.Unauthenticatedif the user can not be authenticated.Raise: com.vmware.vapi.std.errors_client.Unauthorizedif the user doesn’t have the required privileges.- vm (
-
class
com.vmware.vcenter.vm.hardware.boot_client.StubFactory(stub_config)¶ Bases:
vmware.vapi.bindings.stub.StubFactoryBase