Skip to main content

Update Subclient Virtual Machine Content

Select

SaaS
Customer Managed

This operation adds or updates subclient virtual machine content.

More Details

Path Parameters
  • vsubclientId string required
Request Body required
  • children object[] required
  • allOrAnyChildren boolean required
  • displayName string required
  • equalsOrNotEquals boolean required
  • name string required
  • path string required
Responses

OK

PUT /subclient/:vsubclientid/content    

Authorization

type: apiKeyname: Authtokenin: header

Request

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

{
"children": [
{
"allOrAnyChildren": true,
"displayName": "",
"equalsOrNotEquals": true,
"name": "",
"path": ""
},
{
"allOrAnyChildren": true,
"displayName": "",
"equalsOrNotEquals": true,
"name": "",
"path": ""
}
]
}
curl -L -X PUT 'https://CommandCenterHostName/commandcenter/api/Subclient/:vsubclientId/content' \
-H 'Content-Type: application/json' \
-H 'Authtoken: <API_KEY_VALUE>' \
--data-raw '{
"children": [
{
"allOrAnyChildren": true,
"displayName": "",
"equalsOrNotEquals": true,
"name": "",
"path": ""
},
{
"allOrAnyChildren": true,
"displayName": "",
"equalsOrNotEquals": true,
"name": "",
"path": ""
}
]
}'