com.vmware.esx.settings package¶
Subpackages¶
- com.vmware.esx.settings.clusters package
- Subpackages
- com.vmware.esx.settings.clusters.policies package
- com.vmware.esx.settings.clusters.software package
- Subpackages
- Submodules
- com.vmware.esx.settings.clusters.software.drafts_client module
- com.vmware.esx.settings.clusters.software.reports_client module
- Submodules
- com.vmware.esx.settings.clusters.configuration_client module
- com.vmware.esx.settings.clusters.enablement_client module
- com.vmware.esx.settings.clusters.policies_client module
- com.vmware.esx.settings.clusters.software_client module
- Subpackages
- com.vmware.esx.settings.defaults package
- com.vmware.esx.settings.depot_content package
- com.vmware.esx.settings.depots package
- com.vmware.esx.settings.hardware_support package
Submodules¶
com.vmware.esx.settings.clusters_client module¶
The com.vmware.esx.settings.clusters_client
module provides classes to
manage desired state configuration and software for a cluster of ESX hosts.
-
class
com.vmware.esx.settings.clusters_client.
DepotOverrides
(config)¶ Bases:
vmware.vapi.bindings.stub.VapiInterface
The
DepotOverrides
class provides methods to manage software depots overriden for a given cluster. In general ESX servers reach out to vCenter (VUM) to fetch the metadata and payloads required for lifecycle operations. But in ROBO environments ESX clusters can’t (or because of bandwidth requirements shouldn’t) reach out to vCenter to fetch payloads and metadata. This class allows setting cluster level overrides for depots. If any depots are provided for a cluster, then vCenter level depots are not used for that cluster’s remediation. These are not synced periodically at vCenter and are only used by ESXs for lifecycle operations.- Parameters
config (
vmware.vapi.bindings.stub.StubConfiguration
) – Configuration to be used for creating the stub.
-
class
Depot
(location=None)¶ Bases:
vmware.vapi.bindings.struct.VapiStruct
The
DepotOverrides.Depot
class defines the information regarding a particular depot override for a given cluster.Tip
The arguments are used to initialize data attributes with the same names.
- Parameters
location (
str
) – Location of the depot override. This could be a location of zip file or location to an index.xml file.
-
class
Info
(depots=None)¶ Bases:
vmware.vapi.bindings.struct.VapiStruct
The
DepotOverrides.Info
class defines the information regarding depot overrides for a given cluster.Tip
The arguments are used to initialize data attributes with the same names.
- Parameters
depots (
list
ofDepotOverrides.Depot
) – List of the depot overrides.
-
add
(cluster, depot)¶ Adds a new depot override to the list of currently configured depot overrides for a given cluster.
- Parameters
cluster (
str
) – Identifier for the cluster. The parameter must be an identifier for the resource type:ClusterComputeResource
.depot (
DepotOverrides.Depot
) – Information of a depot override.
- Raise
com.vmware.vapi.std.errors_client.Unauthenticated
if the caller is not authenticated.- Raise
com.vmware.vapi.std.errors_client.InvalidArgument
If an invalid location is provided.- Raise
com.vmware.vapi.std.errors_client.NotFound
If there is no cluster associated withcluster
in the system.- Raise
com.vmware.vapi.std.errors_client.AlreadyExists
if depot override with given information already exists.- Raise
com.vmware.vapi.std.errors_client.Error
If there is some unknown internal error. The accompanying error message will give more details about the failure.- Raise
com.vmware.vapi.std.errors_client.ServiceUnavailable
If the service is not available.- Raise
com.vmware.vapi.std.errors_client.Unauthorized
if you do not have all of the privileges described as follows:Method execution requires
VcIntegrity.lifecycleSettings.Write
.The resource
ClusterComputeResource
referenced by the parametercluster
requiresVcIntegrity.lifecycleSettings.Write
.
-
get
(cluster)¶ Returns the information about currently configured depot overrides for a given cluster.
- Parameters
cluster (
str
) – Identifier for the cluster. The parameter must be an identifier for the resource type:ClusterComputeResource
.- Return type
- Returns
Information about currently configured depot overrides for a given cluster.
- Raise
com.vmware.vapi.std.errors_client.Unauthenticated
if the caller is not authenticated.- Raise
com.vmware.vapi.std.errors_client.NotFound
If there is no cluster associated withcluster
in the system.- Raise
com.vmware.vapi.std.errors_client.ServiceUnavailable
If the service is not available.- Raise
com.vmware.vapi.std.errors_client.Error
If there is some unknown internal error. The accompanying error message will give more details about the failure.- Raise
com.vmware.vapi.std.errors_client.Unauthorized
if you do not have all of the privileges described as follows:Method execution requires
VcIntegrity.lifecycleSettings.Read
.The resource
ClusterComputeResource
referenced by the parametercluster
requiresVcIntegrity.lifecycleSettings.Read
.
-
remove
(cluster, depot)¶ Removes a depot override from the list of currently configured depot overrides for a given cluster.
- Parameters
cluster (
str
) – Identifier for the cluster. The parameter must be an identifier for the resource type:ClusterComputeResource
.depot (
DepotOverrides.Depot
) – Information of the depot override to be removed.
- Raise
com.vmware.vapi.std.errors_client.Unauthenticated
if the caller is not authenticated.- Raise
com.vmware.vapi.std.errors_client.NotFound
If there is no depot override with given information or no cluster associated with identifier {param.name cluster} in the system.- Raise
com.vmware.vapi.std.errors_client.Error
If there is some unknown internal error. The accompanying error message will give more details about the failure.- Raise
com.vmware.vapi.std.errors_client.ServiceUnavailable
If the service is not available.- Raise
com.vmware.vapi.std.errors_client.Unauthorized
if you do not have all of the privileges described as follows:Method execution requires
VcIntegrity.lifecycleSettings.Write
.The resource
ClusterComputeResource
referenced by the parametercluster
requiresVcIntegrity.lifecycleSettings.Write
.
-
class
com.vmware.esx.settings.clusters_client.
Software
(config)¶ Bases:
vmware.vapi.bindings.stub.VapiInterface
The
Software
class provides methods to manage desired software specification of an ESX cluster.- Parameters
config (
vmware.vapi.bindings.stub.StubConfiguration
) – Configuration to be used for creating the stub.
-
class
ApplyResult
(status=None, commit=None, host_info=None, host_status=None, successful_hosts=None, failed_hosts=None, skipped_hosts=None, notifications=None)¶ Bases:
vmware.vapi.bindings.struct.VapiStruct
The
Software.ApplyResult
class contains attributes that describe the result of anSoftware.apply()
method.Tip
The arguments are used to initialize data attributes with the same names.
- Parameters
status (
Software.ApplyStatus
orNone
) – Specifies the aggregated status of theSoftware.apply()
method. None if theSoftware.apply()
method is in progress.commit (
str
) – The identifier of the commit used to fetch the desired software document to be applied to all hosts within the cluster. When clients pass a value of this class as a parameter, the attribute must be an identifier for the resource type:com.vmware.esx.settings.commit
. When methods return a value of this class as a return value, the attribute will be an identifier for the resource type:com.vmware.esx.settings.commit
.host_info (
dict
ofstr
andcom.vmware.esx.settings_client.HostInfo
) – Information of the hosts in this cluster to which the desired software document specified by theSoftware.ApplyResult.commit
should be applied to. When clients pass a value of this class as a parameter, the key in the attributedict
must be an identifier for the resource type:HostSystem
. When methods return a value of this class as a return value, the key in the attributedict
will be an identifier for the resource type:HostSystem
.host_status (
dict
ofstr
andSoftware.ApplyStatus
) – Status of the hosts in this cluster to which the desired software document specified by theSoftware.ApplyResult.commit
was applied to. Hosts on which theSoftware.apply()
method was successful are specified bySoftware.ApplyResult.successful_hosts
. Hosts on which the apply method failed are specified bySoftware.ApplyResult.failed_hosts
. Hosts which were skipped by theSoftware.apply()
method are specified bySoftware.ApplyResult.skipped_hosts
. When clients pass a value of this class as a parameter, the key in the attributedict
must be an identifier for the resource type:HostSystem
. When methods return a value of this class as a return value, the key in the attributedict
will be an identifier for the resource type:HostSystem
.successful_hosts (
set
ofstr
) – Hosts in this cluster to which the desired software document specified by theSoftware.ApplyResult.commit
has been successfully applied to. When clients pass a value of this class as a parameter, the attribute must contain identifiers for the resource type:HostSystem
. When methods return a value of this class as a return value, the attribute will contain identifiers for the resource type:HostSystem
.failed_hosts (
set
ofstr
) – Hosts in this cluster to which the desired software document specified by theSoftware.ApplyResult.commit
failed to be applied to. When clients pass a value of this class as a parameter, the attribute must contain identifiers for the resource type:HostSystem
. When methods return a value of this class as a return value, the attribute will contain identifiers for the resource type:HostSystem
.skipped_hosts (
set
ofstr
) – Hosts in this cluster that were skipped by theSoftware.apply()
method. When clients pass a value of this class as a parameter, the attribute must contain identifiers for the resource type:HostSystem
. When methods return a value of this class as a return value, the attribute will contain identifiers for the resource type:HostSystem
.notifications (
com.vmware.esx.settings_client.Notifications
orNone
) – Notifications providing additional information forSoftware.apply()
method. These notifications are mutually exclusive with the notifications inSoftware.ApplyStatus
. This attribute was added in vSphere API 7.0.2.1. This attribute is optional because it was added in a newer version than its parent node.
-
class
ApplySpec
(commit=None, hosts=None, accept_eula=None)¶ Bases:
vmware.vapi.bindings.struct.VapiStruct
The
Software.ApplySpec
class contains attributes that describe the specification to be used for applying the desired software document to a cluster.Tip
The arguments are used to initialize data attributes with the same names.
- Parameters
commit (
str
orNone
) – The minimum commit identifier of the desired software document to be used during theSoftware.apply()
method. When clients pass a value of this class as a parameter, the attribute must be an identifier for the resource type:com.vmware.esx.settings.commit
. When methods return a value of this class as a return value, the attribute will be an identifier for the resource type:com.vmware.esx.settings.commit
. if None or empty the apply method will use the latest commit to fetch the desired state document.hosts (
set
ofstr
orNone
) – The specific hosts within the cluster to be considered during theSoftware.apply()
method. When clients pass a value of this class as a parameter, the attribute must contain identifiers for the resource type:HostSystem
. When methods return a value of this class as a return value, the attribute will contain identifiers for the resource type:HostSystem
. if None or empty theSoftware.apply()
method will remediate all hosts within the cluster.accept_eula (
bool
orNone
) – Accept the VMware End User License Agreement (EULA) before starting theSoftware.apply()
method. The VMware EULA is available for download at, https://www.vmware.com/download/eula.html if None theSoftware.apply()
method could fail due to the EULA not being accepted.
-
class
ApplyStatus
(status=None, progress=None, start_time=None, end_time=None, notifications=None)¶ Bases:
vmware.vapi.bindings.struct.VapiStruct
The
Software.ApplyStatus
class contains attributes that describe the status of anSoftware.apply()
method.Tip
The arguments are used to initialize data attributes with the same names.
- Parameters
status (
Software.ApplyStatus.Status
) – The status of the method.progress (
com.vmware.cis.task_client.Progress
orNone
) – Progress of the operation. This attribute was added in vSphere API 7.0.2.1. None for cluster ApplyStatusstart_time (
datetime.datetime
) – Time when the method started.end_time (
datetime.datetime
) – Time when the method completed.notifications (
com.vmware.esx.settings_client.Notifications
) – Notifications providing additional information about the status of the method.
-
class
Status
(string)¶ Bases:
vmware.vapi.bindings.enum.Enum
The
Software.ApplyStatus.Status
class contains the possible different status codes that can be returned while trying toSoftware.apply()
the desired software specification to hosts within the cluster.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.
- Parameters
string (
str
) – String value for theStatus
instance.
-
ERROR
= Status(string='ERROR')¶ The method encountered an unspecified error.
-
OK
= Status(string='OK')¶ The method completed successfully.
-
RETRY_PENDING
= Status(string='RETRY_PENDING')¶ The method is being scheduled for retry. This class attribute was added in vSphere API 7.0.2.1.
-
RUNNING
= Status(string='RUNNING')¶ The method is in progress. This class attribute was added in vSphere API 7.0.1.0.
-
SKIPPED
= Status(string='SKIPPED')¶ The method was skipped.
-
TIMED_OUT
= Status(string='TIMED_OUT')¶ The method timed out.
-
class
CheckInfo
(check=None, name=None, description=None, originator=None)¶ Bases:
vmware.vapi.bindings.struct.VapiStruct
The
Software.CheckInfo
class contains attributes that describe a particular check.Tip
The arguments are used to initialize data attributes with the same names.
- Parameters
check (
str
) – The check identifier.name (
com.vmware.vapi.std_client.LocalizableMessage
) – The check name.description (
com.vmware.vapi.std_client.LocalizableMessage
) – Human-readable check description.originator (
str
orNone
) – The service that performed the check. This attribute was added in vSphere API 7.0.2.0. Onlyset
if there is an originator available for this check.
-
class
CheckIssue
(description=None, resolution=None)¶ Bases:
vmware.vapi.bindings.struct.VapiStruct
Tip
The arguments are used to initialize data attributes with the same names.
- Parameters
description (
com.vmware.vapi.std_client.LocalizableMessage
) – Description of what was the issue containing as much user-relevant context as possible. The user should be able to understand which sub-system failed and why. This attribute was added in vSphere API 7.0.2.0.resolution (
com.vmware.vapi.std_client.LocalizableMessage
orNone
) – Possible resolution for the issue. This should contain actionable information that the user can use to resolve the issue. This attribute was added in vSphere API 7.0.2.0. Can be left None if no meaningful resolution exists.
-
class
CheckResult
(status=None, start_time=None, end_time=None, commit=None, host_info=None, entity_results=None)¶ Bases:
vmware.vapi.bindings.struct.VapiStruct
The
Software.CheckResult
class contains attributes that describe aggregated status of all checks performed.Tip
The arguments are used to initialize data attributes with the same names.
- Parameters
status (
Software.Status
) – Aggregated status from all checks performed.start_time (
datetime.datetime
) – Time when the operation started.end_time (
datetime.datetime
) – Time when the operation completed.commit (
str
) – The identifier of the commit on which checks have been run. When clients pass a value of this class as a parameter, the attribute must be an identifier for the resource type:com.vmware.esx.settings.commit
. When methods return a value of this class as a return value, the attribute will be an identifier for the resource type:com.vmware.esx.settings.commit
.host_info (
dict
ofstr
andcom.vmware.esx.settings_client.HostInfo
) – Information about the hosts in this cluster for which checks have been requested to be run. When clients pass a value of this class as a parameter, the key in the attributedict
must be an identifier for the resource type:HostSystem
. When methods return a value of this class as a return value, the key in the attributedict
will be an identifier for the resource type:HostSystem
.entity_results (
list
ofSoftware.EntityCheckResult
) – List ofSoftware.EntityCheckResult
for all entities for which checks have been run.
-
class
CheckSpec
(commit=None, hosts=None)¶ Bases:
vmware.vapi.bindings.struct.VapiStruct
The
Software.CheckSpec
class contains attributes that describe the specification to be used for running checks on the cluster before theSoftware.apply()
method.Tip
The arguments are used to initialize data attributes with the same names.
- Parameters
commit (
str
orNone
) – The minimum commit identifier of the desired software document to be used during the check method. When clients pass a value of this class as a parameter, the attribute must be an identifier for the resource type:com.vmware.esx.settings.commit
. When methods return a value of this class as a return value, the attribute will be an identifier for the resource type:com.vmware.esx.settings.commit
. if None or empty the check opertion will use the latest commit to fetch the desired state document.hosts (
set
ofstr
orNone
) – The specific hosts for which checks need to be performed When clients pass a value of this class as a parameter, the attribute must contain identifiers for the resource type:HostSystem
. When methods return a value of this class as a return value, the attribute will contain identifiers for the resource type:HostSystem
. if None or empty checks are run for all hosts within the cluster.
-
class
CheckStatus
(check=None, status=None, issues=None, check_issues=None)¶ Bases:
vmware.vapi.bindings.struct.VapiStruct
The
Software.CheckStatus
class contains attributes that describe a check result.Tip
The arguments are used to initialize data attributes with the same names.
- Parameters
check (
Software.CheckInfo
) – Information about this check.status (
Software.Status
) – The status of this check.issues (
list
ofcom.vmware.vapi.std_client.LocalizableMessage
) – The issues encountered while running this check.check_issues (
list
ofSoftware.CheckIssue
orNone
) – List ofSoftware.CheckIssue`s that the check reported. This attribute was added in vSphere API 7.0.2.0. If not :class:`set
, the service is still using the {#member issues}.
-
class
EntityCheckResult
(type=None, cluster=None, host=None, status=None, check_statuses=None)¶ Bases:
vmware.vapi.bindings.struct.VapiStruct
The
Software.EntityCheckResult
class contains attributes that describe aggregated status of all checks performed on a specific entity.Tip
The arguments are used to initialize data attributes with the same names.
- Parameters
type (
Software.EntityCheckResult.EntityType
) – The entity type for which these checks are being run.cluster (
str
) – If the entity type is CLUSTER then the cluster identifier for which the checks have been run. When clients pass a value of this class as a parameter, the attribute must be an identifier for the resource type:ClusterComputeResource
. When methods return a value of this class as a return value, the attribute will be an identifier for the resource type:ClusterComputeResource
. This attribute is optional and it is only relevant when the value oftype
isSoftware.EntityCheckResult.EntityType.CLUSTER
.host (
str
) – If the entity type is HOST then the host identifier for which the checks have been run. When clients pass a value of this class as a parameter, the attribute must be an identifier for the resource type:HostSystem
. When methods return a value of this class as a return value, the attribute will be an identifier for the resource type:HostSystem
. This attribute is optional and it is only relevant when the value oftype
isSoftware.EntityCheckResult.EntityType.HOST
.status (
Software.Status
) – Aggregated status from all checks performed on this entity.check_statuses (
list
ofSoftware.CheckStatus
) – List ofSoftware.CheckStatus
for all checks performed.
-
class
EntityType
(string)¶ Bases:
vmware.vapi.bindings.enum.Enum
The
Software.EntityCheckResult.EntityType
class contains the entitites on which checks can be performed.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.
- Parameters
string (
str
) – String value for theEntityType
instance.
-
CLUSTER
= EntityType(string='CLUSTER')¶ Entity type Cluster
-
HOST
= EntityType(string='HOST')¶ Entity type Host
-
class
ExportSpec
(export_software_spec=None, export_iso_image=None, export_offline_bundle=None)¶ Bases:
vmware.vapi.bindings.struct.VapiStruct
The
Software.ExportSpec
class contains information describing how a software specification or image should be exported.Tip
The arguments are used to initialize data attributes with the same names.
- Parameters
export_software_spec (
bool
) – Whether to export software specification document.export_iso_image (
bool
) – Whether to export ISO image.export_offline_bundle (
bool
) – Whether to export offline bundle.
-
class
ExportType
(string)¶ Bases:
vmware.vapi.bindings.enum.Enum
The
Software.ExportType
class defines the formats in which software specification document or image can be exported.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.
- Parameters
string (
str
) – String value for theExportType
instance.
-
ISO_IMAGE
= ExportType(string='ISO_IMAGE')¶ Export ISO image.
-
OFFLINE_BUNDLE
= ExportType(string='OFFLINE_BUNDLE')¶ Export offline bundle.
-
SOFTWARE_SPEC
= ExportType(string='SOFTWARE_SPEC')¶ Export software specification document.
-
class
Status
(string)¶ Bases:
vmware.vapi.bindings.enum.Enum
The
Software.Status
class defines the status result for a particular check.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.
- Parameters
string (
str
) – String value for theStatus
instance.
-
ERROR
= Status(string='ERROR')¶ The check indicates an error.
-
OK
= Status(string='OK')¶ The check indicates a success.
-
RETRY
= Status(string='RETRY')¶ The check failed because of an intermittent error, for example a service is overloaded. The client can choose to retry the health check before considering the check as failed. This class attribute was added in vSphere API 7.0.2.0.
-
TIMEOUT
= Status(string='TIMEOUT')¶ The check did not return in a timely manner.
-
WARNING
= Status(string='WARNING')¶ The check indicates a warning.
-
apply_task
(cluster, spec)¶ Applies the desired software document associated with the given cluster to hosts within the cluster. If
commit
attribute isset
, it implies the minimum commit that theSoftware.apply()
method should use, however if subsequent commits have been made to the desired state document the apply method will use the most recent desired state document. The result of this operation can be queried by calling the cis/tasks/{task-id} where the task-id is the response of this operation.- Parameters
cluster (
str
) – Identifier of the cluster. The parameter must be an identifier for the resource type:ClusterComputeResource
.spec (
Software.ApplySpec
) – Apply specification.
- Return type
- class
vmware.vapi.stdlib.client.task.Task
- Returns
Task instance
- Raise
com.vmware.vapi.std.errors_client.AlreadyInDesiredState
If the cluster is already at specified commit as described in the apply specification.- Raise
com.vmware.vapi.std.errors_client.Error
If there is an unknown internal error or if the EULA has not been accepted. The accompanying error message will give more details about the failure.- Raise
com.vmware.vapi.std.errors_client.InvalidArgument
If thecommit
attribute ofspec
specifies an invalid commit, or thehosts
attribute ofspec
specifies an invalid host or a host not part of the cluster, or thecluster
is not managed with a single software specification.- Raise
com.vmware.vapi.std.errors_client.NotAllowedInCurrentState
If there is another operation in progress.- Raise
com.vmware.vapi.std.errors_client.NotFound
If there is no cluster associated withcluster
in the system or if desired software document is not found.- Raise
com.vmware.vapi.std.errors_client.ServiceUnavailable
If the service is not available.- Raise
com.vmware.vapi.std.errors_client.TimedOut
If the operation times out.- Raise
com.vmware.vapi.std.errors_client.Unauthenticated
If the caller is not authenticated.
-
check_task
(cluster, spec)¶ Runs checks on the cluster before applying the desired software document across all hosts in the cluster. Checks if all hosts in the cluster are in a good state to be updated with the desired software document. If
commit
attribute isset
it implies the minimum commit that the check method should use, however if subsequent commits have been made to the desired state document the check method will use the most recent desired state document. The result of this operation can be queried by calling the cis/tasks/{task-id} where the task-id is the response of this operation.- Parameters
cluster (
str
) – Identifier of the cluster. The parameter must be an identifier for the resource type:ClusterComputeResource
.spec (
Software.CheckSpec
) – Check specification.
- Return type
- class
vmware.vapi.stdlib.client.task.Task
- Returns
Task instance
- Raise
com.vmware.vapi.std.errors_client.Error
If there is unknown internal error. The accompanying error message will give more details about the failure.- Raise
com.vmware.vapi.std.errors_client.InvalidArgument
If thecommit
attribute ofspec
specifies an invalid commit, or thehosts
attribute ofspec
specifies an invalid host or a host not part of the cluster.- Raise
com.vmware.vapi.std.errors_client.NotAllowedInCurrentState
If there is another operation in progress or if thecommit
attribute ofspec
specifies a commit that has already been applied.- Raise
com.vmware.vapi.std.errors_client.NotFound
If there is no cluster associated withcluster
in the system.- Raise
com.vmware.vapi.std.errors_client.ServiceUnavailable
If the service is not available.- Raise
com.vmware.vapi.std.errors_client.TimedOut
If the operation times out.- Raise
com.vmware.vapi.std.errors_client.Unauthenticated
If the caller is not authenticated.
-
export
(cluster, spec)¶ Exports the desired software specification document and/or image. This API will not export the solution section of the desired software specification.
- Parameters
cluster (
str
) – Identifier of the cluster. The parameter must be an identifier for the resource type:ClusterComputeResource
.spec (
Software.ExportSpec
) –
- Return type
dict
ofSoftware.ExportType
andstr
- Returns
A map from export type to URL of the exported data for that type.
- Raise
com.vmware.vapi.std.errors_client.Error
If there is am unknown internal error. The accompanying error message will give more details about the failure.- Raise
com.vmware.vapi.std.errors_client.NotFound
If there is no cluster associated withcluster
in the system or if desired software document is not found.- Raise
com.vmware.vapi.std.errors_client.ServiceUnavailable
If the service is not available.- Raise
com.vmware.vapi.std.errors_client.Unauthenticated
If the caller is not authenticated.- Raise
com.vmware.vapi.std.errors_client.Unauthorized
if you do not have all of the privileges described as follows:Method execution requires
VcIntegrity.lifecycleSoftwareSpecification.Read
.The resource
ClusterComputeResource
referenced by the parametercluster
requiresVcIntegrity.lifecycleSoftwareSpecification.Read
.
-
get
(cluster)¶ Returns the complete desired software specification.
- Parameters
cluster (
str
) – Identifier of the cluster. The parameter must be an identifier for the resource type:ClusterComputeResource
.- Return type
- Returns
Cluster software specification.
- Raise
com.vmware.vapi.std.errors_client.Error
If there is unknown internal error. The accompanying error message will give more details about the failure.- Raise
com.vmware.vapi.std.errors_client.NotFound
If there is no cluster associated withcluster
in the system.- Raise
com.vmware.vapi.std.errors_client.ServiceUnavailable
If the service is not available.- Raise
com.vmware.vapi.std.errors_client.Unauthenticated
If the caller is not authenticated.- Raise
com.vmware.vapi.std.errors_client.Unauthorized
if you do not have all of the privileges described as follows:Method execution requires
VcIntegrity.lifecycleSoftwareSpecification.Read
.The resource
ClusterComputeResource
referenced by the parametercluster
requiresVcIntegrity.lifecycleSoftwareSpecification.Read
.
-
scan_task
(cluster)¶ Scans all the hosts in the cluster against the cluster’s desired state. The result of this operation can be queried by calling the cis/tasks/{task-id} where the task-id is the response of this operation.
- Parameters
cluster (
str
) – Identifier of the cluster. The parameter must be an identifier for the resource type:ClusterComputeResource
.- Return type
- class
vmware.vapi.stdlib.client.task.Task
- Returns
Task instance
- Raise
com.vmware.vapi.std.errors_client.Error
If there is unknown internal error. The accompanying error message will give more details about the failure.- Raise
com.vmware.vapi.std.errors_client.NotFound
If there is no cluster associated withcluster
in the system or if desired software document is not found.- Raise
com.vmware.vapi.std.errors_client.ServiceUnavailable
If the service is not available.- Raise
com.vmware.vapi.std.errors_client.Unauthenticated
If the caller is not authenticated.
-
class
com.vmware.esx.settings.clusters_client.
StubFactory
(stub_config)¶ Bases:
vmware.vapi.bindings.stub.StubFactoryBase
Initialize StubFactoryBase
- Parameters
stub_config (
vmware.vapi.bindings.stub.StubConfiguration
) – Stub config instance
com.vmware.esx.settings.defaults_client module¶
The com.vmware.esx.settings.defaults_client
module provides classes to
manage defaults that affect management of desired state configuration and
software for ESXi clusters and hosts.
-
class
com.vmware.esx.settings.defaults_client.
StubFactory
(stub_config)¶ Bases:
vmware.vapi.bindings.stub.StubFactoryBase
Initialize StubFactoryBase
- Parameters
stub_config (
vmware.vapi.bindings.stub.StubConfiguration
) – Stub config instance
com.vmware.esx.settings.depot_content_client module¶
The com.vmware.esx.settings.depot_content_client
module provides classes to
retrieve contents from the depot.
-
class
com.vmware.esx.settings.depot_content_client.
AddOns
(config)¶ Bases:
vmware.vapi.bindings.stub.VapiInterface
The
AddOns
class provides methods to get OEM add-ons from the sync’ed and imported depots.- Parameters
config (
vmware.vapi.bindings.stub.StubConfiguration
) – Configuration to be used for creating the stub.
-
class
AddOnVersionSummary
(version=None, display_version=None, summary=None, category=None, kb=None, release_date=None)¶ Bases:
vmware.vapi.bindings.struct.VapiStruct
The
AddOns.AddOnVersionSummary
class defines the summary information regarding a version of an OEM add-on.Tip
The arguments are used to initialize data attributes with the same names.
- Parameters
version (
str
) – Version of the OEM add-on.display_version (
str
) – Human readable version of the OEM add-on.summary (
str
) – Summary of the OEM add-on version.category (
AddOns.CategoryType
) – Category of the OEM add-on version.kb (
str
) – Link to kb article related to this the OEM add-on version.release_date (
datetime.datetime
) – Release date of the OEM add-on version.
-
class
CategoryType
(string)¶ Bases:
vmware.vapi.bindings.enum.Enum
The
AddOns.CategoryType
class defines possible values of categories for a OEM add-on.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.
- Parameters
string (
str
) – String value for theCategoryType
instance.
-
BUGFIX
= CategoryType(string='BUGFIX')¶ Bugfix
-
ENHANCEMENT
= CategoryType(string='ENHANCEMENT')¶ Enhancement
-
SECURITY
= CategoryType(string='SECURITY')¶ Security
-
class
FilterSpec
(vendors=None, names=None, versions=None, min_version=None)¶ Bases:
vmware.vapi.bindings.struct.VapiStruct
The
AddOns.FilterSpec
class contains attributes used to filter the results when listing OEM add-ons, seeAddOns.list()
).Tip
The arguments are used to initialize data attributes with the same names.
- Parameters
vendors (
set
ofstr
orNone
) – Vendors that an add-on must have to match the filter. If None or empty, add-ons from any vendor will match the filter.names (
set
ofstr
orNone
) – Names that an add-on must have to match the filter. When clients pass a value of this class as a parameter, the attribute must contain identifiers for the resource type:com.vmware.esx.settings.add_on
. When methods return a value of this class as a return value, the attribute will contain identifiers for the resource type:com.vmware.esx.settings.add_on
. If None or empty, add-ons with any name will match the filter.versions (
set
ofstr
orNone
) – Versions that an add-on must have to match the filter. If None or empty, add-ons with any version will match the filter.min_version (
str
orNone
) – Minimum version of an add-on that can match the filter. Ifset
, only OEM add-ons with version greater than or equal to this will be returned.
-
RESOURCE_TYPE
= 'com.vmware.esx.settings.add_on'¶ Resource type for add-on resource
-
class
Summary
(name=None, display_name=None, vendor=None, versions=None)¶ Bases:
vmware.vapi.bindings.struct.VapiStruct
The
AddOns.Summary
class defines the summary information regarding a OEM add-on.Tip
The arguments are used to initialize data attributes with the same names.
- Parameters
name (
str
) – Name of the OEM add-on. When clients pass a value of this class as a parameter, the attribute must be an identifier for the resource type:com.vmware.esx.settings.add_on
. When methods return a value of this class as a return value, the attribute will be an identifier for the resource type:com.vmware.esx.settings.add_on
.display_name (
str
) – Display name of the OEM add-on.vendor (
str
) – Vendor of the OEM add-on.versions (
list
ofAddOns.AddOnVersionSummary
) – Summary information about the versions of this addon. These are sorted by the version.
-
list
(filter=None)¶ Returns a list of currently available OEM add-ons in the depot.
- Parameters
filter (
AddOns.FilterSpec
orNone
) – The specification of matching OEM add-ons. If None, the behavior is equivalent to aAddOns.FilterSpec
with all attributes None, which means all OEM add-ons match the filter.- Return type
- Returns
List of OEM add-ons in the depot.
- Raise
com.vmware.vapi.std.errors_client.Error
If there is unknown internal error. The accompanying error message will give more details about the failure.- Raise
com.vmware.vapi.std.errors_client.ServiceUnavailable
If the service is not available.- Raise
com.vmware.vapi.std.errors_client.Unauthenticated
if the caller is not authenticated.- Raise
com.vmware.vapi.std.errors_client.Unauthorized
if you do not have all of the privileges described as follows:Method execution requires
VcIntegrity.lifecycleSettings.Read
.
-
class
com.vmware.esx.settings.depot_content_client.
BaseImages
(config)¶ Bases:
vmware.vapi.bindings.stub.VapiInterface
The
BaseImages
class provides methods to get base-images from the sync’ed and imported depots.- Parameters
config (
vmware.vapi.bindings.stub.StubConfiguration
) – Configuration to be used for creating the stub.
-
class
CategoryType
(string)¶ Bases:
vmware.vapi.bindings.enum.Enum
The
BaseImages.CategoryType
class defines possible values of categories for a base-image.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.
- Parameters
string (
str
) – String value for theCategoryType
instance.
-
BUGFIX
= CategoryType(string='BUGFIX')¶ Bugfix
-
ENHANCEMENT
= CategoryType(string='ENHANCEMENT')¶ Enhancement
-
SECURITY
= CategoryType(string='SECURITY')¶ Security
-
class
FilterSpec
(min_version=None)¶ Bases:
vmware.vapi.bindings.struct.VapiStruct
The
BaseImages.FilterSpec
class contains attributes used to filter the results when listing base-images, seeBaseImages.list()
).Tip
The arguments are used to initialize data attributes with the same names.
- Parameters
min_version (
str
orNone
) – Minimum version of a base-image that can match the filter. Ifset
, only base-images with version greater than or equal to this version will be returned.
-
RESOURCE_TYPE
= 'com.vmware.esx.settings.base_image'¶ Resource type for add-on resource
-
class
Summary
(display_name=None, version=None, display_version=None, summary=None, category=None, kb=None, release_date=None)¶ Bases:
vmware.vapi.bindings.struct.VapiStruct
The
BaseImages.Summary
class defines the summary information regarding a base-image.Tip
The arguments are used to initialize data attributes with the same names.
- Parameters
display_name (
str
) – Display name of the base-image.version (
str
) – Version of the base-image. When clients pass a value of this class as a parameter, the attribute must be an identifier for the resource type:com.vmware.esx.settings.base_image
. When methods return a value of this class as a return value, the attribute will be an identifier for the resource type:com.vmware.esx.settings.base_image
.display_version (
str
) – Human readable version of the base-image.summary (
str
) – Summary of the base-image.category (
BaseImages.CategoryType
) – Category of the base-image.kb (
str
) – Link to kb article related to this the base-image.release_date (
datetime.datetime
) – Release date of the base-image.
-
list
(filter=None)¶ Returns a list of currently available base-images in the depot.
- Parameters
filter (
BaseImages.FilterSpec
orNone
) – The specification of matching base-images. If None, the behavior is equivalent to aBaseImages.FilterSpec
with all attributes None, which means all base-images match the filter.- Return type
- Returns
List of base-images in the depot. These will be sorted by the version of the base-image.
- Raise
com.vmware.vapi.std.errors_client.Error
If there is unknown internal error. The accompanying error message will give more details about the failure.- Raise
com.vmware.vapi.std.errors_client.ServiceUnavailable
If the service is not available.- Raise
com.vmware.vapi.std.errors_client.Unauthenticated
if the caller is not authenticated.- Raise
com.vmware.vapi.std.errors_client.Unauthorized
if you do not have all of the privileges described as follows:Method execution requires
VcIntegrity.lifecycleSettings.Read
.
-
class
com.vmware.esx.settings.depot_content_client.
Components
(config)¶ Bases:
vmware.vapi.bindings.stub.VapiInterface
The
Components
class provides methods to get Components from the sync’ed and imported depots.- Parameters
config (
vmware.vapi.bindings.stub.StubConfiguration
) – Configuration to be used for creating the stub.
-
class
CategoryType
(string)¶ Bases:
vmware.vapi.bindings.enum.Enum
The
Components.CategoryType
class defines possible values of categories for a component.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.
- Parameters
string (
str
) – String value for theCategoryType
instance.
-
BUGFIX
= CategoryType(string='BUGFIX')¶ Bugfix
-
ENHANCEMENT
= CategoryType(string='ENHANCEMENT')¶ Enhancement
-
GENERAL
= CategoryType(string='GENERAL')¶ General
-
INFO
= CategoryType(string='INFO')¶ Info
-
MISC
= CategoryType(string='MISC')¶ Misc
-
RECALL
= CategoryType(string='RECALL')¶ Recall
-
RECALL_FIX
= CategoryType(string='RECALL_FIX')¶ Recall-fix
-
SECURITY
= CategoryType(string='SECURITY')¶ Security
-
class
ComponentBundleType
(string)¶ Bases:
vmware.vapi.bindings.enum.Enum
The
Components.ComponentBundleType
class defines possible ways components are bundled.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.
- Parameters
string (
str
) – String value for theComponentBundleType
instance.
-
ADD_ON
= ComponentBundleType(string='ADD_ON')¶ Components bundled in add-ons
-
BASE_IMAGE
= ComponentBundleType(string='BASE_IMAGE')¶ Components bundled in base-images
-
INDEPENDENT
= ComponentBundleType(string='INDEPENDENT')¶ Components not bundled in base-images or add-ons
-
class
ComponentVersionSummary
(version=None, display_version=None, summary=None, category=None, urgency=None, kb=None, release_date=None)¶ Bases:
vmware.vapi.bindings.struct.VapiStruct
The
Components.ComponentVersionSummary
class defines the summary information regarding a version of a component.Tip
The arguments are used to initialize data attributes with the same names.
- Parameters
version (
str
) – Version of the component.display_version (
str
) – Human readable version of the component.summary (
str
) – Summary of the component version.category (
Components.CategoryType
) – Category of the component version.urgency (
Components.UrgencyType
) – Urgency of the component version.kb (
str
) – Link to kb article related to this the component version.release_date (
datetime.datetime
) – Release date of the component version.
-
class
FilterSpec
(vendors=None, names=None, versions=None, min_version=None, bundle_types=None)¶ Bases:
vmware.vapi.bindings.struct.VapiStruct
The
Components.FilterSpec
class contains attributes used to filter the results when listing components, seeComponents.list()
).Tip
The arguments are used to initialize data attributes with the same names.
- Parameters
vendors (
set
ofstr
orNone
) – Vendors that a component must have to match the filter. If None or empty, components with any vendor name match the filter.names (
set
ofstr
orNone
) – Names that a component must have to match the filter. When clients pass a value of this class as a parameter, the attribute must contain identifiers for the resource type:com.vmware.esx.settings.component
. When methods return a value of this class as a return value, the attribute will contain identifiers for the resource type:com.vmware.esx.settings.component
. If None or empty, components with any name will match the filter.versions (
set
ofstr
orNone
) – Versions that a component must have to match the filter. If None or empty, components with any version will match the filter.min_version (
str
orNone
) – Minimum version of the component that can match the filter. Ifset
, only components with version greater than or equal to the given version match the filter.bundle_types (
set
ofComponents.ComponentBundleType
orNone
) – Component bundle types that a component must have to match the filter. If None or empty, all components will match the filter.
-
RESOURCE_TYPE
= 'com.vmware.esx.settings.component'¶ Resource type for add-on resource
-
class
Summary
(name=None, display_name=None, vendor=None, versions=None)¶ Bases:
vmware.vapi.bindings.struct.VapiStruct
The
Components.Summary
class defines the summary information regarding a component.Tip
The arguments are used to initialize data attributes with the same names.
- Parameters
name (
str
) – Name of the Component. When clients pass a value of this class as a parameter, the attribute must be an identifier for the resource type:com.vmware.esx.settings.component
. When methods return a value of this class as a return value, the attribute will be an identifier for the resource type:com.vmware.esx.settings.component
.display_name (
str
) – Display name of the component.vendor (
str
) – Vendor of the component.versions (
list
ofComponents.ComponentVersionSummary
) – Summary information about the versions of this component. These are sorted by the version.
-
class
UrgencyType
(string)¶ Bases:
vmware.vapi.bindings.enum.Enum
The
Components.UrgencyType
class defines possible values of urgencies for a component.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.
- Parameters
string (
str
) – String value for theUrgencyType
instance.
-
CRITICAL
= UrgencyType(string='CRITICAL')¶ Critical
-
GENERAL
= UrgencyType(string='GENERAL')¶ General
-
IMPORTANT
= UrgencyType(string='IMPORTANT')¶ Important
-
LOW
= UrgencyType(string='LOW')¶ Low
-
MODERATE
= UrgencyType(string='MODERATE')¶ Moderate
-
list
(filter=None)¶ Returns a list of currently available components in the depot.
- Parameters
filter (
Components.FilterSpec
orNone
) – The specification of matching components. If None, the behavior is equivalent to aComponents.FilterSpec
with all attributes None, which means ALL components match the filter.- Return type
- Returns
List of components in the depot.
- Raise
com.vmware.vapi.std.errors_client.Error
If there is unknown internal error. The accompanying error message will give more details about the failure.- Raise
com.vmware.vapi.std.errors_client.ServiceUnavailable
If the service is not available.- Raise
com.vmware.vapi.std.errors_client.Unauthenticated
if the caller is not authenticated.- Raise
com.vmware.vapi.std.errors_client.Unauthorized
if you do not have all of the privileges described as follows:Method execution requires
VcIntegrity.lifecycleSettings.Read
.
-
class
com.vmware.esx.settings.depot_content_client.
StubFactory
(stub_config)¶ Bases:
vmware.vapi.bindings.stub.StubFactoryBase
Initialize StubFactoryBase
- Parameters
stub_config (
vmware.vapi.bindings.stub.StubConfiguration
) – Stub config instance
com.vmware.esx.settings.depots_client module¶
The com.vmware.esx.settings.depots_client
module provides classes to manage
VUM compatible ESX Depots.
-
class
com.vmware.esx.settings.depots_client.
AddonSummary
(display_name=None, vendor=None, versions=None)¶ Bases:
vmware.vapi.bindings.struct.VapiStruct
The
AddonSummary
class contains fields that describe the summary of an addon. This class was added in vSphere API 7.0.3.0.Tip
The arguments are used to initialize data attributes with the same names.
- Parameters
display_name (
str
) – Human readable name of the addon. This attribute was added in vSphere API 7.0.3.0.vendor (
str
) – Vendor of the addon. This attribute was added in vSphere API 7.0.3.0. When clients pass a value of this class as a parameter, the attribute must be an identifier for the resource type:com.vmware.esx.settings.depots.vendor
. When methods return a value of this class as a return value, the attribute will be an identifier for the resource type:com.vmware.esx.settings.depots.vendor
.versions (
list
ofAddonVersion
) – Different versions of the addon. This attribute was added in vSphere API 7.0.3.0.
-
class
com.vmware.esx.settings.depots_client.
AddonVersion
(version=None, display_version=None)¶ Bases:
vmware.vapi.bindings.struct.VapiStruct
The
AddonVersion
class contains fields that describe a specific version of an addon. This class was added in vSphere API 7.0.3.0.Tip
The arguments are used to initialize data attributes with the same names.
- Parameters
version (
str
) – Version of the addon. This attribute was added in vSphere API 7.0.3.0.display_version (
str
) – Human readable version of the addon. This attribute was added in vSphere API 7.0.3.0.
-
class
com.vmware.esx.settings.depots_client.
AffectedBaselineInfo
(baseline=None, id=None, affected_updates=None)¶ Bases:
vmware.vapi.bindings.struct.VapiStruct
The
AffectedBaselineInfo
class contains the fields that describe which updates (bulletins) in the baseline will be affected by the depot to be deleted or disabled. This class was added in vSphere API 7.0.3.0.Tip
The arguments are used to initialize data attributes with the same names.
- Parameters
baseline (
str
) – Name of the baseline affected. This attribute was added in vSphere API 7.0.3.0.id (
long
) – Identifier of the baseline affected. This attribute was added in vSphere API 7.0.3.0.affected_updates (
dict
ofstr
andUpdateSummary
) – Updates (bulletins) affected. They key is identifier of the update (bulletin). The value is summary of the update (bulletin). This attribute was added in vSphere API 7.0.3.0. When clients pass a value of this class as a parameter, the key in the attributedict
must be an identifier for the resource type:com.vmware.esx.settings.depots.bulletin
. When methods return a value of this class as a return value, the key in the attributedict
will be an identifier for the resource type:com.vmware.esx.settings.depots.bulletin
.
-
class
com.vmware.esx.settings.depots_client.
AffectedDesiredStateInfo
(cluster_name=None, cluster_id=None, affected_base_image=None, affected_addon=None, affected_solutions=None, affected_hardware_support=None, affected_independent_components=None)¶ Bases:
vmware.vapi.bindings.struct.VapiStruct
The
AffectedDesiredStateInfo
class contains the fields that describe which release units in the desired state will be affected by the depot to be deleted or disabled. This class was added in vSphere API 7.0.3.0.Tip
The arguments are used to initialize data attributes with the same names.
- Parameters
cluster_name (
str
) – Name of the cluster the affected desired state belongs to. This attribute was added in vSphere API 7.0.3.0.cluster_id (
str
) – Identified of the cluster the affected desired state belongs to. This attribute was added in vSphere API 7.0.3.0. When clients pass a value of this class as a parameter, the attribute must be an identifier for the resource type:ClusterComputeResource
. When methods return a value of this class as a return value, the attribute will be an identifier for the resource type:ClusterComputeResource
.affected_base_image (
BaseImageVersion
orNone
) – Affected base image of the desired state. This attribute was added in vSphere API 7.0.3.0. If None, no base image of the desired state will be affected.affected_addon ((
dict
ofstr
andAddonSummary
) orNone
) – Affected addon of the desired state. The key is name of addon. Note: there is at most one addon affected. This attribute was added in vSphere API 7.0.3.0. When clients pass a value of this class as a parameter, the key in the attributedict
must be an identifier for the resource type:com.vmware.esx.settings.add_on
. When methods return a value of this class as a return value, the key in the attributedict
will be an identifier for the resource type:com.vmware.esx.settings.add_on
. If None, no addon of the desired state will be affected.affected_solutions ((
dict
ofstr
andSolutionSummary
) orNone
) – Affected solutions of the desired state. The key is name of solution. This attribute was added in vSphere API 7.0.3.0. When clients pass a value of this class as a parameter, the key in the attributedict
must be an identifier for the resource type:com.vmware.esx.settings.solution
. When methods return a value of this class as a return value, the key in the attributedict
will be an identifier for the resource type:com.vmware.esx.settings.solution
. If None, no solution of the desired state will be affected.affected_hardware_support ((
dict
ofstr
andHardwareSupportManagerSummary
) orNone
) – Affected hardware support of the desired state. The key is HSM name. This attribute was added in vSphere API 7.0.3.0. When clients pass a value of this class as a parameter, the key in the attributedict
must be an identifier for the resource type:com.vmware.esx.setting.hardware_support.manager
. When methods return a value of this class as a return value, the key in the attributedict
will be an identifier for the resource type:com.vmware.esx.setting.hardware_support.manager
. If None, no hadrware support of the desired state will be affected.affected_independent_components ((
dict
ofstr
andComponentSummary
) orNone
) – Affected independent components of the desired state. The components belongs to other base images, addons, solutions and hardware support packages are not counted. The ksy is name of component. This attribute was added in vSphere API 7.0.3.0. When clients pass a value of this class as a parameter, the key in the attributedict
must be an identifier for the resource type:com.vmware.esx.settings.component
. When methods return a value of this class as a return value, the key in the attributedict
will be an identifier for the resource type:com.vmware.esx.settings.component
. If None, no independent components of the desired state will be affected.
-
class
com.vmware.esx.settings.depots_client.
BaseImageVersion
(version=None, display_name=None, display_version=None)¶ Bases:
vmware.vapi.bindings.struct.VapiStruct
The
BaseImageVersion
class contains fields that describe a specific ESXi base image. This class was added in vSphere API 7.0.3.0.Tip
The arguments are used to initialize data attributes with the same names.
- Parameters
version (
str
) – Version of the base image. This attribute was added in vSphere API 7.0.3.0.display_name (
str
) – Human readable name of the base image. This attribute was added in vSphere API 7.0.3.0.display_version (
str
) – Human readable version of the base image. This attribute was added in vSphere API 7.0.3.0.
-
class
com.vmware.esx.settings.depots_client.
ComponentSummary
(display_name=None, versions=None)¶ Bases:
vmware.vapi.bindings.struct.VapiStruct
The
ComponentSummary
class contains fields that describe the summary of a component. This class was added in vSphere API 7.0.3.0.Tip
The arguments are used to initialize data attributes with the same names.
- Parameters
display_name (
str
) – Human readable name of the component. This attribute was added in vSphere API 7.0.3.0.versions (
list
ofComponentVersion
) – Different versions of the component. This attribute was added in vSphere API 7.0.3.0.
-
class
com.vmware.esx.settings.depots_client.
ComponentVersion
(version=None, display_version=None)¶ Bases:
vmware.vapi.bindings.struct.VapiStruct
The
ComponentVersion
class contains fields that describe a specific version of a component. This class was added in vSphere API 7.0.3.0.Tip
The arguments are used to initialize data attributes with the same names.
- Parameters
version (
str
) – Version of the component. This attribute was added in vSphere API 7.0.3.0.display_version (
str
) – Human readable version of the component. This attribute was added in vSphere API 7.0.3.0.
-
class
com.vmware.esx.settings.depots_client.
HardwareSupportManagerSummary
(display_name=None, packages=None)¶ Bases:
vmware.vapi.bindings.struct.VapiStruct
The
HardwareSupportManagerSummary
class contains fields that describe the summary of a hardware support manager (HSM). This class was added in vSphere API 7.0.3.0.Tip
The arguments are used to initialize data attributes with the same names.
- Parameters
display_name (
str
) – UI label for HSM, derived from HSM extension’s description’s ‘label’ field. This attribute was added in vSphere API 7.0.3.0.packages (
dict
ofstr
andHardwareSupportPackageSummary
) – Different hardware support packages (HSP) published by the HSM. The key is name of HSP. This attribute was added in vSphere API 7.0.3.0. When clients pass a value of this class as a parameter, the key in the attributedict
must be an identifier for the resource type:com.vmware.esx.setting.hardware_support.package
. When methods return a value of this class as a return value, the key in the attributedict
will be an identifier for the resource type:com.vmware.esx.setting.hardware_support.package
.
-
class
com.vmware.esx.settings.depots_client.
HardwareSupportPackageSummary
(versions=None)¶ Bases:
vmware.vapi.bindings.struct.VapiStruct
The
HardwareSupportPackageSummary
class contains fields that describe the summary of a hardware support package (HSP). This class was added in vSphere API 7.0.3.0.Tip
The arguments are used to initialize data attributes with the same names.
- Parameters
versions (
list
ofHardwareSupportPackageVersion
) – Different versions of the HSP. This attribute was added in vSphere API 7.0.3.0.
-
class
com.vmware.esx.settings.depots_client.
HardwareSupportPackageVersion
(version=None)¶ Bases:
vmware.vapi.bindings.struct.VapiStruct
The
HardwareSupportPackageVersion
class contains fields that describe a specific version of a hardware support package (HSP). This class was added in vSphere API 7.0.3.0.Tip
The arguments are used to initialize data attributes with the same names.
- Parameters
version (
str
) – Version of the HSP. This attribute was added in vSphere API 7.0.3.0.
-
class
com.vmware.esx.settings.depots_client.
MetadataInfo
(file_name=None, base_images=None, addons=None, solutions=None, hardware_support=None, independent_components=None, updates=None)¶ Bases:
vmware.vapi.bindings.struct.VapiStruct
The
MetadataInfo
class contains fields that show the content of a metadata bundle. This class was added in vSphere API 7.0.3.0.Tip
The arguments are used to initialize data attributes with the same names.
- Parameters
file_name (
str
) – File name of the metadata bundle. This attribute was added in vSphere API 7.0.3.0.base_images (
list
ofBaseImageVersion
orNone
) – All the base images contained in the metadata bundle. This attribute was added in vSphere API 7.0.3.0. If None, the metadata bundle contains no base image.addons ((
dict
ofstr
andAddonSummary
) orNone
) – All the addons contained in the metadata bundle. The key is name of addon. This attribute was added in vSphere API 7.0.3.0. When clients pass a value of this class as a parameter, the key in the attributedict
must be an identifier for the resource type:com.vmware.esx.settings.add_on
. When methods return a value of this class as a return value, the key in the attributedict
will be an identifier for the resource type:com.vmware.esx.settings.add_on
. If None, the metadata bundle contains no addon.solutions ((
dict
ofstr
andSolutionSummary
) orNone
) – All the solutions contained in the metadata bundle. The key is name of solution. This attribute was added in vSphere API 7.0.3.0. When clients pass a value of this class as a parameter, the key in the attributedict
must be an identifier for the resource type:com.vmware.esx.settings.solution
. When methods return a value of this class as a return value, the key in the attributedict
will be an identifier for the resource type:com.vmware.esx.settings.solution
. If None, the metadata bundle contains no solution.hardware_support ((
dict
ofstr
andHardwareSupportManagerSummary
) orNone
) – All the HSMs and their HSPs contained in the metadata bundle. The key is name of HSM. This attribute was added in vSphere API 7.0.3.0. When clients pass a value of this class as a parameter, the key in the attributedict
must be an identifier for the resource type:com.vmware.esx.setting.hardware_support.manager
. When methods return a value of this class as a return value, the key in the attributedict
will be an identifier for the resource type:com.vmware.esx.setting.hardware_support.manager
. If None, the metadata bundle contains no hardware support manager.independent_components ((
dict
ofstr
andComponentSummary
) orNone
) – All the independent components contained in the metadata bundle. The components belongs to other base images, addons, solutions and hardware support packages are not counted. The ksy is name of component. This attribute was added in vSphere API 7.0.3.0. When clients pass a value of this class as a parameter, the key in the attributedict
must be an identifier for the resource type:com.vmware.esx.settings.component
. When methods return a value of this class as a return value, the key in the attributedict
will be an identifier for the resource type:com.vmware.esx.settings.component
. If None, the metadata bundle contains no inpendent component.updates ((
dict
ofstr
andUpdateSummary
) orNone
) – All the updates (bulletins) contained in the metadata bundle. They key is identifier of the update (bulletin). The value is summary of the update (bulletin). This attribute was added in vSphere API 7.0.3.0. When clients pass a value of this class as a parameter, the key in the attributedict
must be an identifier for the resource type:com.vmware.esx.settings.depots.bulletin
. When methods return a value of this class as a return value, the key in the attributedict
will be an identifier for the resource type:com.vmware.esx.settings.depots.bulletin
. If None, the metadata bundle contains no update (bulletin).
-
class
com.vmware.esx.settings.depots_client.
Offline
(config)¶ Bases:
vmware.vapi.bindings.stub.VapiInterface
The
Offline
class provides methods to manage offline software depots used during ESX lifecycle management.- Parameters
config (
vmware.vapi.bindings.stub.StubConfiguration
) – Configuration to be used for creating the stub.
-
class
ConnectionSpec
(auth_type=None, host_credential=None, host=None)¶ Bases:
vmware.vapi.bindings.struct.VapiStruct
The
Offline.ConnectionSpec
class contains attributes that describe the specification to be used for connecting to the host during theOffline.create_from_host()
method. This class was added in vSphere API 7.0.2.0.Tip
The arguments are used to initialize data attributes with the same names.
- Parameters
auth_type (
Offline.ConnectionSpec.AuthenticationType
) – Specifies what type of authentication (USERNAME_PASSWORD, EXISTING) is to be used when connecting with the host. USERNAME_PASSWORD is intended to be used when connecting to a host that is not currently part of the vCenter inventory. EXISTING is intented for hosts that are in vCenter inventory, in which case, HostServiceTicket will be used to connect to the host. This attribute was added in vSphere API 7.0.2.0.host_credential (
Offline.HostCredentials
) – Specifies the host details to be used during theOffline.create_from_host()
method. This attribute was added in vSphere API 7.0.2.0. This attribute is optional and it is only relevant when the value ofauthType
isOffline.ConnectionSpec.AuthenticationType.USERNAME_PASSWORD
.host (
str
) – Specifies the host Managed Object ID to be used during theOffline.create_from_host()
method. This attribute was added in vSphere API 7.0.2.0. When clients pass a value of this class as a parameter, the attribute must be an identifier for the resource type:HostSystem
. When methods return a value of this class as a return value, the attribute will be an identifier for the resource type:HostSystem
. This attribute is optional and it is only relevant when the value ofauthType
isOffline.ConnectionSpec.AuthenticationType.EXISTING
.
-
class
AuthenticationType
(string)¶ Bases:
vmware.vapi.bindings.enum.Enum
The
Offline.ConnectionSpec.AuthenticationType
class defines the possible types of authentication supported when connecting to the host. This enumeration was added in vSphere API 7.0.2.0.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.
- Parameters
string (
str
) – String value for theAuthenticationType
instance.
-
EXISTING
= AuthenticationType(string='EXISTING')¶ Connect to the host using service ticket. Note: This is supported only for hosts present in the VC inventory. This class attribute was added in vSphere API 7.0.2.0.
-
USERNAME_PASSWORD
= AuthenticationType(string='USERNAME_PASSWORD')¶ Connect to host using host’s credentials class. This class attribute was added in vSphere API 7.0.2.0.
-
class
CreateResult
(depot=None)¶ Bases:
vmware.vapi.bindings.struct.VapiStruct
The
Offline.CreateResult
class defines the result information for a new offline depot.Tip
The arguments are used to initialize data attributes with the same names.
- Parameters
depot (
str
) – Identifier of the offline depot. When clients pass a value of this class as a parameter, the attribute must be an identifier for the resource type:com.vmware.esx.settings.depots.offline
. When methods return a value of this class as a return value, the attribute will be an identifier for the resource type:com.vmware.esx.settings.depots.offline
.
-
class
CreateSpec
(description=None, source_type=None, location=None, file_id=None, ownerdata=None)¶ Bases:
vmware.vapi.bindings.struct.VapiStruct
The
Offline.CreateSpec
class defines the information used to create a depot.Tip
The arguments are used to initialize data attributes with the same names.
- Parameters
description (
str
orNone
) – Description of the depot. If None, the description will be empty.source_type (
Offline.SourceType
) – Type of the source from which offline bundle is obtained.location (
str
) – Location of the depot from which content should be retrieved. This attribute is optional and it is only relevant when the value ofsourceType
isOffline.SourceType.PULL
.file_id (
str
) – File identifier returned by the file upload endpoint after file is uploaded. This attribute is optional and it is only relevant when the value ofsourceType
isOffline.SourceType.PUSH
.ownerdata (
str
orNone
) – Private data saved by theOffline.Info.owner
of the depot. It is opaque to vLCM. This attribute was added in vSphere API 7.0.3.0. If None, no ownerdata will be saved.
-
class
DeleteResult
(notifications=None)¶ Bases:
vmware.vapi.bindings.struct.VapiStruct
The
Offline.DeleteResult
class contains a field that lists all the errors encountered after starting the task ofOffline.delete()
method. This class was added in vSphere API 7.0.3.0.Tip
The arguments are used to initialize data attributes with the same names.
- Parameters
notifications (
com.vmware.esx.settings_client.Notifications
orNone
) – Notifications returned byOffline.delete()
method. This attribute was added in vSphere API 7.0.3.0. If None, no notification is returned.
-
class
DepotExtractInfo
(notifications=None, software_spec=None, result=None)¶ Bases:
vmware.vapi.bindings.struct.VapiStruct
The
Offline.DepotExtractInfo
class contains attributes that describe the extracted depot. This class was added in vSphere API 7.0.2.0.Tip
The arguments are used to initialize data attributes with the same names.
- Parameters
notifications (
com.vmware.esx.settings_client.Notifications
) – Notifications returned by the extractDepot operation. This attribute was added in vSphere API 7.0.2.0.software_spec (
com.vmware.esx.settings_client.SoftwareSpec
) – Software specification of the extracted depot. This attribute was added in vSphere API 7.0.2.0.result (
Offline.CreateResult
) – The information about the created offline depot. Empty \@name{result} \@term{string} indicates that the depot contents are already present in VC cache. This attribute was added in vSphere API 7.0.2.0.
-
class
HostCredentials
(host_name=None, user_name=None, password=None, port=None, ssl_thumb_print=None)¶ Bases:
vmware.vapi.bindings.struct.VapiStruct
The
Offline.HostCredentials
class contains attributes that describe the host’s username, password, port number and ssl thumbprint to be used when connecting to the host using USERNAME_PASSWORD option in the class. This class was added in vSphere API 7.0.2.0.Tip
The arguments are used to initialize data attributes with the same names.
- Parameters
host_name (
str
) – The IP address or DNS resolvable name of the host. This attribute was added in vSphere API 7.0.2.0.user_name (
str
) – Specifies the username to be used during theOffline.create_from_host()
method. This attribute was added in vSphere API 7.0.2.0.password (
str
) – Specifies the password to be used during theOffline.create_from_host()
method. This attribute was added in vSphere API 7.0.2.0.port (
long
orNone
) – Specifies the port number of the host to be used duringOffline.create_from_host()
method. This attribute was added in vSphere API 7.0.2.0. If None, port number is set to 443.ssl_thumb_print (
str
orNone
) – Specifies the sslThumbPrint of the host to be used duringOffline.create_from_host()
method SHA1 hash of the host’s SSL certificate. This attribute was added in vSphere API 7.0.2.0. If None,Offline.create_from_host()
method throws UnverifiedPeer with the expected thumbprint as data.
-
class
Info
(description=None, source_type=None, location=None, file_id=None, create_time=None, owner=None, ownerdata=None)¶ Bases:
vmware.vapi.bindings.struct.VapiStruct
The
Offline.Info
class defines the information regarding an offline depot.Tip
The arguments are used to initialize data attributes with the same names.
- Parameters
description (
str
) – Description of the depot. If not set during import, it will be empty.source_type (
Offline.SourceType
) – Type of the source from which offline depot is obtained.location (
str
) – Location of the depot from which content is retrieved. This attribute is optional and it is only relevant when the value ofsourceType
isOffline.SourceType.PULL
.file_id (
str
) – File identifier returned by the file upload endpoint after file is uploaded. This attribute is optional and it is only relevant when the value ofsourceType
isOffline.SourceType.PUSH
.create_time (
datetime.datetime
) – Time when the depot was created.owner (
str
orNone
) – Name of the user creating the depot. This attribute was added in vSphere API 7.0.3.0. This attribute is optional because it was added in a newer version than its parent node.ownerdata (
str
orNone
) – Private data saved by theowner
of depot. It is opaque to vLCM. This attribute was added in vSphere API 7.0.3.0. This attribute is optional because it was added in a newer version than its parent node.
-
class
PrecheckResult
(affected_baselines=None, affected_desired_states=None)¶ Bases:
vmware.vapi.bindings.struct.VapiStruct
The
Offline.PrecheckResult
class contains the fields that show the details of affected baselines and desired states found inOffline.delete()
method. This class was added in vSphere API 7.0.3.0.Tip
The arguments are used to initialize data attributes with the same names.
- Parameters
affected_baselines (
list
ofAffectedBaselineInfo
orNone
) – Baselines affected. This attribute was added in vSphere API 7.0.3.0. If None, no baseline is affected.affected_desired_states (
list
ofAffectedDesiredStateInfo
orNone
) – Desired states affected. This attribute was added in vSphere API 7.0.3.0. If None, no desired state is affected.
-
RESOURCE_TYPE
= 'com.vmware.esx.settings.depots.offline'¶ Resource type for depots resource
-
class
SourceType
(string)¶ Bases:
vmware.vapi.bindings.enum.Enum
The
Offline.SourceType
class defines possible values of sources for the offline depot.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.
- Parameters
string (
str
) – String value for theSourceType
instance.
-
PULL
= SourceType(string='PULL')¶ Content is pulled from the URL location. The URL scheme of the value in {\@link CreateSpec#location) can be http, https or file.
-
PUSH
= SourceType(string='PUSH')¶ Content was previously uploaded using the file upload enpoint present on vCenter appliance. This endpoint is present at https://VCENTERFQDN:9087/vum-fileupload URL.
-
class
Summary
(description=None, source_type=None, location=None, file_id=None, owner=None, ownerdata=None)¶ Bases:
vmware.vapi.bindings.struct.VapiStruct
The
Offline.Summary
class defines the summary information regarding an offline depot.Tip
The arguments are used to initialize data attributes with the same names.
- Parameters
description (
str
) – Description of the depot. If not set during import, it will be empty.source_type (
Offline.SourceType
) – Type of the source from which offline depot is obtained.location (
str
) – Location of the depot from which content is retrieved. This attribute is optional and it is only relevant when the value ofsourceType
isOffline.SourceType.PULL
.file_id (
str
) – File identifier returned by the file upload endpoint after file is uploaded. This attribute is optional and it is only relevant when the value ofsourceType
isOffline.SourceType.PUSH
.owner (
str
orNone
) – Name of the user creating the depot. This attribute was added in vSphere API 7.0.3.0. This attribute is optional because it was added in a newer version than its parent node.ownerdata (
str
orNone
) – Private data saved by theowner
of depot. It is opaque to vLCM. This attribute was added in vSphere API 7.0.3.0. This attribute is optional because it was added in a newer version than its parent node.
-
create_from_host_task
(spec)¶ Extract the current software specification applied to the host and import it into the depot. Returns details about the current software specification applied to the host. The result of this operation can be queried by calling the cis/tasks/{task-id} where the task-id is the response of this operation. This method was added in vSphere API 7.0.2.0.
- Parameters
spec (
Offline.ConnectionSpec
) – ConnectionSpec connection spec for the host.- Return type
- class
vmware.vapi.stdlib.client.task.Task
- Returns
Task instance
- Raise
com.vmware.vapi.std.errors_client.InvalidArgument
If theOffline.HostCredentials.host_name
attribute ofspec
is invalid.- Raise
com.vmware.vapi.std.errors_client.Error
If there is some unknown internal error. The accompanying error message will give more details about the failure.- Raise
com.vmware.vapi.std.errors_client.NotFound
If there is noOffline.HostCredentials.host_name
attribute associated with host id in the system.- Raise
com.vmware.vapi.std.errors_client.ServiceUnavailable
If the service is not available.- Raise
com.vmware.vapi.std.errors_client.Unauthenticated
If the caller is not authenticated.- Raise
com.vmware.vapi.std.errors_client.UnverifiedPeer
If the SSL certificate of the target node cannot be validated by comparing with the thumbprint provided inOffline.HostCredentials.ssl_thumb_print
.
-
create_task
(spec)¶ Imports a new offline software depot. This will also import the metadata and payloads from this offline depot. The returned task will fail and no offline depot would be created if there are any issues during import. The result of this operation can be queried by calling the cis/tasks/{task-id} where the task-id is the response of this operation.
- Parameters
spec (
Offline.CreateSpec
) – Specification to import an offline depot.- Return type
- class
vmware.vapi.stdlib.client.task.Task
- Returns
Task instance
- Raise
com.vmware.vapi.std.errors_client.Unauthenticated
If the caller is not authenticated.- Raise
com.vmware.vapi.std.errors_client.InvalidArgument
If an invalidOffline.CreateSpec.location
is provided.- Raise
com.vmware.vapi.std.errors_client.ServiceUnavailable
If the service is not available.- Raise
com.vmware.vapi.std.errors_client.AlreadyExists
If the depot content already exists. The value of the data attribute ofcom.vmware.vapi.std.errors_client.Error
will be a class that contains existing depot identifier as part of depot attribute defined inOffline.CreateResult
.- Raise
com.vmware.vapi.std.errors_client.Error
If there is some unknown internal error. The accompanying error message will give more details about the failure.
-
delete
(depot)¶ The task-based
delete
method removes content of an imported offline depot from vLCM completely. Note: The non task-baseddelete
method has been deprecated. It deletes only the record of depot from the list of imported offline software depots, instead of removing the depot’s content from vLCM.- Parameters
depot (
str
) – Identifier of the depot to be removed. The parameter must be an identifier for the resource type:com.vmware.esx.settings.depots.offline
.- Raise
com.vmware.vapi.std.errors_client.Unauthenticated
If the caller is not authenticated.- Raise
com.vmware.vapi.std.errors_client.InvalidArgument
If the given depot is system-defined. This error is applicable to the task-baseddelete
method only.- Raise
com.vmware.vapi.std.errors_client.NotFound
If there is no depot associated with parameterdepot
in the system.- Raise
com.vmware.vapi.std.errors_client.ResourceInUse
If the content of depot to be deleted is used in some baseline or desired state. The value of the data attribute ofcom.vmware.vapi.std.errors_client.Error
will be the PrecheckResult class that lists the information of affected baselines and desired states. This error is applicable to the task-baseddelete
method only.- Raise
com.vmware.vapi.std.errors_client.ServiceUnavailable
If the service is not available.- Raise
com.vmware.vapi.std.errors_client.Error
If there some unknown internal error. The accompanying error message will give more details about the failure. For task-baseddelete
method, once the task is started, it does NOT stop if encountering an error. Instead, it will continuously run to completion. In this case, the value of the data attribute ofcom.vmware.vapi.std.errors_client.Error
will be the DeleteResult class that lists all the errors encountered.- Raise
com.vmware.vapi.std.errors_client.Unauthorized
if you do not have all of the privileges described as follows:Method execution requires
VcIntegrity.lifecycleDepots.Delete
.
-
delete_task
(depot)¶ The task-based
delete
method removes content of an imported offline depot from vLCM completely. Note: The non task-baseddelete
method has been deprecated. It deletes only the record of depot from the list of imported offline software depots, instead of removing the depot’s content from vLCM.- Parameters
depot (
str
) – Identifier of the depot to be removed. The parameter must be an identifier for the resource type:com.vmware.esx.settings.depots.offline
.- Raise
com.vmware.vapi.std.errors_client.Unauthenticated
If the caller is not authenticated.- Raise
com.vmware.vapi.std.errors_client.InvalidArgument
If the given depot is system-defined. This error is applicable to the task-baseddelete
method only.- Raise
com.vmware.vapi.std.errors_client.NotFound
If there is no depot associated with parameterdepot
in the system.- Raise
com.vmware.vapi.std.errors_client.ResourceInUse
If the content of depot to be deleted is used in some baseline or desired state. The value of the data attribute ofcom.vmware.vapi.std.errors_client.Error
will be the PrecheckResult class that lists the information of affected baselines and desired states. This error is applicable to the task-baseddelete
method only.- Raise
com.vmware.vapi.std.errors_client.ServiceUnavailable
If the service is not available.- Raise
com.vmware.vapi.std.errors_client.Error
If there some unknown internal error. The accompanying error message will give more details about the failure. For task-baseddelete
method, once the task is started, it does NOT stop if encountering an error. Instead, it will continuously run to completion. In this case, the value of the data attribute ofcom.vmware.vapi.std.errors_client.Error
will be the DeleteResult class that lists all the errors encountered.- Raise
com.vmware.vapi.std.errors_client.Unauthorized
if you do not have all of the privileges described as follows:Method execution requires
VcIntegrity.lifecycleDepots.Delete
.
-
get
(depot)¶ Gets the information about an imported offline software depot.
- Parameters
depot (
str
) – Identifier for the depot. The parameter must be an identifier for the resource type:com.vmware.esx.settings.depots.offline
.- Return type
- Returns
Information about the imported offline software depot.
- Raise
com.vmware.vapi.std.errors_client.Unauthenticated
If the caller is not authenticated.- Raise
com.vmware.vapi.std.errors_client.NotFound
If there is no depot with given identifierdepot
in the system.- Raise
com.vmware.vapi.std.errors_client.ServiceUnavailable
If the service is not available.- Raise
com.vmware.vapi.std.errors_client.Error
If there is some unknown internal error. The accompanying error message will give more details about the failure.- Raise
com.vmware.vapi.std.errors_client.Unauthorized
if you do not have all of the privileges described as follows:Method execution requires
VcIntegrity.lifecycleSettings.Read
.
-
list
()¶ Returns currently imported offline software depots.
- Return type
dict
ofstr
andOffline.Summary
- Returns
Map of currently imported offline software depots keyed by their identifier. The key in the return value
dict
will be an identifier for the resource type:com.vmware.esx.settings.depots.offline
.- Raise
com.vmware.vapi.std.errors_client.Unauthenticated
if the caller is not authenticated.- Raise
com.vmware.vapi.std.errors_client.ServiceUnavailable
If the service is not available.- Raise
com.vmware.vapi.std.errors_client.Error
If there is some unknown internal error. The accompanying error message will give more details about the failure.- Raise
com.vmware.vapi.std.errors_client.Unauthorized
if you do not have all of the privileges described as follows:Method execution requires
VcIntegrity.lifecycleSettings.Read
.
-
class
com.vmware.esx.settings.depots_client.
Online
(config)¶ Bases:
vmware.vapi.bindings.stub.VapiInterface
The
Online
class provides methods to manage online software depots used during ESX lifecycle management.- Parameters
config (
vmware.vapi.bindings.stub.StubConfiguration
) – Configuration to be used for creating the stub.
-
class
CreateSpec
(description=None, location=None, enabled=None, ownerdata=None)¶ Bases:
vmware.vapi.bindings.struct.VapiStruct
The
Online.CreateSpec
class defines the information used to create a depot.Tip
The arguments are used to initialize data attributes with the same names.
- Parameters
description (
str
orNone
) – Description of the depot. If None, the description will be empty.location (
str
) – Location of the depot. It should be the location to the index.xml for the depot.enabled (
bool
orNone
) – Flag indicating whether this depot is enabled or not. Disabling the depot doesn’t delete its cached metadata and payloads. It will not be refreshed next time depots are re-synced. If None, the depot will be enabled.ownerdata (
str
orNone
) – Private data saved by theOnline.Info.owner
of the depot. It is opaque to vLCM. This attribute was added in vSphere API 7.0.3.0. If None, no ownerdata will be saved.
-
class
DeleteResult
(notifications=None)¶ Bases:
vmware.vapi.bindings.struct.VapiStruct
The
Online.DeleteResult
class contains a field that lists all the errors encountered after starting the task ofOnline.delete()
method. This class was added in vSphere API 7.0.3.0.Tip
The arguments are used to initialize data attributes with the same names.
- Parameters
notifications (
com.vmware.esx.settings_client.Notifications
orNone
) – Notifications returned byOnline.delete()
method. This attribute was added in vSphere API 7.0.3.0. If None, no notification is returned.
-
class
FlushResult
(notifications=None)¶ Bases:
vmware.vapi.bindings.struct.VapiStruct
The
Online.FlushResult
class contains a field that lists all the errors encountered after starting the task ofOnline.flush()
method. This class was added in vSphere API 7.0.3.0.Tip
The arguments are used to initialize data attributes with the same names.
- Parameters
notifications (
com.vmware.esx.settings_client.Notifications
orNone
) – Notifications returned byOnline.flush()
method. This attribute was added in vSphere API 7.0.3.0. If None, no notification is returned.
-
class
Info
(description=None, location=None, enabled=None, system_defined=None, owner=None, ownerdata=None)¶ Bases:
vmware.vapi.bindings.struct.VapiStruct
The
Online.Info
class defines the information regarding a depot.Tip
The arguments are used to initialize data attributes with the same names.
- Parameters
description (
str
) – Description of the depot. It will be an empty string if no description was provided during create.location (
str
) – Location of the depot.enabled (
bool
) – Flag indicating whether this depot is enabled or not.system_defined (
bool
) – Flag to indicate if the depot is system defined. System defined depot can not be deleted.owner (
str
orNone
) – Name of the user creating the depot. This attribute was added in vSphere API 7.0.3.0. This attribute is optional because it was added in a newer version than its parent node.ownerdata (
str
orNone
) – Private data saved by theowner
of depot. It is opaque to vLCM. This attribute was added in vSphere API 7.0.3.0. This attribute is optional because it was added in a newer version than its parent node.
-
class
PrecheckResult
(affected_baselines=None, affected_desired_states=None)¶ Bases:
vmware.vapi.bindings.struct.VapiStruct
The
Online.PrecheckResult
class contains the fields that show the details of affected baselines and desired states found inOnline.delete()
orOnline.flush()
operation. This class was added in vSphere API 7.0.3.0.Tip
The arguments are used to initialize data attributes with the same names.
- Parameters
affected_baselines (
list
ofAffectedBaselineInfo
orNone
) – Baselines affected. This attribute was added in vSphere API 7.0.3.0. If None, no baseline is affected.affected_desired_states (
list
ofAffectedDesiredStateInfo
orNone
) – Desired states affected. This attribute was added in vSphere API 7.0.3.0. If None, no desired state is affected.
-
RESOURCE_TYPE
= 'com.vmware.esx.settings.depots.online'¶ Resource type for depots resource
-
class
Summary
(description=None, location=None, enabled=None, system_defined=None, owner=None, ownerdata=None)¶ Bases:
vmware.vapi.bindings.struct.VapiStruct
The
Online.Summary
class defines the summary information regarding a depot.Tip
The arguments are used to initialize data attributes with the same names.
- Parameters
description (
str
) – Description of the depot. It will be an empty string if no description was provided during create.location (
str
) – Location of the depot.enabled (
bool
) – Flag indicating whether this depot is enabled or not.system_defined (
bool
) – Flag to indicate if the depot is system defined. System defined depot can not be deleted.owner (
str
orNone
) – Name of the user creating the depot. This attribute was added in vSphere API 7.0.3.0. This attribute is optional because it was added in a newer version than its parent node.ownerdata (
str
orNone
) – Private data saved by theowner
of depot. It is opaque to vLCM. This attribute was added in vSphere API 7.0.3.0. This attribute is optional because it was added in a newer version than its parent node.
-
class
UpdateSpec
(enabled=None, description=None)¶ Bases:
vmware.vapi.bindings.struct.VapiStruct
The
Online.UpdateSpec
class defines the information used to update the depot.Tip
The arguments are used to initialize data attributes with the same names.
- Parameters
enabled (
bool
orNone
) – Flag indicating whether this depot is enabled or not. Disabling the depot doesn’t delete its cached metadata and payloads. It will not be refreshed next time depots are re-synced. If None, enabled flag is not updated.description (
str
orNone
) – Description of the depot. If None, description is not updated.
-
create
(spec)¶ Adds a new online software depot to the list of currently configured online software depots.
- Parameters
spec (
Online.CreateSpec
) – Depot information.- Return type
str
- Returns
Identifier of the currently configured online depot. The return value will be an identifier for the resource type:
com.vmware.esx.settings.depots.online
.- Raise
com.vmware.vapi.std.errors_client.Unauthenticated
If the caller is not authenticated.- Raise
com.vmware.vapi.std.errors_client.InvalidArgument
If an invalid location is provided.- Raise
com.vmware.vapi.std.errors_client.AlreadyExists
If depot with given location already exists.- Raise
com.vmware.vapi.std.errors_client.Error
If there is some unknown internal error. The accompanying error message will give more details about the failure.- Raise
com.vmware.vapi.std.errors_client.ServiceUnavailable
If the service is not available.- Raise
com.vmware.vapi.std.errors_client.Unauthorized
if you do not have all of the privileges described as follows:Method execution requires
VcIntegrity.lifecycleSettings.Write
.
-
delete
(depot)¶ The task-based
delete
method removes content of a user-imported online depot from vLCM completely. As a result, the URL of the user-imported online depot will also be removed. Note: 1. To remove content of system-defined online depots, useflush
method. 2. The non task-baseddelete
method has been deprecated. It only deletes the record of depot from the list of imported online software depots, instead of removing the depot’s content from the system.- Parameters
depot (
str
) – Identifier of the depot to be removed. The parameter must be an identifier for the resource type:com.vmware.esx.settings.depots.online
.- Raise
com.vmware.vapi.std.errors_client.Unauthenticated
If the caller is not authenticated.- Raise
com.vmware.vapi.std.errors_client.InvalidArgument
If the given depot is system-defined. This error is applicable to the task-baseddelete
method only.- Raise
com.vmware.vapi.std.errors_client.NotFound
If there is no depot associated with parameterdepot
in the system.- Raise
com.vmware.vapi.std.errors_client.ResourceInUse
If the content of depot to be deleted is used in some baseline or desired state. The value of the data attribute ofcom.vmware.vapi.std.errors_client.Error
will be the PrecheckResult class that lists the information of affected baselines and desired states. This error is applicable to the task-baseddelete
method only.- Raise
com.vmware.vapi.std.errors_client.ServiceUnavailable
If the service is not available.- Raise
com.vmware.vapi.std.errors_client.Error
If there some unknown internal error. The accompanying error message will give more details about the failure. For task-baseddelete
method, once the task is started, it does NOT stop if encountering an error. Instead, it will continuously run to completion. In this case, the value of the data attribute ofcom.vmware.vapi.std.errors_client.Error
will be the DeleteResult class that lists all the errors encountered.- Raise
com.vmware.vapi.std.errors_client.Unauthorized
if you do not have all of the privileges described as follows:Method execution requires
VcIntegrity.lifecycleDepots.Delete
.
-
delete_task
(depot)¶ The task-based
delete
method removes content of a user-imported online depot from vLCM completely. As a result, the URL of the user-imported online depot will also be removed. Note: 1. To remove content of system-defined online depots, useflush
method. 2. The non task-baseddelete
method has been deprecated. It only deletes the record of depot from the list of imported online software depots, instead of removing the depot’s content from the system.- Parameters
depot (
str
) – Identifier of the depot to be removed. The parameter must be an identifier for the resource type:com.vmware.esx.settings.depots.online
.- Raise
com.vmware.vapi.std.errors_client.Unauthenticated
If the caller is not authenticated.- Raise
com.vmware.vapi.std.errors_client.InvalidArgument
If the given depot is system-defined. This error is applicable to the task-baseddelete
method only.- Raise
com.vmware.vapi.std.errors_client.NotFound
If there is no depot associated with parameterdepot
in the system.- Raise
com.vmware.vapi.std.errors_client.ResourceInUse
If the content of depot to be deleted is used in some baseline or desired state. The value of the data attribute ofcom.vmware.vapi.std.errors_client.Error
will be the PrecheckResult class that lists the information of affected baselines and desired states. This error is applicable to the task-baseddelete
method only.- Raise
com.vmware.vapi.std.errors_client.ServiceUnavailable
If the service is not available.- Raise
com.vmware.vapi.std.errors_client.Error
If there some unknown internal error. The accompanying error message will give more details about the failure. For task-baseddelete
method, once the task is started, it does NOT stop if encountering an error. Instead, it will continuously run to completion. In this case, the value of the data attribute ofcom.vmware.vapi.std.errors_client.Error
will be the DeleteResult class that lists all the errors encountered.- Raise
com.vmware.vapi.std.errors_client.Unauthorized
if you do not have all of the privileges described as follows:Method execution requires
VcIntegrity.lifecycleDepots.Delete
.
-
flush_task
(depot)¶ The task-based
flush
method removes content of a system-defined online depot from vLCM completely. As a result, the system-defined online depot will be disabled. Note: To remove content of user-imported online depots, use the task-baseddelete
method.- Parameters
depot (
str
) – Identifier of the depot to be removed. The parameter must be an identifier for the resource type:com.vmware.esx.settings.depots.online
.- Raise
com.vmware.vapi.std.errors_client.Unauthenticated
If the caller is not authenticated.- Raise
com.vmware.vapi.std.errors_client.InvalidArgument
If the given depot is NOT system-defined.- Raise
com.vmware.vapi.std.errors_client.NotFound
If there is no depot associated with parameterdepot
in the system.- Raise
com.vmware.vapi.std.errors_client.ResourceInUse
If the content of depot to be deleted is used in some baseline or desired state. The value of the data attribute ofcom.vmware.vapi.std.errors_client.Error
will be the PrecheckResult class that lists the information of affected baselines and desired states.- Raise
com.vmware.vapi.std.errors_client.ServiceUnavailable
If the service is not available.- Raise
com.vmware.vapi.std.errors_client.Error
If there some unknown internal error. The accompanying error message will give more details about the failure.flush
is a task-based method. Once the task is started, it does NOT stop if encountering an error. Instead, it will continuously run to completion. In this case, the value of the data attribute ofcom.vmware.vapi.std.errors_client.Error
will be the FlushResult class that lists all the errors encountered.
-
get
(depot)¶ Gets the information about a currently configured online software depot.
- Parameters
depot (
str
) – Identifier for the depot. The parameter must be an identifier for the resource type:com.vmware.esx.settings.depots.online
.- Return type
- Returns
Information of the currently configured online software depot.
- Raise
com.vmware.vapi.std.errors_client.Unauthenticated
If the caller is not authenticated.- Raise
com.vmware.vapi.std.errors_client.NotFound
If there is no depot with given identifierdepot
in the system.- Raise
com.vmware.vapi.std.errors_client.ServiceUnavailable
If the service is not available.- Raise
com.vmware.vapi.std.errors_client.Error
If there is some unknown internal error. The accompanying error message will give more details about the failure.- Raise
com.vmware.vapi.std.errors_client.Unauthorized
if you do not have all of the privileges described as follows:Method execution requires
VcIntegrity.lifecycleSettings.Read
.
-
list
()¶ Returns a list of currently configured online software depots.
- Return type
dict
ofstr
andOnline.Summary
- Returns
Map of currently configured online software depots keyed by their identifiers. The key in the return value
dict
will be an identifier for the resource type:com.vmware.esx.settings.depots.online
.- Raise
com.vmware.vapi.std.errors_client.Unauthenticated
if the caller is not authenticated.- Raise
com.vmware.vapi.std.errors_client.ServiceUnavailable
If the service is not available.- Raise
com.vmware.vapi.std.errors_client.Error
If there is some unknown internal error. The accompanying error message will give more details about the failure.- Raise
com.vmware.vapi.std.errors_client.Unauthorized
if you do not have all of the privileges described as follows:Method execution requires
VcIntegrity.lifecycleSettings.Read
.
-
update
(depot, spec)¶ Updates the configuration of a currently configured online software depot.
- Parameters
depot (
str
) – Identifier of the depot to be updated. The parameter must be an identifier for the resource type:com.vmware.esx.settings.depots.online
.spec (
Online.UpdateSpec
) – Update specification.
- Raise
com.vmware.vapi.std.errors_client.Unauthenticated
If the caller is not authenticated.- Raise
com.vmware.vapi.std.errors_client.InvalidArgument
If given depot is system defined.- Raise
com.vmware.vapi.std.errors_client.NotFound
If there is no depot associated with parameterdepot
in the system.- Raise
com.vmware.vapi.std.errors_client.Error
If there is some unknown internal error. The accompanying error message will give more details about the failure.- Raise
com.vmware.vapi.std.errors_client.ServiceUnavailable
If the service is not available.- Raise
com.vmware.vapi.std.errors_client.Unauthorized
if you do not have all of the privileges described as follows:Method execution requires
VcIntegrity.lifecycleSettings.Write
.
-
class
com.vmware.esx.settings.depots_client.
SolutionSummary
(display_name=None, versions=None)¶ Bases:
vmware.vapi.bindings.struct.VapiStruct
The
SolutionSummary
class contains fields that describe the summary of a solution. This class was added in vSphere API 7.0.3.0.Tip
The arguments are used to initialize data attributes with the same names.
- Parameters
display_name (
str
) – Human readable name of the solution. This attribute was added in vSphere API 7.0.3.0.versions (
list
ofSolutionVersion
) – Different versions of the solution. This attribute was added in vSphere API 7.0.3.0.
-
class
com.vmware.esx.settings.depots_client.
SolutionVersion
(version=None, display_version=None)¶ Bases:
vmware.vapi.bindings.struct.VapiStruct
The
SolutionVersion
class contains fields that describe a specific version of a solution. This class was added in vSphere API 7.0.3.0.Tip
The arguments are used to initialize data attributes with the same names.
- Parameters
version (
str
) – Version of the solution. This attribute was added in vSphere API 7.0.3.0.display_version (
str
) – Human readable version of the solution. This attribute was added in vSphere API 7.0.3.0.
-
class
com.vmware.esx.settings.depots_client.
StubFactory
(stub_config)¶ Bases:
vmware.vapi.bindings.stub.StubFactoryBase
Initialize StubFactoryBase
- Parameters
stub_config (
vmware.vapi.bindings.stub.StubConfiguration
) – Stub config instance
-
class
com.vmware.esx.settings.depots_client.
SyncSchedule
(config)¶ Bases:
vmware.vapi.bindings.stub.VapiInterface
The
SyncSchedule
class provides methods to manage Schedule of Online Software Depot sync.- Parameters
config (
vmware.vapi.bindings.stub.StubConfiguration
) – Configuration to be used for creating the stub.
-
class
DayOfWeek
(string)¶ Bases:
vmware.vapi.bindings.enum.Enum
The
SyncSchedule.DayOfWeek
class contains the supported days of the week.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.
- Parameters
string (
str
) – String value for theDayOfWeek
instance.
-
FRIDAY
= DayOfWeek(string='FRIDAY')¶ Friday.
-
MONDAY
= DayOfWeek(string='MONDAY')¶ Monday.
-
SATURDAY
= DayOfWeek(string='SATURDAY')¶ Saturday.
-
SUNDAY
= DayOfWeek(string='SUNDAY')¶ Sunday.
-
THURSDAY
= DayOfWeek(string='THURSDAY')¶ Thursday.
-
TUESDAY
= DayOfWeek(string='TUESDAY')¶ Tuesday.
-
WEDNESDAY
= DayOfWeek(string='WEDNESDAY')¶ Wednesday.
-
class
Recurrence
(string)¶ Bases:
vmware.vapi.bindings.enum.Enum
The
SyncSchedule.Recurrence
class contains the supported values for how often to sync from online or UMDS depots.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.
- Parameters
string (
str
) – String value for theRecurrence
instance.
-
DAILY
= Recurrence(string='DAILY')¶ Daily.
-
HOURLY
= Recurrence(string='HOURLY')¶ Hourly.
-
MONTHLY_BY_DAY
= Recurrence(string='MONTHLY_BY_DAY')¶ Monthly by day.
-
WEEKLY
= Recurrence(string='WEEKLY')¶ Weekly.
-
class
Schedule
(type=None, skip=None, minute=None, hour=None, day_of_month=None, day_of_week=None)¶ Bases:
vmware.vapi.bindings.struct.VapiStruct
The
SyncSchedule.Schedule
class defines a schedule.Tip
The arguments are used to initialize data attributes with the same names.
- Parameters
type (
SyncSchedule.Recurrence
) – Frequency of the schedule.skip (
long
orNone
) – This determines the units ofSyncSchedule.Recurrence
to skip before the scheduled task runs again. For example, value of 1 for HOURLY type means the scheduled task runs every 2 hours. The value must be within the range 0 to 998. If None, no unit is skipped.minute (
long
) – Minute at which schedule should be run. The value must be within the range 0 to 59. This attribute is optional and it is only relevant when the value oftype
is one ofSyncSchedule.Recurrence.HOURLY
,SyncSchedule.Recurrence.DAILY
,SyncSchedule.Recurrence.WEEKLY
, orSyncSchedule.Recurrence.MONTHLY_BY_DAY
.hour (
long
) – Hour at which schedule should be run. The value must be within the range 0 to 23. This attribute is optional and it is only relevant when the value oftype
is one ofSyncSchedule.Recurrence.DAILY
,SyncSchedule.Recurrence.WEEKLY
, orSyncSchedule.Recurrence.MONTHLY_BY_DAY
.day_of_month (
long
) – Day at which schedule should be run. The value must be within the range 1 to 31. If the value exceeds the total number of days in the month, the schedule will run on the last day of the month. This attribute is optional and it is only relevant when the value oftype
isSyncSchedule.Recurrence.MONTHLY_BY_DAY
.day_of_week (
SyncSchedule.DayOfWeek
) – Day of the week when schedule should be run This attribute is optional and it is only relevant when the value oftype
isSyncSchedule.Recurrence.WEEKLY
.
-
class
Spec
(enabled=None, schedule=None, email_addresses=None)¶ Bases:
vmware.vapi.bindings.struct.VapiStruct
The
SyncSchedule.Spec
class defines the information regarding the sync schedule.Tip
The arguments are used to initialize data attributes with the same names.
- Parameters
enabled (
bool
) – Flag indicating whether automatic sync is enabled or notschedule (
SyncSchedule.Schedule
orNone
) – The schedule to check for new updates. If None the schedule must be disabled.email_addresses (
list
ofstr
) – Email addresses to which the notification will be sent. If empty, no notification is sent.
-
get
()¶ Returns the currently configured software depot sync schedule.
- Return type
- Returns
Currently configured sync schedule.
- Raise
com.vmware.vapi.std.errors_client.Unauthenticated
if the caller is not authenticated.- Raise
com.vmware.vapi.std.errors_client.ServiceUnavailable
If the service is not available.- Raise
com.vmware.vapi.std.errors_client.Error
If there is some unknown error. The accompanying error message will give more details about the failure.- Raise
com.vmware.vapi.std.errors_client.Unauthorized
if you do not have all of the privileges described as follows:Method execution requires
VcIntegrity.lifecycleSettings.Read
.
-
set
(spec=None)¶ Sets the software depot sync schedule.
- Parameters
spec (
SyncSchedule.Spec
orNone
) – Information of the software depot sync schedule. If None, it will be reset to the default schedule, which is daily at a random hour chosen when this API is called.- Raise
com.vmware.vapi.std.errors_client.Unauthenticated
if the caller is not authenticated.- Raise
com.vmware.vapi.std.errors_client.ServiceUnavailable
If the service is not available.- Raise
com.vmware.vapi.std.errors_client.InvalidArgument
IfSyncSchedule.Spec.schedule
is unset whileSyncSchedule.Spec.enabled
is set to true or if any of the values is not within valid range.- Raise
com.vmware.vapi.std.errors_client.Error
If there is some unknown error. The accompanying error message will give more details about the failure.- Raise
com.vmware.vapi.std.errors_client.Unauthorized
if you do not have all of the privileges described as follows:Method execution requires
VcIntegrity.lifecycleSettings.Write
.
-
class
com.vmware.esx.settings.depots_client.
Umds
(config)¶ Bases:
vmware.vapi.bindings.stub.VapiInterface
The
Umds
class provides methods to manage the VMware vSphere Update Manager Download Service (UMDS) software depot used during ESX lifecycle management. This is the depot downloaded using UMDS. If the UMDS depot is specified, then online depots are ignored and data is downloaded only from the UMDS depot.- Parameters
config (
vmware.vapi.bindings.stub.StubConfiguration
) – Configuration to be used for creating the stub.
-
class
DeleteResult
(notifications=None)¶ Bases:
vmware.vapi.bindings.struct.VapiStruct
The
Umds.DeleteResult
class contains a field that lists all the errors encountered after starting the task ofUmds.delete()
method. This class was added in vSphere API 7.0.3.0.Tip
The arguments are used to initialize data attributes with the same names.
- Parameters
notifications (
com.vmware.esx.settings_client.Notifications
orNone
) – Notifications returned byUmds.delete()
method. This attribute was added in vSphere API 7.0.3.0. If None, no notification is returned.
-
class
Info
(description=None, enabled=None, location=None, owner=None)¶ Bases:
vmware.vapi.bindings.struct.VapiStruct
The
Umds.Info
class defines the information regarding the UMDS Depot.Tip
The arguments are used to initialize data attributes with the same names.
- Parameters
description (
str
) – Description of the depot. It will be an empty string if no description was provided during create.enabled (
bool
) – Flag indicating whether or not this depot is enabled.location (
str
) – Location of the depot.owner (
str
orNone
) – Name of the user creating the depot. This attribute was added in vSphere API 7.0.3.0. This attribute is optional because it was added in a newer version than its parent node.
-
class
PrecheckResult
(affected_baselines=None, affected_desired_states=None)¶ Bases:
vmware.vapi.bindings.struct.VapiStruct
The
Umds.PrecheckResult
class contains the fields that show the details of affected baselines and desired states found inUmds.delete()
method. This class was added in vSphere API 7.0.3.0.Tip
The arguments are used to initialize data attributes with the same names.
- Parameters
affected_baselines (
list
ofAffectedBaselineInfo
orNone
) – Baselines affected. This attribute was added in vSphere API 7.0.3.0. If None, no baseline is affected.affected_desired_states (
list
ofAffectedDesiredStateInfo
orNone
) – Desired states affected. This attribute was added in vSphere API 7.0.3.0. If None, no desired state is affected.
-
class
SetSpec
(description=None, enabled=None, location=None)¶ Bases:
vmware.vapi.bindings.struct.VapiStruct
The
Umds.SetSpec
class defines the information of an UMDS depot.Tip
The arguments are used to initialize data attributes with the same names.
- Parameters
description (
str
orNone
) – Description of the depot. If None, the description will be empty.enabled (
bool
orNone
) – Flag indicating whether or not this depot should be enabled. Disabling the depot doesn’t delete its cached metadata and payloads. It will not be refreshed next time depots are re-synced. If None, the depot will be enabled.location (
str
) – Location of the depot. It should be the location to the index.xml for the depot.
-
class
UpdateSpec
(enabled=None, description=None)¶ Bases:
vmware.vapi.bindings.struct.VapiStruct
The
Umds.UpdateSpec
class defines the information used to update the UMDS depot.Tip
The arguments are used to initialize data attributes with the same names.
- Parameters
enabled (
bool
orNone
) – Flag indicating whether or not this depot is enabled. Disabling the depot doesn’t delete its cached metadata and payloads. It will not be refreshed next time depots are re-synced. If None, the enabled flag is not updated.description (
str
orNone
) – Description of the depot. If None, the description is not updated.
-
delete
()¶ The task-based
delete
method removes content of the UMDS depot from vLCM completely. Note: The non task-baseddelete
method has been deprecated. It deletes only the record of UMDS depot from database, instead of removing the content of UMDS depot from vLCM.- Raise
com.vmware.vapi.std.errors_client.Unauthenticated
If the caller is not authenticated.- Raise
com.vmware.vapi.std.errors_client.NotFound
If there is no UMDS depot configured in the system.- Raise
com.vmware.vapi.std.errors_client.ResourceInUse
If the content of UMDS depot to be deleted is used in some baseline or desired state. The value of the data attribute ofcom.vmware.vapi.std.errors_client.Error
will be the PrecheckResult class that lists the information of affected baselines and desired states. This error is applicable to the task-baseddelete
method only.- Raise
com.vmware.vapi.std.errors_client.ServiceUnavailable
If the service is not available.- Raise
com.vmware.vapi.std.errors_client.Error
If there some unknown internal error. The accompanying error message will give more details about the failure. For task-baseddelete
method, once the task is started, it does NOT stop if encountering an error. Instead, it will continuously run to completion. In this case, the value of the data attribute ofcom.vmware.vapi.std.errors_client.Error
will be the DeleteResult class that lists all the errors encountered.- Raise
com.vmware.vapi.std.errors_client.Unauthorized
if you do not have all of the privileges described as follows:Method execution requires
VcIntegrity.lifecycleDepots.Delete
.
-
delete_task
()¶ The task-based
delete
method removes content of the UMDS depot from vLCM completely. Note: The non task-baseddelete
method has been deprecated. It deletes only the record of UMDS depot from database, instead of removing the content of UMDS depot from vLCM.- Raise
com.vmware.vapi.std.errors_client.Unauthenticated
If the caller is not authenticated.- Raise
com.vmware.vapi.std.errors_client.NotFound
If there is no UMDS depot configured in the system.- Raise
com.vmware.vapi.std.errors_client.ResourceInUse
If the content of UMDS depot to be deleted is used in some baseline or desired state. The value of the data attribute ofcom.vmware.vapi.std.errors_client.Error
will be the PrecheckResult class that lists the information of affected baselines and desired states. This error is applicable to the task-baseddelete
method only.- Raise
com.vmware.vapi.std.errors_client.ServiceUnavailable
If the service is not available.- Raise
com.vmware.vapi.std.errors_client.Error
If there some unknown internal error. The accompanying error message will give more details about the failure. For task-baseddelete
method, once the task is started, it does NOT stop if encountering an error. Instead, it will continuously run to completion. In this case, the value of the data attribute ofcom.vmware.vapi.std.errors_client.Error
will be the DeleteResult class that lists all the errors encountered.- Raise
com.vmware.vapi.std.errors_client.Unauthorized
if you do not have all of the privileges described as follows:Method execution requires
VcIntegrity.lifecycleDepots.Delete
.
-
get
()¶ Gets the information about a currently configured UMDS software depot.
- Return type
- Returns
Information of the currently configured UMDS software depot.
- Raise
com.vmware.vapi.std.errors_client.Unauthenticated
If the caller is not authenticated.- Raise
com.vmware.vapi.std.errors_client.NotFound
If there is no UMDS software depot set.- Raise
com.vmware.vapi.std.errors_client.ServiceUnavailable
If the service is not available.- Raise
com.vmware.vapi.std.errors_client.Error
If there is some unknown internal error. The accompanying error message will give more details about the failure.- Raise
com.vmware.vapi.std.errors_client.Unauthorized
if you do not have all of the privileges described as follows:Method execution requires
VcIntegrity.lifecycleSettings.Read
.
-
set
(spec)¶ Sets or overwrites information about the UMDS software depot.
- Parameters
spec (
Umds.SetSpec
) – Specification to set the UMDS depot.- Raise
com.vmware.vapi.std.errors_client.Unauthenticated
If the caller is not authenticated.- Raise
com.vmware.vapi.std.errors_client.InvalidArgument
If an invalid location is provided.- Raise
com.vmware.vapi.std.errors_client.Error
If there is some unknown internal error. The accompanying error message will give more details about the failure.- Raise
com.vmware.vapi.std.errors_client.ServiceUnavailable
If the service is not available.- Raise
com.vmware.vapi.std.errors_client.Unauthorized
if you do not have all of the privileges described as follows:Method execution requires
VcIntegrity.lifecycleSettings.Write
.
-
update
(spec)¶ Updates the configuration of a currently configured UMDS software depot.
- Parameters
spec (
Umds.UpdateSpec
) – Update specification.- Raise
com.vmware.vapi.std.errors_client.Unauthenticated
If the caller is not authenticated.- Raise
com.vmware.vapi.std.errors_client.NotFound
If there is no UMDS depot configured.- Raise
com.vmware.vapi.std.errors_client.Error
If there is some unknown internal error. The accompanying error message will give more details about the failure.- Raise
com.vmware.vapi.std.errors_client.ServiceUnavailable
If the service is not available.- Raise
com.vmware.vapi.std.errors_client.Unauthorized
if you do not have all of the privileges described as follows:Method execution requires
VcIntegrity.lifecycleSettings.Write
.
-
class
com.vmware.esx.settings.depots_client.
UpdateSummary
(summary=None)¶ Bases:
vmware.vapi.bindings.struct.VapiStruct
The
UpdateSummary
class contains a fieldsthat describes the summary of an update (bulletin). This class was added in vSphere API 7.0.3.0.Tip
The arguments are used to initialize data attributes with the same names.
- Parameters
summary (
str
) – Summary of the update (bulletin). This attribute was added in vSphere API 7.0.3.0.
com.vmware.esx.settings.hardware_support_client module¶
-
class
com.vmware.esx.settings.hardware_support_client.
Managers
(config)¶ Bases:
vmware.vapi.bindings.stub.VapiInterface
The
Managers
class provides methods to list Hardware Support Manager (HSM) for a given vCenter.- Parameters
config (
vmware.vapi.bindings.stub.StubConfiguration
) – Configuration to be used for creating the stub.
-
class
HardwareSupportManagerInfo
(manager=None, description=None, display_name=None, vendor=None)¶ Bases:
vmware.vapi.bindings.struct.VapiStruct
The
Managers.HardwareSupportManagerInfo
class contains attributes that describe a particular 3rd party Hardware Support Manager (HSM)Tip
The arguments are used to initialize data attributes with the same names.
- Parameters
manager (
str
) – Name of the Hardware Support Manager (HSM) (e.g. “Frobozz Hardware Support Manager”) When clients pass a value of this class as a parameter, the attribute must be an identifier for the resource type:com.vmware.esx.setting.hardware_support.manager
. When methods return a value of this class as a return value, the attribute will be an identifier for the resource type:com.vmware.esx.setting.hardware_support.manager
.description (
str
) – User-intelligible description of the HSM (e.g. “Front end for Frobozz so-and-so management system”)display_name (
str
) – UI label for HSM, derived from HSM extension’s description’s ‘label’ field. (e.g. “Frobozz Free Management System”)vendor (
str
) – Company providing the Hardware Support Manager (HSM) (e.g. “Frobozz Magic Software Company”)
-
list
()¶ Returns the list of registered Hardware Support Managers (HSMs) in the system.
- Return type
- Returns
List of currently registered Hardware Support Manager (HSMs)
- Raise
com.vmware.vapi.std.errors_client.Error
If there is some unknown internal error. The accompanying error message will give more details about the failure.- Raise
com.vmware.vapi.std.errors_client.ServiceUnavailable
If the service is not available.- Raise
com.vmware.vapi.std.errors_client.Unauthenticated
if the caller is not authenticated.- Raise
com.vmware.vapi.std.errors_client.Unauthorized
if you do not have all of the privileges described as follows:Method execution requires
VcIntegrity.lifecycleSettings.Read
.
-
class
com.vmware.esx.settings.hardware_support_client.
StubFactory
(stub_config)¶ Bases:
vmware.vapi.bindings.stub.StubFactoryBase
Initialize StubFactoryBase
- Parameters
stub_config (
vmware.vapi.bindings.stub.StubConfiguration
) – Stub config instance
com.vmware.esx.settings.hosts_client module¶
The com.vmware.esx.settings.hosts_client
module provides classes to manage
desired state configuration and software for a standalone ESX host.
-
class
com.vmware.esx.settings.hosts_client.
Software
(config)¶ Bases:
vmware.vapi.bindings.stub.VapiInterface
The
Software
class provides methods to manage desired software specification of a standalone ESX host.- Parameters
config (
vmware.vapi.bindings.stub.StubConfiguration
) – Configuration to be used for creating the stub.
-
scan_task
(host)¶ Scans the host against the host’s desired state.. The result of this operation can be queried by calling the cis/tasks/{task-id} where the task-id is the response of this operation.
- Parameters
host (
str
) – Identifier of the host. The parameter must be an identifier for the resource type:HostSystem
.- Return type
- class
vmware.vapi.stdlib.client.task.Task
- Returns
Task instance
- Raise
com.vmware.vapi.std.errors_client.Error
If there is unknown internal error. The accompanying error message will give more details about the failure.- Raise
com.vmware.vapi.std.errors_client.NotFound
If there is no host associated withhost
in the system or if desired software document is not found.- Raise
com.vmware.vapi.std.errors_client.ServiceUnavailable
If the service is not available.- Raise
com.vmware.vapi.std.errors_client.Unauthenticated
If the caller is not authenticated.- Raise
com.vmware.vapi.std.errors_client.Unsupported
If the host is not a standlone host, but instead part of a cluster.
-
class
com.vmware.esx.settings.hosts_client.
StubFactory
(stub_config)¶ Bases:
vmware.vapi.bindings.stub.StubFactoryBase
Initialize StubFactoryBase
- Parameters
stub_config (
vmware.vapi.bindings.stub.StubConfiguration
) – Stub config instance