public interface Components extends Service, ComponentsTypes
Components interface provides methods to manage component
specification in a software draft. This interface was added in vSphere API
8.0.0.1.ComponentsTypes.UpdateSpec_VAPI_SERVICE_ID, RESOURCE_TYPE| Modifier and Type | Method and Description |
|---|---|
void |
delete(java.lang.String host,
java.lang.String draft,
java.lang.String component)
Deletes the given component from the software draft.
|
void |
delete(java.lang.String host,
java.lang.String draft,
java.lang.String component,
AsyncCallback<java.lang.Void> asyncCallback)
Deletes the given component from the software draft.
|
void |
delete(java.lang.String host,
java.lang.String draft,
java.lang.String component,
AsyncCallback<java.lang.Void> asyncCallback,
InvocationConfig invocationConfig)
Deletes the given component from the software draft.
|
void |
delete(java.lang.String host,
java.lang.String draft,
java.lang.String component,
InvocationConfig invocationConfig)
Deletes the given component from the software draft.
|
ComponentInfo |
get(java.lang.String host,
java.lang.String draft,
java.lang.String component)
Returns the component version for the given component in the software draft.
|
void |
get(java.lang.String host,
java.lang.String draft,
java.lang.String component,
AsyncCallback<ComponentInfo> asyncCallback)
Returns the component version for the given component in the software draft.
|
void |
get(java.lang.String host,
java.lang.String draft,
java.lang.String component,
AsyncCallback<ComponentInfo> asyncCallback,
InvocationConfig invocationConfig)
Returns the component version for the given component in the software draft.
|
ComponentInfo |
get(java.lang.String host,
java.lang.String draft,
java.lang.String component,
InvocationConfig invocationConfig)
Returns the component version for the given component in the software draft.
|
java.util.Map<java.lang.String,ComponentInfo> |
list(java.lang.String host,
java.lang.String draft)
Returns the components that comprise the software draft.
|
void |
list(java.lang.String host,
java.lang.String draft,
AsyncCallback<java.util.Map<java.lang.String,ComponentInfo>> asyncCallback)
Returns the components that comprise the software draft.
|
void |
list(java.lang.String host,
java.lang.String draft,
AsyncCallback<java.util.Map<java.lang.String,ComponentInfo>> asyncCallback,
InvocationConfig invocationConfig)
Returns the components that comprise the software draft.
|
java.util.Map<java.lang.String,ComponentInfo> |
list(java.lang.String host,
java.lang.String draft,
InvocationConfig invocationConfig)
Returns the components that comprise the software draft.
|
void |
set(java.lang.String host,
java.lang.String draft,
java.lang.String component,
java.lang.String version)
Set the component version for a given component in the software draft.
|
void |
set(java.lang.String host,
java.lang.String draft,
java.lang.String component,
java.lang.String version,
AsyncCallback<java.lang.Void> asyncCallback)
Set the component version for a given component in the software draft.
|
void |
set(java.lang.String host,
java.lang.String draft,
java.lang.String component,
java.lang.String version,
AsyncCallback<java.lang.Void> asyncCallback,
InvocationConfig invocationConfig)
Set the component version for a given component in the software draft.
|
void |
set(java.lang.String host,
java.lang.String draft,
java.lang.String component,
java.lang.String version,
InvocationConfig invocationConfig)
Set the component version for a given component in the software draft.
|
void |
update(java.lang.String host,
java.lang.String draft,
ComponentsTypes.UpdateSpec spec)
Updates the list of components in a given draft.
|
void |
update(java.lang.String host,
java.lang.String draft,
ComponentsTypes.UpdateSpec spec,
AsyncCallback<java.lang.Void> asyncCallback)
Updates the list of components in a given draft.
|
void |
update(java.lang.String host,
java.lang.String draft,
ComponentsTypes.UpdateSpec spec,
AsyncCallback<java.lang.Void> asyncCallback,
InvocationConfig invocationConfig)
Updates the list of components in a given draft.
|
void |
update(java.lang.String host,
java.lang.String draft,
ComponentsTypes.UpdateSpec spec,
InvocationConfig invocationConfig)
Updates the list of components in a given draft.
|
ComponentInfo get(java.lang.String host, java.lang.String draft, java.lang.String component)
Synchronous method overload. Result of the invocation will be reported as a method return value.
host - Identifier of the host.
The parameter must be an identifier for the resource type: HostSystem.draft - Identifier of the working copy document.
The parameter must be an identifier for the resource type: com.vmware.esx.settings.draft.component - Identifier of the component.
The parameter must be an identifier for the resource type: com.vmware.esx.settings.component.null then version will be chosen based on the constraints in the
system.Error - If there is unknown internal error. The accompanying error message will give
more details about the failure.NotFound - If there is no host associated with host or no draft associated with
draft or no component associated with component in the system.ServiceUnavailable - If the service is not available.Unauthenticated - if the caller is not authenticated.Unsupported - If the host is not a vLCM managed standlone host.Unauthorized - if you do not have all of the privileges described as follows: VcIntegrity.lifecycleSoftwareSpecification.Read.
HostSystem referenced by the parameter host requires VcIntegrity.lifecycleSoftwareSpecification.Read.
ComponentInfo get(java.lang.String host, java.lang.String draft, java.lang.String component, InvocationConfig invocationConfig)
Synchronous method overload. Result of the invocation will be
reported as a method return value.
Use invocationConfig to specify configuration for this particular invocation.
host - Identifier of the host.
The parameter must be an identifier for the resource type: HostSystem.draft - Identifier of the working copy document.
The parameter must be an identifier for the resource type: com.vmware.esx.settings.draft.component - Identifier of the component.
The parameter must be an identifier for the resource type: com.vmware.esx.settings.component.invocationConfig - Configuration for the method invocation.null then version will be chosen based on the constraints in the
system.Error - If there is unknown internal error. The accompanying error message will give
more details about the failure.NotFound - If there is no host associated with host or no draft associated with
draft or no component associated with component in the system.ServiceUnavailable - If the service is not available.Unauthenticated - if the caller is not authenticated.Unsupported - If the host is not a vLCM managed standlone host.Unauthorized - if you do not have all of the privileges described as follows: VcIntegrity.lifecycleSoftwareSpecification.Read.
HostSystem referenced by the parameter host requires VcIntegrity.lifecycleSoftwareSpecification.Read.
void get(java.lang.String host,
java.lang.String draft,
java.lang.String component,
AsyncCallback<ComponentInfo> asyncCallback)
Asynchronous method overload. Result of the invocation will be
reported via the specified asyncCallback.
Invocation Result:
Information about component version.
If null then version will be chosen based on the constraints in the
system.
Operation Errors:
Error - If there is unknown internal error. The accompanying error message will give
more details about the failure.
NotFound - If there is no host associated with host or no draft associated with
draft or no component associated with component in the system.
ServiceUnavailable - If the service is not available.
Unauthenticated - if the caller is not authenticated.
Unsupported - If the host is not a vLCM managed standlone host.
Unauthorized - if you do not have all of the privileges described as follows:
VcIntegrity.lifecycleSoftwareSpecification.Read.
HostSystem referenced by the parameter host requires VcIntegrity.lifecycleSoftwareSpecification.Read.
host - Identifier of the host.
The parameter must be an identifier for the resource type: HostSystem.draft - Identifier of the working copy document.
The parameter must be an identifier for the resource type: com.vmware.esx.settings.draft.component - Identifier of the component.
The parameter must be an identifier for the resource type: com.vmware.esx.settings.component.asyncCallback - Receives the status (progress, result or error) of the operation invocation.void get(java.lang.String host,
java.lang.String draft,
java.lang.String component,
AsyncCallback<ComponentInfo> asyncCallback,
InvocationConfig invocationConfig)
Asynchronous method overload. Result of the invocation will be
reported via the specified asyncCallback.
Use invocationConfig to specify configuration for this particular invocation.
Invocation Result:
Information about component version.
If null then version will be chosen based on the constraints in the
system.
Operation Errors:
Error - If there is unknown internal error. The accompanying error message will give
more details about the failure.
NotFound - If there is no host associated with host or no draft associated with
draft or no component associated with component in the system.
ServiceUnavailable - If the service is not available.
Unauthenticated - if the caller is not authenticated.
Unsupported - If the host is not a vLCM managed standlone host.
Unauthorized - if you do not have all of the privileges described as follows:
VcIntegrity.lifecycleSoftwareSpecification.Read.
HostSystem referenced by the parameter host requires VcIntegrity.lifecycleSoftwareSpecification.Read.
host - Identifier of the host.
The parameter must be an identifier for the resource type: HostSystem.draft - Identifier of the working copy document.
The parameter must be an identifier for the resource type: com.vmware.esx.settings.draft.component - Identifier of the component.
The parameter must be an identifier for the resource type: com.vmware.esx.settings.component.asyncCallback - Receives the status (progress, result or error) of the operation invocation.invocationConfig - Configuration for the method invocation.void set(java.lang.String host,
java.lang.String draft,
java.lang.String component,
java.lang.String version)
Synchronous method overload. Result of the invocation will be reported as a method return value.
host - Identifier of the host.
The parameter must be an identifier for the resource type: HostSystem.draft - Identifier of the working copy document.
The parameter must be an identifier for the resource type: com.vmware.esx.settings.draft.component - Identifier of the component.
The parameter must be an identifier for the resource type: com.vmware.esx.settings.component.version - Component version.
This property is currently required. In the future,if this property is null then version is chosen based on the constraints in the system.Error - If there is some unknown internal error. The accompanying error message will
give more details about the failure.NotFound - If there is no host associated with host or no draft associated with
draft in the system.ServiceUnavailable - If the service is not available.Unauthenticated - If the caller is not authenticated.Unsupported - If the host is not a vLCM managed standlone host.Unauthorized - if you do not have all of the privileges described as follows: VcIntegrity.lifecycleSoftwareSpecification.Write.
HostSystem referenced by the parameter host requires VcIntegrity.lifecycleSoftwareSpecification.Write.
void set(java.lang.String host,
java.lang.String draft,
java.lang.String component,
java.lang.String version,
InvocationConfig invocationConfig)
Synchronous method overload. Result of the invocation will be
reported as a method return value.
Use invocationConfig to specify configuration for this particular invocation.
host - Identifier of the host.
The parameter must be an identifier for the resource type: HostSystem.draft - Identifier of the working copy document.
The parameter must be an identifier for the resource type: com.vmware.esx.settings.draft.component - Identifier of the component.
The parameter must be an identifier for the resource type: com.vmware.esx.settings.component.version - Component version.
This property is currently required. In the future,if this property is null then version is chosen based on the constraints in the system.invocationConfig - Configuration for the method invocation.Error - If there is some unknown internal error. The accompanying error message will
give more details about the failure.NotFound - If there is no host associated with host or no draft associated with
draft in the system.ServiceUnavailable - If the service is not available.Unauthenticated - If the caller is not authenticated.Unsupported - If the host is not a vLCM managed standlone host.Unauthorized - if you do not have all of the privileges described as follows: VcIntegrity.lifecycleSoftwareSpecification.Write.
HostSystem referenced by the parameter host requires VcIntegrity.lifecycleSoftwareSpecification.Write.
void set(java.lang.String host,
java.lang.String draft,
java.lang.String component,
java.lang.String version,
AsyncCallback<java.lang.Void> asyncCallback)
Asynchronous method overload. Result of the invocation will be
reported via the specified asyncCallback.
Operation Errors:
Error - If there is some unknown internal error. The accompanying error message will
give more details about the failure.
NotFound - If there is no host associated with host or no draft associated with
draft in the system.
ServiceUnavailable - If the service is not available.
Unauthenticated - If the caller is not authenticated.
Unsupported - If the host is not a vLCM managed standlone host.
Unauthorized - if you do not have all of the privileges described as follows:
VcIntegrity.lifecycleSoftwareSpecification.Write.
HostSystem referenced by the parameter host requires VcIntegrity.lifecycleSoftwareSpecification.Write.
host - Identifier of the host.
The parameter must be an identifier for the resource type: HostSystem.draft - Identifier of the working copy document.
The parameter must be an identifier for the resource type: com.vmware.esx.settings.draft.component - Identifier of the component.
The parameter must be an identifier for the resource type: com.vmware.esx.settings.component.version - Component version.
This property is currently required. In the future,if this property is null then version is chosen based on the constraints in the system.asyncCallback - Receives the status (progress, result or error) of the operation invocation.void set(java.lang.String host,
java.lang.String draft,
java.lang.String component,
java.lang.String version,
AsyncCallback<java.lang.Void> asyncCallback,
InvocationConfig invocationConfig)
Asynchronous method overload. Result of the invocation will be
reported via the specified asyncCallback.
Use invocationConfig to specify configuration for this particular invocation.
Operation Errors:
Error - If there is some unknown internal error. The accompanying error message will
give more details about the failure.
NotFound - If there is no host associated with host or no draft associated with
draft in the system.
ServiceUnavailable - If the service is not available.
Unauthenticated - If the caller is not authenticated.
Unsupported - If the host is not a vLCM managed standlone host.
Unauthorized - if you do not have all of the privileges described as follows:
VcIntegrity.lifecycleSoftwareSpecification.Write.
HostSystem referenced by the parameter host requires VcIntegrity.lifecycleSoftwareSpecification.Write.
host - Identifier of the host.
The parameter must be an identifier for the resource type: HostSystem.draft - Identifier of the working copy document.
The parameter must be an identifier for the resource type: com.vmware.esx.settings.draft.component - Identifier of the component.
The parameter must be an identifier for the resource type: com.vmware.esx.settings.component.version - Component version.
This property is currently required. In the future,if this property is null then version is chosen based on the constraints in the system.asyncCallback - Receives the status (progress, result or error) of the operation invocation.invocationConfig - Configuration for the method invocation.void delete(java.lang.String host,
java.lang.String draft,
java.lang.String component)
Synchronous method overload. Result of the invocation will be reported as a method return value.
host - Identifier of the host.
The parameter must be an identifier for the resource type: HostSystem.draft - Identifier of the working copy document.
The parameter must be an identifier for the resource type: com.vmware.esx.settings.draft.component - Identifier of the component.
The parameter must be an identifier for the resource type: com.vmware.esx.settings.component.Error - If there is some unknown internal error. The accompanying error message will
give more details about the failure.NotFound - If there is no host associated with host or no draft associated with
draft or no component associated with component in the system.ServiceUnavailable - If the service is not available.Unauthenticated - if the caller is not authenticated.Unsupported - If the host is not a vLCM managed standlone host.Unauthorized - if you do not have all of the privileges described as follows: VcIntegrity.lifecycleSoftwareSpecification.Write.
HostSystem referenced by the parameter host requires VcIntegrity.lifecycleSoftwareSpecification.Write.
void delete(java.lang.String host,
java.lang.String draft,
java.lang.String component,
InvocationConfig invocationConfig)
Synchronous method overload. Result of the invocation will be
reported as a method return value.
Use invocationConfig to specify configuration for this particular invocation.
host - Identifier of the host.
The parameter must be an identifier for the resource type: HostSystem.draft - Identifier of the working copy document.
The parameter must be an identifier for the resource type: com.vmware.esx.settings.draft.component - Identifier of the component.
The parameter must be an identifier for the resource type: com.vmware.esx.settings.component.invocationConfig - Configuration for the method invocation.Error - If there is some unknown internal error. The accompanying error message will
give more details about the failure.NotFound - If there is no host associated with host or no draft associated with
draft or no component associated with component in the system.ServiceUnavailable - If the service is not available.Unauthenticated - if the caller is not authenticated.Unsupported - If the host is not a vLCM managed standlone host.Unauthorized - if you do not have all of the privileges described as follows: VcIntegrity.lifecycleSoftwareSpecification.Write.
HostSystem referenced by the parameter host requires VcIntegrity.lifecycleSoftwareSpecification.Write.
void delete(java.lang.String host,
java.lang.String draft,
java.lang.String component,
AsyncCallback<java.lang.Void> asyncCallback)
Asynchronous method overload. Result of the invocation will be
reported via the specified asyncCallback.
Operation Errors:
Error - If there is some unknown internal error. The accompanying error message will
give more details about the failure.
NotFound - If there is no host associated with host or no draft associated with
draft or no component associated with component in the system.
ServiceUnavailable - If the service is not available.
Unauthenticated - if the caller is not authenticated.
Unsupported - If the host is not a vLCM managed standlone host.
Unauthorized - if you do not have all of the privileges described as follows:
VcIntegrity.lifecycleSoftwareSpecification.Write.
HostSystem referenced by the parameter host requires VcIntegrity.lifecycleSoftwareSpecification.Write.
host - Identifier of the host.
The parameter must be an identifier for the resource type: HostSystem.draft - Identifier of the working copy document.
The parameter must be an identifier for the resource type: com.vmware.esx.settings.draft.component - Identifier of the component.
The parameter must be an identifier for the resource type: com.vmware.esx.settings.component.asyncCallback - Receives the status (progress, result or error) of the operation invocation.void delete(java.lang.String host,
java.lang.String draft,
java.lang.String component,
AsyncCallback<java.lang.Void> asyncCallback,
InvocationConfig invocationConfig)
Asynchronous method overload. Result of the invocation will be
reported via the specified asyncCallback.
Use invocationConfig to specify configuration for this particular invocation.
Operation Errors:
Error - If there is some unknown internal error. The accompanying error message will
give more details about the failure.
NotFound - If there is no host associated with host or no draft associated with
draft or no component associated with component in the system.
ServiceUnavailable - If the service is not available.
Unauthenticated - if the caller is not authenticated.
Unsupported - If the host is not a vLCM managed standlone host.
Unauthorized - if you do not have all of the privileges described as follows:
VcIntegrity.lifecycleSoftwareSpecification.Write.
HostSystem referenced by the parameter host requires VcIntegrity.lifecycleSoftwareSpecification.Write.
host - Identifier of the host.
The parameter must be an identifier for the resource type: HostSystem.draft - Identifier of the working copy document.
The parameter must be an identifier for the resource type: com.vmware.esx.settings.draft.component - Identifier of the component.
The parameter must be an identifier for the resource type: com.vmware.esx.settings.component.asyncCallback - Receives the status (progress, result or error) of the operation invocation.invocationConfig - Configuration for the method invocation.void update(java.lang.String host,
java.lang.String draft,
ComponentsTypes.UpdateSpec spec)
Synchronous method overload. Result of the invocation will be reported as a method return value.
host - Identifier of the host.
The parameter must be an identifier for the resource type: HostSystem.draft - Identifier of the working copy document.
The parameter must be an identifier for the resource type: com.vmware.esx.settings.draft.spec - Update specification containing list of components to add and/or delete.Error - If there is some unknown internal error. The accompanying error message will
give more details about the failure.NotFound - If there is no host associated with host or no draft associated with
draft in the system.ServiceUnavailable - If the service is not available.Unauthenticated - If the caller is not authenticated.Unsupported - If the host is not a vLCM managed standlone host.Unauthorized - if you do not have all of the privileges described as follows: VcIntegrity.lifecycleSoftwareSpecification.Write.
HostSystem referenced by the parameter host requires VcIntegrity.lifecycleSoftwareSpecification.Write.
void update(java.lang.String host,
java.lang.String draft,
ComponentsTypes.UpdateSpec spec,
InvocationConfig invocationConfig)
Synchronous method overload. Result of the invocation will be
reported as a method return value.
Use invocationConfig to specify configuration for this particular invocation.
host - Identifier of the host.
The parameter must be an identifier for the resource type: HostSystem.draft - Identifier of the working copy document.
The parameter must be an identifier for the resource type: com.vmware.esx.settings.draft.spec - Update specification containing list of components to add and/or delete.invocationConfig - Configuration for the method invocation.Error - If there is some unknown internal error. The accompanying error message will
give more details about the failure.NotFound - If there is no host associated with host or no draft associated with
draft in the system.ServiceUnavailable - If the service is not available.Unauthenticated - If the caller is not authenticated.Unsupported - If the host is not a vLCM managed standlone host.Unauthorized - if you do not have all of the privileges described as follows: VcIntegrity.lifecycleSoftwareSpecification.Write.
HostSystem referenced by the parameter host requires VcIntegrity.lifecycleSoftwareSpecification.Write.
void update(java.lang.String host,
java.lang.String draft,
ComponentsTypes.UpdateSpec spec,
AsyncCallback<java.lang.Void> asyncCallback)
Asynchronous method overload. Result of the invocation will be
reported via the specified asyncCallback.
Operation Errors:
Error - If there is some unknown internal error. The accompanying error message will
give more details about the failure.
NotFound - If there is no host associated with host or no draft associated with
draft in the system.
ServiceUnavailable - If the service is not available.
Unauthenticated - If the caller is not authenticated.
Unsupported - If the host is not a vLCM managed standlone host.
Unauthorized - if you do not have all of the privileges described as follows:
VcIntegrity.lifecycleSoftwareSpecification.Write.
HostSystem referenced by the parameter host requires VcIntegrity.lifecycleSoftwareSpecification.Write.
host - Identifier of the host.
The parameter must be an identifier for the resource type: HostSystem.draft - Identifier of the working copy document.
The parameter must be an identifier for the resource type: com.vmware.esx.settings.draft.spec - Update specification containing list of components to add and/or delete.asyncCallback - Receives the status (progress, result or error) of the operation invocation.void update(java.lang.String host,
java.lang.String draft,
ComponentsTypes.UpdateSpec spec,
AsyncCallback<java.lang.Void> asyncCallback,
InvocationConfig invocationConfig)
Asynchronous method overload. Result of the invocation will be
reported via the specified asyncCallback.
Use invocationConfig to specify configuration for this particular invocation.
Operation Errors:
Error - If there is some unknown internal error. The accompanying error message will
give more details about the failure.
NotFound - If there is no host associated with host or no draft associated with
draft in the system.
ServiceUnavailable - If the service is not available.
Unauthenticated - If the caller is not authenticated.
Unsupported - If the host is not a vLCM managed standlone host.
Unauthorized - if you do not have all of the privileges described as follows:
VcIntegrity.lifecycleSoftwareSpecification.Write.
HostSystem referenced by the parameter host requires VcIntegrity.lifecycleSoftwareSpecification.Write.
host - Identifier of the host.
The parameter must be an identifier for the resource type: HostSystem.draft - Identifier of the working copy document.
The parameter must be an identifier for the resource type: com.vmware.esx.settings.draft.spec - Update specification containing list of components to add and/or delete.asyncCallback - Receives the status (progress, result or error) of the operation invocation.invocationConfig - Configuration for the method invocation.java.util.Map<java.lang.String,ComponentInfo> list(java.lang.String host, java.lang.String draft)
Synchronous method overload. Result of the invocation will be reported as a method return value.
host - Identifier of the host.
The parameter must be an identifier for the resource type: HostSystem.draft - Identifier of the working copy document.
The parameter must be an identifier for the resource type: com.vmware.esx.settings.draft.Map will be an identifier for the
resource type: com.vmware.esx.settings.component.Error - If there is some unknown internal error. The accompanying error message will
give more details about the failure.NotFound - If there is no host associated with host or no draft associated with
draft in the system.ServiceUnavailable - If the service is not available.Unauthenticated - If the caller is not authenticated.Unsupported - If the host is not a vLCM managed standlone host.Unauthorized - if you do not have all of the privileges described as follows: VcIntegrity.lifecycleSoftwareSpecification.Read.
HostSystem referenced by the parameter host requires VcIntegrity.lifecycleSoftwareSpecification.Read.
java.util.Map<java.lang.String,ComponentInfo> list(java.lang.String host, java.lang.String draft, InvocationConfig invocationConfig)
Synchronous method overload. Result of the invocation will be
reported as a method return value.
Use invocationConfig to specify configuration for this particular invocation.
host - Identifier of the host.
The parameter must be an identifier for the resource type: HostSystem.draft - Identifier of the working copy document.
The parameter must be an identifier for the resource type: com.vmware.esx.settings.draft.invocationConfig - Configuration for the method invocation.Map will be an identifier for the
resource type: com.vmware.esx.settings.component.Error - If there is some unknown internal error. The accompanying error message will
give more details about the failure.NotFound - If there is no host associated with host or no draft associated with
draft in the system.ServiceUnavailable - If the service is not available.Unauthenticated - If the caller is not authenticated.Unsupported - If the host is not a vLCM managed standlone host.Unauthorized - if you do not have all of the privileges described as follows: VcIntegrity.lifecycleSoftwareSpecification.Read.
HostSystem referenced by the parameter host requires VcIntegrity.lifecycleSoftwareSpecification.Read.
void list(java.lang.String host,
java.lang.String draft,
AsyncCallback<java.util.Map<java.lang.String,ComponentInfo>> asyncCallback)
Asynchronous method overload. Result of the invocation will be
reported via the specified asyncCallback.
Invocation Result:
Map of component version information keyed by the component identifier.
The key in the return value Map will be an identifier for the
resource type: com.vmware.esx.settings.component.
Operation Errors:
Error - If there is some unknown internal error. The accompanying error message will
give more details about the failure.
NotFound - If there is no host associated with host or no draft associated with
draft in the system.
ServiceUnavailable - If the service is not available.
Unauthenticated - If the caller is not authenticated.
Unsupported - If the host is not a vLCM managed standlone host.
Unauthorized - if you do not have all of the privileges described as follows:
VcIntegrity.lifecycleSoftwareSpecification.Read.
HostSystem referenced by the parameter host requires VcIntegrity.lifecycleSoftwareSpecification.Read.
host - Identifier of the host.
The parameter must be an identifier for the resource type: HostSystem.draft - Identifier of the working copy document.
The parameter must be an identifier for the resource type: com.vmware.esx.settings.draft.asyncCallback - Receives the status (progress, result or error) of the operation invocation.void list(java.lang.String host,
java.lang.String draft,
AsyncCallback<java.util.Map<java.lang.String,ComponentInfo>> asyncCallback,
InvocationConfig invocationConfig)
Asynchronous method overload. Result of the invocation will be
reported via the specified asyncCallback.
Use invocationConfig to specify configuration for this particular invocation.
Invocation Result:
Map of component version information keyed by the component identifier.
The key in the return value Map will be an identifier for the
resource type: com.vmware.esx.settings.component.
Operation Errors:
Error - If there is some unknown internal error. The accompanying error message will
give more details about the failure.
NotFound - If there is no host associated with host or no draft associated with
draft in the system.
ServiceUnavailable - If the service is not available.
Unauthenticated - If the caller is not authenticated.
Unsupported - If the host is not a vLCM managed standlone host.
Unauthorized - if you do not have all of the privileges described as follows:
VcIntegrity.lifecycleSoftwareSpecification.Read.
HostSystem referenced by the parameter host requires VcIntegrity.lifecycleSoftwareSpecification.Read.
host - Identifier of the host.
The parameter must be an identifier for the resource type: HostSystem.draft - Identifier of the working copy document.
The parameter must be an identifier for the resource type: com.vmware.esx.settings.draft.asyncCallback - Receives the status (progress, result or error) of the operation invocation.invocationConfig - Configuration for the method invocation.