Recovery Plan Executions

Recovery Plan Executions

This request returns the execution details of the specified recovery plan.

Request
URI
GET
https://{api_host}/recovery-plans/{recoveryPlanId}/executions
COPY
Path Parameters
string
recoveryPlanId
Required

ID of the recovery plan.

recoveryPlanId example
e7bf7128-2825-48ca-9075-3f496de70ffe
Query Parameters
integer
execStartBefore
Optional

Execution start before time.

execStartBefore example
1684249785397
integer
execStartAfter
Optional

Execution start after time.

execStartAfter example
1684249785397
integer
execEndBefore
Optional

Execution end before time.

execEndBefore example
1684249785397
integer
execEndAfter
Optional

Execution end after time.

execEndAfter example
1684249785397
string
result
Optional

Result.

result example
result
string
operation
Optional

Operation.

operation example
operation
string
sort
Optional

Sort criteria.

sort example
operation
integer
limit
Optional

Limit of query.

limit example
100
integer
offset
Optional

Offset of query.

Header Parameters
string
operationID
Optional

Operation ID for correlating logs across multiple services


Authentication
This operation uses the following authentication methods.
Responses
200

OK

Returns QueryResult_of_RecoveryPlanExecutionInfo of type(s) application/json;charset=UTF-8
{
    "items": [
        {
            "execEnd": 1645707066012,
            "execStart": 1645707065923,
            "id": "271c8c0b-aba5-425c-b8f3-3ada3d4d2e14",
            "operation": "TEST",
            "recoveryPlanId": "b2fc65c2-2899-4090-80af-639927bea6ea",
            "reportVersion": "The product version during the execution.",
            "result": "SUCCEEDED"
        }
    ],
    "limit": 100,
    "offset": 0,
    "total": 3
}
items
Optional

A list of items.

integer As int32 As int32
limit
Optional

Maximum number of items that this query could retrieve.

integer As int32 As int32
offset
Optional

How much items were skipped, before retrieving the actual items.

integer As int64 As int64
total
Optional

The total number of items.


401

The returned error codes include (but are not limited to): NotAuthenticated

Returns ApiError of type(s) application/vnd.vmware.h4-v4.7+json;charset=UTF-8
{
    "args": [],
    "code": "Forbidden",
    "msg": "Permission denied.",
    "stacktrace": "com.vmware.h4.api.error.exceptions.PermissionDeniedException: Permission denied."
}
array of string
args
Optional

Positional arguments.

string
code
Optional

Specific error code.

string
msg
Optional

Detailed error message.

string
stacktrace
Optional

Exception stacktrace.


500

The returned error codes include (but are not limited to): GeneralServerFailure

Returns ApiError of type(s) application/vnd.vmware.h4-v4.7+json;charset=UTF-8
{
    "args": [],
    "code": "Forbidden",
    "msg": "Permission denied.",
    "stacktrace": "com.vmware.h4.api.error.exceptions.PermissionDeniedException: Permission denied."
}
array of string
args
Optional

Positional arguments.

string
code
Optional

Specific error code.

string
msg
Optional

Detailed error message.

string
stacktrace
Optional

Exception stacktrace.