Skip to main content

Create access node

Select

SaaS
Customer Managed

API is used to create access node for commvault infrastructure. This includes workloads virtualization, Office 365 and media agent.

Request Body

Create access node request schemsa

  • region string
  • virtualizationClient string
  • entryPoint AccessNodeEntryPoint

    Possible values: [NONE, HYPERVISOR, RESOURCE_POOL, STORAGE, SERVER_GROUP, INDEX_SERVER, CLOUD_APPS]

  • osType string
  • vmName string
  • destinationHypervisor string
  • packageDetail object
  • workloadTypes InfrastructureWorkloadType[]

    Possible values: [GENERIC, O365, VSA, CLOUD_APPS, MEDIA_AGENT]

  • tags object[]
  • key string

    Tag key content to match

  • value string

    Tag value content to match

Responses

OK


Schema
  • taskId int32
  • jobIds string[]

    JobIds for the immediate run request

POST /vm/accessnode    

Authorization

type: apiKeyname: Authtokenin: header

Request

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

{
"region": "string",
"virtualizationClient": "string",
"osType": "string",
"vmName": "string",
"destinationHypervisor": "string",
"packageDetail": {
"workloadTypes": [
null
]
},
"tags": [
{
"key": "string",
"value": "string"
}
]
}
curl -L -X POST 'https://CommandCenterHostName/commandcenter/api/VM/AccessNode' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-H 'Authtoken: <API_KEY_VALUE>' \
--data-raw '{
"region": "string",
"virtualizationClient": "string",
"osType": "string",
"vmName": "string",
"destinationHypervisor": "string",
"packageDetail": {
"workloadTypes": [
null
]
},
"tags": [
{
"key": "string",
"value": "string"
}
]
}'