public interface Commits extends Service, CommitsTypes
Commits
interface provides methods to manage committed changes to
desired software document.CommitsTypes.Info
_VAPI_SERVICE_ID, RESOURCE_TYPE
Modifier and Type | Method and Description |
---|---|
CommitsTypes.Info |
get(java.lang.String cluster,
java.lang.String commit)
Returns the information about a specific commit.
|
void |
get(java.lang.String cluster,
java.lang.String commit,
AsyncCallback<CommitsTypes.Info> asyncCallback)
Returns the information about a specific commit.
|
void |
get(java.lang.String cluster,
java.lang.String commit,
AsyncCallback<CommitsTypes.Info> asyncCallback,
InvocationConfig invocationConfig)
Returns the information about a specific commit.
|
CommitsTypes.Info |
get(java.lang.String cluster,
java.lang.String commit,
InvocationConfig invocationConfig)
Returns the information about a specific commit.
|
CommitsTypes.Info get(java.lang.String cluster, java.lang.String commit)
Synchronous method overload. Result of the invocation will be reported as a method return value.
cluster
- Identifier of the cluster.
The parameter must be an identifier for the resource type: ClusterComputeResource
.commit
- Identifier of the specific commit.
The parameter must be an identifier for the resource type: com.vmware.esx.settings.commit
.Error
- If there is unknown internal error. The accompanying error message will give
more details about the failure.NotFound
- If there is no cluster associated with cluster
in the system or if
desired specification commit is not found.ServiceUnavailable
- If the service is not available.Unauthenticated
- If the caller is not authenticated.CommitsTypes.Info get(java.lang.String cluster, java.lang.String commit, 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.
cluster
- Identifier of the cluster.
The parameter must be an identifier for the resource type: ClusterComputeResource
.commit
- Identifier of the specific commit.
The parameter must be an identifier for the resource type: com.vmware.esx.settings.commit
.invocationConfig
- Configuration for the method invocation.Error
- If there is unknown internal error. The accompanying error message will give
more details about the failure.NotFound
- If there is no cluster associated with cluster
in the system or if
desired specification commit is not found.ServiceUnavailable
- If the service is not available.Unauthenticated
- If the caller is not authenticated.void get(java.lang.String cluster, java.lang.String commit, AsyncCallback<CommitsTypes.Info> asyncCallback)
Asynchronous method overload. Result of the invocation will be
reported via the specified asyncCallback
.
Invocation Result:
Information about the commit.
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 cluster associated with cluster
in the system or if
desired specification commit is not found.
ServiceUnavailable
- If the service is not available.
Unauthenticated
- If the caller is not authenticated.
cluster
- Identifier of the cluster.
The parameter must be an identifier for the resource type: ClusterComputeResource
.commit
- Identifier of the specific commit.
The parameter must be an identifier for the resource type: com.vmware.esx.settings.commit
.asyncCallback
- Receives the status (progress, result or error) of the operation invocation.void get(java.lang.String cluster, java.lang.String commit, AsyncCallback<CommitsTypes.Info> 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 the commit.
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 cluster associated with cluster
in the system or if
desired specification commit is not found.
ServiceUnavailable
- If the service is not available.
Unauthenticated
- If the caller is not authenticated.
cluster
- Identifier of the cluster.
The parameter must be an identifier for the resource type: ClusterComputeResource
.commit
- Identifier of the specific commit.
The parameter must be an identifier for the resource type: com.vmware.esx.settings.commit
.asyncCallback
- Receives the status (progress, result or error) of the operation invocation.invocationConfig
- Configuration for the method invocation.