Skip to main content

Create DynamoDB Instance

Select

SaaS
Customer Managed

This operation creates DynamoDB Instance.

Request Body
  • instanceProperties object
  • useResourcePoolInfo boolean
  • instance object
  • clientName string

    Client Name

  • instanceName string

    Name of the Instance to be created

  • clientId integer

    ClientId of client on which instance is present

  • applicationId integer

    Default value: 134

  • cloudAppsInstance object
  • instanceType integer

    Default value: 22

  • planEntity object
  • planId integer

    ID of the plan to be associated to the client

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
Security Scheme
token
Body

{
"instanceProperties": {
"useResourcePoolInfo": true,
"instance": {
"clientName": "string",
"instanceName": "string",
"clientId": 0,
"applicationId": 134
},
"cloudAppsInstance": {
"instanceType": 22
},
"planEntity": {
"planId": 0
}
}
}
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": {
"useResourcePoolInfo": true,
"instance": {
"clientName": "string",
"instanceName": "string",
"clientId": 0,
"applicationId": 134
},
"cloudAppsInstance": {
"instanceType": 22
},
"planEntity": {
"planId": 0
}
}
}'