Get Recovery Plan Batch Details

Get Recovery Plan Batch Details

Get details for one or more requested recovery plans.

Request
URI
POST
https://{api_host}/api/vcdr/v1/cloud-file-systems/{cloud_file_system_id}/recovery-plans-batch
COPY
Path Parameters
string
cloud_file_system_id
Required

The cloud file system containing the recovery plans of interest.


Request Body
{
    "recovery_plans": [
        "string"
    ]
}
array of string
recovery_plans
Optional

The IDs of the recovery plans of interest. All results are returned in a single request, so the number of provided recovery plans should be bounded.

Authentication
This operation uses the following authentication methods.
Responses
200

OK. The request succeeded.

Returns GetRecoveryPlanBatchDetailsResponse of type(s) application/json
{
    "recovery_plan_details": [
        {
            "id": "string",
            "name": "string",
            "status": "string",
            "state": "string",
            "vcenter_name": "string",
            "protection_groups": [
                {
                    "id": "string",
                    "name": "string"
                }
            ],
            "protected_site_id": "string",
            "recovery_site_id": "string",
            "compliance_results": [
                {
                    "check_type": "string",
                    "compliance_status": "string",
                    "status_details": "string",
                    "status_since": 0
                }
            ],
            "plan_enabled": false,
            "ransomware_recovery_enabled": false
        }
    ]
}
array of object
recovery_plan_details
Optional

The array of recovery plan details.


400

Bad request. The server could not understand the request.

Operation doesn't return any data structure

401

Unauthorized. The client has not authenticated.

Operation doesn't return any data structure

403

Forbidden. The client is not authorized.

Operation doesn't return any data structure

404

Not found. The server cannot find the specified resource.

Operation doesn't return any data structure

500

VMware Live Cyber Recovery-specific error.
An error unique to VMware Live Cyber Recovery was encountered while attempting to satisfy the request. See the returned object for details on the error.

Returns Error of type(s) application/json
"Error Object"
array of object
messages
Optional

A stack or error messages. The first element (top of the stack) is the broadest description of the failure.


Code Samples
COPY
                    curl -X POST -H 'Authorization: <value>' -H 'Content-Type: application/json' -d '{}' https://{api_host}/api/vcdr/v1/cloud-file-systems/{cloud_file_system_id}/recovery-plans-batch