Skip to main content

Update Subclient Properties

Select

SaaS
Customer Managed

This operation updates the properties associated with a subclient.

More Details

Path Parameters
  • subclientId string required
Request Body
  • subClientProperties object
  • fsIncludeFilterOperationType integer

    The type of operation to update the inclusion filters in the file system subclient backup job.

  • fsExcludeFilterOperationType integer
  • fsContentOperationType integer
  • useLocalContent boolean
  • fsSubClientProp object
  • useGlobalFilters integer
  • customSubclientContentFlags integer
  • backupSystemState boolean
  • customSubclientFlag boolean
  • openvmsBackupDate boolean
  • includePolicyFilters boolean
  • content object[]
  • path string
  • excludePath string
Responses

OK


Schema
  • processinginstructioninfo object
  • attributes object[]
  • name string
  • value string
  • response object[]
  • warningCode integer
  • errorCode integer
  • warningMessage string
POST /subclient/:subclientid    

Authorization

type: apiKeyname: Authtokenin: header

Request

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

{
"subClientProperties": {
"fsIncludeFilterOperationType": 0,
"fsExcludeFilterOperationType": 0,
"fsContentOperationType": 0,
"useLocalContent": true,
"fsSubClientProp": {
"useGlobalFilters": 0,
"customSubclientContentFlags": 0,
"backupSystemState": true,
"customSubclientFlag": true,
"openvmsBackupDate": true,
"includePolicyFilters": true
},
"content": [
{
"path": "string",
"excludePath": "string"
}
]
}
}
curl -L -X POST 'https://CommandCenterHostName/commandcenter/api/Subclient/:subclientId' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-H 'Authtoken: <API_KEY_VALUE>' \
--data-raw '{
"subClientProperties": {
"fsIncludeFilterOperationType": 0,
"fsExcludeFilterOperationType": 0,
"fsContentOperationType": 0,
"useLocalContent": true,
"fsSubClientProp": {
"useGlobalFilters": 0,
"customSubclientContentFlags": 0,
"backupSystemState": true,
"customSubclientFlag": true,
"openvmsBackupDate": true,
"includePolicyFilters": true
},
"content": [
{
"path": "string",
"excludePath": "string"
}
]
}
}'