Skip to main content

Update DDB Properties of Storage

Select

SaaS
Customer Managed

This API updates the properties of DDB of a Storage

Request Body
  • storagePool object
  • id int32
  • name string
  • DDB object
  • id int32
  • name string
  • pruning boolean

    Pruning status to enable or disable pruning

Responses

OK


Schema
  • errorMessage string
  • errorCode int32
PUT /v4/storagepool/ddb    

Authorization

type: apiKeyname: Authtokenin: header

Request

Click Edit to configure Base URL
https://CommandCenterHostName/commandcenter/api
Security Scheme
token
Body
{
"storagePool": {
"id": 0,
"name": "string"
},
"DDB": {
"id": 0,
"name": "string"
},
"pruning": true
}
curl -L -X PUT 'https://CommandCenterHostName/commandcenter/api/V4/StoragePool/DDB' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-H 'Authtoken: <API_KEY_VALUE>' \
--data-raw '{
"storagePool": {
"id": 0,
"name": "string"
},
"DDB": {
"id": 0,
"name": "string"
},
"pruning": true
}'