Skip to main content

Create a disk storage pool

Select

SaaS
Customer Managed

Create a new disk storage pool

Request Body
  • name string required

    Name of the Disk Storage to be created.

  • storage object[] required

    A list of backup locations can be provided for the storage pool being created.

  • backupLocation string
  • mediaAgent object required
  • id int32
  • name string
  • credentials object
  • name string

    username to access the network path

  • password string

    password to access the network path

  • savedCredentials object
  • id int32
  • name string
  • enableDeduplication boolean required

    enables or disables deduplication

  • deduplicationDBStorage object[]

    A list of dedupe locations can be provided for the storage pool being created. This provides an efficient way to save/store data by eliminating duplicate blocks of data during backups.

  • path string
  • mediaAgent object
  • id int32
  • name string
Responses

Success


Schema
  • id int32
  • name string
POST /v4/storage/disk    

Authorization

type: apiKeyname: Authtokenin: header

Request

Click Edit to configure Base URL
https://CommandCenterHostName/commandcenter/api
Security Scheme
token
Body
{
"name": "string",
"storage": [
{
"backupLocation": "string",
"mediaAgent": {
"id": 0,
"name": "string"
},
"credentials": {
"name": "string",
"password": "string"
},
"savedCredentials": {
"id": 0,
"name": "string"
}
}
],
"enableDeduplication": true,
"deduplicationDBStorage": [
{
"path": "string",
"mediaAgent": {
"id": 0,
"name": "string"
}
}
]
}
curl -L -X POST 'https://CommandCenterHostName/commandcenter/api/V4/Storage/Disk' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-H 'Authtoken: <API_KEY_VALUE>' \
--data-raw '{
"name": "string",
"storage": [
{
"backupLocation": "string",
"mediaAgent": {
"id": 0,
"name": "string"
},
"credentials": {
"name": "string",
"password": "string"
},
"savedCredentials": {
"id": 0,
"name": "string"
}
}
],
"enableDeduplication": true,
"deduplicationDBStorage": [
{
"path": "string",
"mediaAgent": {
"id": 0,
"name": "string"
}
}
]
}'