Skip to main content

Browse RDS Instances with Automated Backups

This operation is used to retrieve RDS Instances or Clusters with Automated Backups turned on from a specific region.

Path Parameters
  • instanceId int32 required

    id of the instance

Request Body
  • appId object
  • instanceId integer required
  • applicationId integer
  • appName string required

    The Application Name, in this case Cloud Apps

  • restoreFromTime integer
  • restoreToTime integer
  • pointInTimeRestore boolean required

    This must be set to true to retrieve instances with Automated Backups

  • regionEndPoints string required

    AWS Region for which we wish to browse RDS Instances

Responses

OK


Schema
  • cloudDBEntity object
  • type integer
  • children object[]
  • path string
  • name string
  • type integer
POST /instance/:instanceid/pitrenableddbinstances    

Authorization

type: apiKeyname: Authtokenin: header

Request

Click Edit to configure Base URL
https://CommandCenterHostName/commandcenter/api
token
instanceId — path required
Body

{
"appId": {
"instanceId": 0,
"applicationId": 0,
"appName": "string"
},
"restoreFromTime": 0,
"restoreToTime": 0,
"pointInTimeRestore": true,
"regionEndPoints": "string"
}
curl -L -X POST 'https://CommandCenterHostName/commandcenter/api/Instance/:instanceId/PITREnabledDBInstances' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-H 'Authtoken: <API_KEY_VALUE>' \
--data-raw '{
"appId": {
"instanceId": 0,
"applicationId": 0,
"appName": "string"
},
"restoreFromTime": 0,
"restoreToTime": 0,
"pointInTimeRestore": true,
"regionEndPoints": "string"
}'