Disaster Recovery Transition To Standby

Disaster Recovery Transition To Standby

Configures the current Orchestrator to transition to standby in a disaster recovery active/standby pair. Requires the activeAccessFromStandby parameter that contains the data needed to configure standby. This data is produced by configureActiveForReplication, which by default automatically calls transitionToStandby; an explicit call is needed (with a blob obtained from getReplicationBlob), only if configureActiveForReplication is called with autoConfigStandby set to false.

Privileges required:

CREATE REPLICATION

Request
URI
POST
https://{api_host}/portal/rest/disasterRecovery/transitionToStandby
COPY
Request Body
{
    "activeAccessFromStandby": "string"
}
string
activeAccessFromStandby
Optional

activeAccessFromStandby

Responses
200

Request was successfully processed

Returns disaster_recovery_transition_to_standby_result of type(s) application/json
This response body class contains all of the following: Inlinedisaster_recovery_transition_to_standby_result0
{
    "rows": 1
}

400
Returns generic_400 of type(s) application/json
Operation doesn't return any data structure

500
Returns generic_500 of type(s) application/json
Operation doesn't return any data structure

Code Samples
COPY
                    curl -X POST -H 'Authorization: <value>' -H 'Content-Type: application/json' -d '{}' https://{api_host}/portal/rest/disasterRecovery/transitionToStandby