public interface ReplicationsData extends Service, ReplicationsDataTypes
_VAPI_SERVICE_ID
Modifier and Type | Method and Description |
---|---|
java.util.List<ReplicationData> |
post(java.lang.String org,
java.lang.String sddc)
Get outgoing and incoming replications data.
|
void |
post(java.lang.String org,
java.lang.String sddc,
AsyncCallback<java.util.List<ReplicationData>> asyncCallback)
Get outgoing and incoming replications data.
|
void |
post(java.lang.String org,
java.lang.String sddc,
AsyncCallback<java.util.List<ReplicationData>> asyncCallback,
InvocationConfig invocationConfig)
Get outgoing and incoming replications data.
|
java.util.List<ReplicationData> |
post(java.lang.String org,
java.lang.String sddc,
InvocationConfig invocationConfig)
Get outgoing and incoming replications data.
|
java.util.List<ReplicationData> post(java.lang.String org, java.lang.String sddc)
Synchronous method overload. Result of the invocation will be reported as a method return value.
org
- Organization identifier (required)sddc
- sddc identifier (required)Unauthenticated
- UnauthorizedInvalidRequest
- Bad RequestUnauthorized
- Forbiddenjava.util.List<ReplicationData> post(java.lang.String org, java.lang.String sddc, 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)sddc
- sddc identifier (required)invocationConfig
- Configuration for the method invocation.Unauthenticated
- UnauthorizedInvalidRequest
- Bad RequestUnauthorized
- Forbiddenvoid post(java.lang.String org, java.lang.String sddc, AsyncCallback<java.util.List<ReplicationData>> asyncCallback)
Asynchronous method overload. Result of the invocation will be
reported via the specified asyncCallback
.
Operation Errors:
Unauthenticated
- Unauthorized
InvalidRequest
- Bad Request
Unauthorized
- Forbidden
org
- Organization identifier (required)sddc
- sddc identifier (required)asyncCallback
- Receives the status (progress, result or error) of the operation invocation.void post(java.lang.String org, java.lang.String sddc, AsyncCallback<java.util.List<ReplicationData>> 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
InvalidRequest
- Bad Request
Unauthorized
- Forbidden
org
- Organization identifier (required)sddc
- sddc identifier (required)asyncCallback
- Receives the status (progress, result or error) of the operation invocation.invocationConfig
- Configuration for the method invocation.