/update-delay/edit/oracle
Edit Standby Update Delay settings
Request
HTTP Method: POST
Content Type: application/json
Parameters
Property | Type | Description | Required |
---|---|---|---|
| integer(int64) | configuration ID (non-negative) | required |
| integer | number of minutes to keep standby behind primary; 0 to disable |
|
{
"params": {
"configuration_id": 1,
"delay": 123
}
}
Response
HTTP Status: 200
Content Type: application/json
Response
Property | Type | Description |
---|---|---|
| object of type | error response |
| object of type | update-delay/show/oracle response |
| boolean | response with error or not |
error_response
Property | Type | Description |
---|---|---|
| string | error message |
update_delay_show_oracle_response
Property | Type | Description |
---|---|---|
| integer | number of minutes to keep standby behind primary; 0 to disable |
{
"error": {
"message": "string"
},
"result": {
"delay_minutes": 123
},
"successful": true
}
HTTP Status: 400
Content Type: application/json
Response
Property | Type | Description |
---|---|---|
| object of type | error response |
| boolean | always false |
error_response
Property | Type | Description |
---|---|---|
| string | error message |
{
"error": {
"message": "string"
},
"successful": false
}