/auto-update/edit/oracle

Edit Automated Standby Update configuration

Request

HTTP Method: POST
Content Type: application/json

Parameters

Property

Type

Description

Required

Property

Type

Description

Required

configuration_id

integer(int64)

configuration ID (non-negative)

required

enable

boolean

enable or disable Automated Standby Update

interval

integer(int32)

set the Automated Standby Update interval in seconds (minimum: 60)

{ "params": { "configuration_id": 1, "enable": false, "interval": 123 } }

Response

HTTP Status: 200

Content Type: application/json

Response

Property

Type

Description

Property

Type

Description

error

object of type error_response

error response

result

object of type auto_update_config

automated standby update configuration

successful

boolean

response with error or not

auto_update_config

Property

Type

Description

Property

Type

Description

enabled

boolean

whether automated standby updated is enabled

interval_seconds

integer

the configured automated standby update interval in seconds

error_response

Property

Type

Description

Property

Type

Description

message

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

Property

Type

Description

error

object of type error_response

error response

successful

boolean

always false

error_response

Property

Type

Description

Property

Type

Description

message

string

error message

{ "error": { "message": "string" }, "successful": false }