Skip to main content

Create Instance

The operation is used to create RDS instance. Default subclient will be created with all instances in all regions as content.

Request Body
  • instanceProperties object
  • instance object
  • instanceName string required

    Name of the instance.

  • applicationId integer required

    Default value: 134

  • clientName string required

    Cloud account name.

  • cloudAppsInstance object
  • instanceType string

    Possible values: [AMAZON_RDS]

  • planEntity object
  • planName string required

    Name of the plan.

  • useResourcePoolInfo boolean

    Default value: false

Responses

OK


Schema
  • processinginstructioninfo object
  • attributes object[]
  • name string
  • value string
  • response object
  • warningCode integer
  • errorCode integer
  • warningMessage string
  • entity object
  • subclientId integer
  • clientId integer
  • instanceName string
  • instanceId integer
  • _type_ integer
POST /instance    

Authorization

type: apiKeyname: Authtokenin: header

Request

Click Edit to configure Base URL
https://CommandCenterHostName/commandcenter/api
token
Body

{
"instanceProperties": {
"instance": {
"instanceName": "string",
"applicationId": 134,
"clientName": "string"
},
"cloudAppsInstance": {
"instanceType": "AMAZON_RDS"
},
"planEntity": {
"planName": "string"
},
"useResourcePoolInfo": false
}
}
curl -L -X POST 'https://CommandCenterHostName/commandcenter/api/Instance' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-H 'Authtoken: <API_KEY_VALUE>' \
--data-raw '{
"instanceProperties": {
"instance": {
"instanceName": "string",
"applicationId": 134,
"clientName": "string"
},
"cloudAppsInstance": {
"instanceType": "AMAZON_RDS"
},
"planEntity": {
"planName": "string"
},
"useResourcePoolInfo": false
}
}'