_VAPI_SERVICE_ID| Modifier and Type | Method and Description |
|---|---|
Task |
get(java.lang.String org,
java.lang.String task)
Retrieve details of a task.
|
void |
get(java.lang.String org,
java.lang.String task,
AsyncCallback<Task> asyncCallback)
Retrieve details of a task.
|
void |
get(java.lang.String org,
java.lang.String task,
AsyncCallback<Task> asyncCallback,
InvocationConfig invocationConfig)
Retrieve details of a task.
|
Task |
get(java.lang.String org,
java.lang.String task,
InvocationConfig invocationConfig)
Retrieve details of a task.
|
java.util.List<Task> |
list(java.lang.String org,
java.lang.String filter)
List all tasks with optional filtering.
|
void |
list(java.lang.String org,
java.lang.String filter,
AsyncCallback<java.util.List<Task>> asyncCallback)
List all tasks with optional filtering.
|
void |
list(java.lang.String org,
java.lang.String filter,
AsyncCallback<java.util.List<Task>> asyncCallback,
InvocationConfig invocationConfig)
List all tasks with optional filtering.
|
java.util.List<Task> |
list(java.lang.String org,
java.lang.String filter,
InvocationConfig invocationConfig)
List all tasks with optional filtering.
|
Task |
update(java.lang.String org,
java.lang.String task,
java.lang.String action)
Request that a running task be canceled.
|
void |
update(java.lang.String org,
java.lang.String task,
java.lang.String action,
AsyncCallback<Task> asyncCallback)
Request that a running task be canceled.
|
void |
update(java.lang.String org,
java.lang.String task,
java.lang.String action,
AsyncCallback<Task> asyncCallback,
InvocationConfig invocationConfig)
Request that a running task be canceled.
|
Task |
update(java.lang.String org,
java.lang.String task,
java.lang.String action,
InvocationConfig invocationConfig)
Request that a running task be canceled.
|
Task get(java.lang.String org, java.lang.String task)
Synchronous method overload. Result of the invocation will be reported as a method return value.
org - Organization identifier (required)task - task identifier (required)Unauthenticated - UnauthorizedUnauthorized - ForbiddenNotFound - Cannot find the task with given identifierTask get(java.lang.String org, java.lang.String task, 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.
org - Organization identifier (required)task - task identifier (required)invocationConfig - Configuration for the method invocation.Unauthenticated - UnauthorizedUnauthorized - ForbiddenNotFound - Cannot find the task with given identifiervoid get(java.lang.String org,
java.lang.String task,
AsyncCallback<Task> asyncCallback)
Asynchronous method overload. Result of the invocation will be
reported via the specified asyncCallback.
Invocation Result:
com.vmware.vmc.draas.model.Task
Operation Errors:
Unauthenticated - Unauthorized
Unauthorized - Forbidden
NotFound - Cannot find the task with given identifier
org - Organization identifier (required)task - task identifier (required)asyncCallback - Receives the status (progress, result or error) of the operation invocation.void get(java.lang.String org,
java.lang.String task,
AsyncCallback<Task> 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:
com.vmware.vmc.draas.model.Task
Operation Errors:
Unauthenticated - Unauthorized
Unauthorized - Forbidden
NotFound - Cannot find the task with given identifier
org - Organization identifier (required)task - task identifier (required)asyncCallback - Receives the status (progress, result or error) of the operation invocation.invocationConfig - Configuration for the method invocation.java.util.List<Task> list(java.lang.String org, java.lang.String filter)
Synchronous method overload. Result of the invocation will be reported as a method return value.
org - Organization identifier (required)filter - Filter expression Binary Operators: 'eq', 'ne', 'lt', 'gt', 'le', 'ge', 'mul',
'div', 'mod', 'sub', 'add' Unary Operators: 'not', '-' (minus) String Operators:
'startswith', 'endswith', 'length', 'contains', 'tolower', 'toupper', Nested
attributes are composed using '.' Dates must be formatted as yyyy-MM-dd or
yyyy-MM-ddTHH:mm:ss[.SSS]Z Strings should enclosed in single quotes, escape
single quote with two single quotes The special literal 'created' will be mapped
to the time the resource was first created. Examples: - $filter=(updated gt
2016-08-09T13:00:00Z) and (org_id eq 278710ff4e-6b6d-4d4e-aefb-ca637f38609e) -
$filter=(created eq 2016-08-09) - $filter=(created gt 2016-08-09) and
(sddc.status eq 'READY') (optional)Unauthenticated - UnauthorizedUnauthorized - Forbiddenjava.util.List<Task> list(java.lang.String org, java.lang.String 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.
org - Organization identifier (required)filter - Filter expression Binary Operators: 'eq', 'ne', 'lt', 'gt', 'le', 'ge', 'mul',
'div', 'mod', 'sub', 'add' Unary Operators: 'not', '-' (minus) String Operators:
'startswith', 'endswith', 'length', 'contains', 'tolower', 'toupper', Nested
attributes are composed using '.' Dates must be formatted as yyyy-MM-dd or
yyyy-MM-ddTHH:mm:ss[.SSS]Z Strings should enclosed in single quotes, escape
single quote with two single quotes The special literal 'created' will be mapped
to the time the resource was first created. Examples: - $filter=(updated gt
2016-08-09T13:00:00Z) and (org_id eq 278710ff4e-6b6d-4d4e-aefb-ca637f38609e) -
$filter=(created eq 2016-08-09) - $filter=(created gt 2016-08-09) and
(sddc.status eq 'READY') (optional)invocationConfig - Configuration for the method invocation.Unauthenticated - UnauthorizedUnauthorized - Forbiddenvoid list(java.lang.String org,
java.lang.String filter,
AsyncCallback<java.util.List<Task>> asyncCallback)
Asynchronous method overload. Result of the invocation will be
reported via the specified asyncCallback.
Operation Errors:
Unauthenticated - Unauthorized
Unauthorized - Forbidden
org - Organization identifier (required)filter - Filter expression Binary Operators: 'eq', 'ne', 'lt', 'gt', 'le', 'ge', 'mul',
'div', 'mod', 'sub', 'add' Unary Operators: 'not', '-' (minus) String Operators:
'startswith', 'endswith', 'length', 'contains', 'tolower', 'toupper', Nested
attributes are composed using '.' Dates must be formatted as yyyy-MM-dd or
yyyy-MM-ddTHH:mm:ss[.SSS]Z Strings should enclosed in single quotes, escape
single quote with two single quotes The special literal 'created' will be mapped
to the time the resource was first created. Examples: - $filter=(updated gt
2016-08-09T13:00:00Z) and (org_id eq 278710ff4e-6b6d-4d4e-aefb-ca637f38609e) -
$filter=(created eq 2016-08-09) - $filter=(created gt 2016-08-09) and
(sddc.status eq 'READY') (optional)asyncCallback - Receives the status (progress, result or error) of the operation invocation.void list(java.lang.String org,
java.lang.String filter,
AsyncCallback<java.util.List<Task>> 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:
Unauthenticated - Unauthorized
Unauthorized - Forbidden
org - Organization identifier (required)filter - Filter expression Binary Operators: 'eq', 'ne', 'lt', 'gt', 'le', 'ge', 'mul',
'div', 'mod', 'sub', 'add' Unary Operators: 'not', '-' (minus) String Operators:
'startswith', 'endswith', 'length', 'contains', 'tolower', 'toupper', Nested
attributes are composed using '.' Dates must be formatted as yyyy-MM-dd or
yyyy-MM-ddTHH:mm:ss[.SSS]Z Strings should enclosed in single quotes, escape
single quote with two single quotes The special literal 'created' will be mapped
to the time the resource was first created. Examples: - $filter=(updated gt
2016-08-09T13:00:00Z) and (org_id eq 278710ff4e-6b6d-4d4e-aefb-ca637f38609e) -
$filter=(created eq 2016-08-09) - $filter=(created gt 2016-08-09) and
(sddc.status eq 'READY') (optional)asyncCallback - Receives the status (progress, result or error) of the operation invocation.invocationConfig - Configuration for the method invocation.Task update(java.lang.String org, java.lang.String task, java.lang.String action)
Synchronous method overload. Result of the invocation will be reported as a method return value.
org - Organization identifier (required)task - task identifier (required)action - If = 'cancel', task will be canceled (optional)Unauthenticated - UnauthorizedInvalidRequest - Invalid action or bad argumentUnauthorized - ForbiddenNotFound - Cannot find the task with given identifierTask update(java.lang.String org, java.lang.String task, java.lang.String action, 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.
org - Organization identifier (required)task - task identifier (required)action - If = 'cancel', task will be canceled (optional)invocationConfig - Configuration for the method invocation.Unauthenticated - UnauthorizedInvalidRequest - Invalid action or bad argumentUnauthorized - ForbiddenNotFound - Cannot find the task with given identifiervoid update(java.lang.String org,
java.lang.String task,
java.lang.String action,
AsyncCallback<Task> asyncCallback)
Asynchronous method overload. Result of the invocation will be
reported via the specified asyncCallback.
Invocation Result:
com.vmware.vmc.draas.model.Task
Operation Errors:
Unauthenticated - Unauthorized
InvalidRequest - Invalid action or bad argument
Unauthorized - Forbidden
NotFound - Cannot find the task with given identifier
org - Organization identifier (required)task - task identifier (required)action - If = 'cancel', task will be canceled (optional)asyncCallback - Receives the status (progress, result or error) of the operation invocation.void update(java.lang.String org,
java.lang.String task,
java.lang.String action,
AsyncCallback<Task> 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:
com.vmware.vmc.draas.model.Task
Operation Errors:
Unauthenticated - Unauthorized
InvalidRequest - Invalid action or bad argument
Unauthorized - Forbidden
NotFound - Cannot find the task with given identifier
org - Organization identifier (required)task - task identifier (required)action - If = 'cancel', task will be canceled (optional)asyncCallback - Receives the status (progress, result or error) of the operation invocation.invocationConfig - Configuration for the method invocation.