Skip to main content

Update Schedule Policy Entity Associations

This operation adds, excludes, or removes entity associations on a schedule policy. All TimeZone Ids

More Details

Request Body
  • taskInfo object
  • taskOperation int32

    Default value: 5

    Update task

  • associations object[]

    You define the schedule policy entities in this

  • clientName string

    The name of the client.

  • backupsetName string

    The name of the backup set.

  • appName string

    The name of the application. Click more details to view all appNames

  • subclientName string

    The name of the subclient.

  • instanceId int32

    The system-generated ID assigned to the instance.

  • flags object

    The option to exclude an entity from an association.

  • exclude boolean
  • task object
  • task object
  • taskName string

    The name of the schedule policy

Responses

OK

PUT /task    

Authorization

type: apiKeyname: Authtokenin: header

Request

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

{
"taskInfo": {
"taskOperation": 5,
"associations": [
{
"clientName": "string",
"backupsetName": "string",
"appName": "string",
"subclientName": "string",
"instanceId": 0,
"flags": {
"exclude": true
}
}
],
"task": {
"task": {
"taskName": "string"
}
}
}
}
curl -L -X PUT 'https://CommandCenterHostName/commandcenter/api/Task' \
-H 'Content-Type: application/json' \
-H 'Authtoken: <API_KEY_VALUE>' \
--data-raw '{
"taskInfo": {
"taskOperation": 5,
"associations": [
{
"clientName": "string",
"backupsetName": "string",
"appName": "string",
"subclientName": "string",
"instanceId": 0,
"flags": {
"exclude": true
}
}
],
"task": {
"task": {
"taskName": "string"
}
}
}
}'