public interface Details extends Service, DetailsTypes
Details interface provides methods to get the details about backup
jobs. This interface was added in vSphere API 6.7.DetailsTypes.FilterSpec, DetailsTypes.Info, DetailsTypes.Type| Modifier and Type | Method and Description |
|---|---|
java.util.Map<java.lang.String,DetailsTypes.Info> |
list(DetailsTypes.FilterSpec filter)
Returns detailed information about the current and historical backup jobs.
|
void |
list(DetailsTypes.FilterSpec filter,
AsyncCallback<java.util.Map<java.lang.String,DetailsTypes.Info>> asyncCallback)
Returns detailed information about the current and historical backup jobs.
|
void |
list(DetailsTypes.FilterSpec filter,
AsyncCallback<java.util.Map<java.lang.String,DetailsTypes.Info>> asyncCallback,
InvocationConfig invocationConfig)
Returns detailed information about the current and historical backup jobs.
|
java.util.Map<java.lang.String,DetailsTypes.Info> |
list(DetailsTypes.FilterSpec filter,
InvocationConfig invocationConfig)
Returns detailed information about the current and historical backup jobs.
|
java.util.Map<java.lang.String,DetailsTypes.Info> list(DetailsTypes.FilterSpec filter)
Synchronous method overload. Result of the invocation will be reported as a method return value.
filter - Specification of matching backup jobs for which information should be returned.
If null, the behavior is equivalent to DetailsTypes.FilterSpec with all
properties null which means all the backup jobs match the filter.Map will be an identifier for the
resource type: com.vmware.appliance.recovery.backup.job.Error - if any error occurs during the execution of the operation.java.util.Map<java.lang.String,DetailsTypes.Info> list(DetailsTypes.FilterSpec filter, 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.
filter - Specification of matching backup jobs for which information should be returned.
If null, the behavior is equivalent to DetailsTypes.FilterSpec with all
properties null which means all the backup jobs match the filter.invocationConfig - Configuration for the method invocation.Map will be an identifier for the
resource type: com.vmware.appliance.recovery.backup.job.Error - if any error occurs during the execution of the operation.void list(DetailsTypes.FilterSpec filter, AsyncCallback<java.util.Map<java.lang.String,DetailsTypes.Info>> asyncCallback)
Asynchronous method overload. Result of the invocation will be
reported via the specified asyncCallback.
Operation Result:
Map of backup job identifier to Info Structure.
The key in the return value Map will be an identifier for the
resource type: com.vmware.appliance.recovery.backup.job.
Operation Errors:
Error - if any error occurs during the execution of the operation.
filter - Specification of matching backup jobs for which information should be returned.
If null, the behavior is equivalent to DetailsTypes.FilterSpec with all
properties null which means all the backup jobs match the filter.asyncCallback - Receives the status (progress, result or error) of the operation invocation.void list(DetailsTypes.FilterSpec filter, AsyncCallback<java.util.Map<java.lang.String,DetailsTypes.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.
Operation Result:
Map of backup job identifier to Info Structure.
The key in the return value Map will be an identifier for the
resource type: com.vmware.appliance.recovery.backup.job.
Operation Errors:
Error - if any error occurs during the execution of the operation.
filter - Specification of matching backup jobs for which information should be returned.
If null, the behavior is equivalent to DetailsTypes.FilterSpec with all
properties null which means all the backup jobs match the filter.asyncCallback - Receives the status (progress, result or error) of the operation invocation.invocationConfig - Configuration for the method invocation.