Skip to main content

Modify DynamoDB table group properties

Select

SaaS
Customer Managed

This operation is used to modify DynamoDB table group properties using Subclient ID.

Path Parameters
  • Subclient_id string required

    ID of subclient

Request Body
  • subClientProperties object
  • commonProperties object
  • numberOfBackupStreams integer

    Number of streams for backup.

  • cloudAppsSubClientProp object
  • instanceType integer
  • dynamoDBSubclient object
  • temporaryReadThroughput integer
  • planEntity object

    Details of the plan

  • planName string
  • planId integer
  • contentOperationType integer
  • cloudDbContent object

    List of the Tables for Table group

  • children object[]
  • displayName string
  • name string

    Name of the table.

  • path string

    Path of the Table.

  • type string

    Type of Table Content

  • allOrAnyChildren boolean
  • negation boolean

    Table rule for content selection

Responses

OK


Schema
  • processinginstructioninfo object
  • attributes object[]
  • name string
  • value string
  • response object
  • warningCode integer
  • errorCode integer
  • warningMessage string
  • entity object
  • subclientId integer
  • _type_ integer
POST /subclient/:subclient_id    

Authorization

type: apiKeyname: Authtokenin: header

Request

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

{
"subClientProperties": {
"commonProperties": {
"numberOfBackupStreams": 0
},
"cloudAppsSubClientProp": {
"instanceType": 0,
"dynamoDBSubclient": {
"temporaryReadThroughput": 0
}
},
"planEntity": {
"planName": "string",
"planId": 0
},
"contentOperationType": 0,
"cloudDbContent": {
"children": [
{
"displayName": "string",
"name": "string",
"path": "string",
"type": "Table, TableRule, Region",
"allOrAnyChildren": true,
"negation": true
}
]
}
}
}
curl -L -X POST 'https://CommandCenterHostName/commandcenter/api/Subclient/:Subclient_id' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-H 'Authtoken: <API_KEY_VALUE>' \
--data-raw '{
"subClientProperties": {
"commonProperties": {
"numberOfBackupStreams": 0
},
"cloudAppsSubClientProp": {
"instanceType": 0,
"dynamoDBSubclient": {
"temporaryReadThroughput": 0
}
},
"planEntity": {
"planName": "string",
"planId": 0
},
"contentOperationType": 0,
"cloudDbContent": {
"children": [
{
"displayName": "string",
"name": "string",
"path": "string",
"type": "Table, TableRule, Region",
"allOrAnyChildren": true,
"negation": true
}
]
}
}
}'