/auto-update/show/sqlserver
Show current Automated Standby Update configuration
Request
HTTP Method: POST
Content Type: application/json
Parameters
Property | Type | Description | Required |
---|---|---|---|
| integer(int64) | configuration ID (non-negative) | required |
{
"params": {
"configuration_id": 1
}
}
Response
HTTP Status: 200
Content Type: application/json
Response
Property | Type | Description |
---|---|---|
| object of type | error response |
| object of type | automated standby update configuration |
| boolean | response with error or not |
auto_update_config
Property | Type | Description |
---|---|---|
| boolean | whether automated standby updated is enabled |
| integer | the configured automated standby update interval in seconds |
error_response
Property | Type | Description |
---|---|---|
| string | error message |
{
"error": {
"message": "string"
},
"result": {
"enabled": false,
"interval_seconds": 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
}