Skip to main content

Create HyperScaleStorage

Select

SaaS
Customer Managed

Create a HyperScale Storage

Request Body
  • name string required

    Name of HyperScale Storage

  • nodes object[] required

    List of Nodes (MediaAgents) of the HyperScale Storage

  • id int32
  • name string
Responses

Success


Schema
  • id int32
  • name string
  • copyId int32

    Id of Storage Policy Copy

  • errorMessage string
  • errorCode int32
POST /v4/storage/hyperscale    

Authorization

type: apiKeyname: Authtokenin: header

Request

Click Edit to configure Base URL
https://CommandCenterHostName/commandcenter/api
Security Scheme
token
Body
{
"name": "string",
"nodes": [
{
"id": 0,
"name": "string"
}
]
}
curl -L -X POST 'https://CommandCenterHostName/commandcenter/api/V4/Storage/HyperScale' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-H 'Authtoken: <API_KEY_VALUE>' \
--data-raw '{
"name": "string",
"nodes": [
{
"id": 0,
"name": "string"
}
]
}'