Skip to main content

Add DB2 MultiNode Backupset

This operation is used to add a DB2 MultiNode Backupset

Request Body
  • backupSetInfo object required
  • backupSetEntity object required
  • clientName string

    Name of the DB2 MultiNode pseudo client

  • instanceName string

    Name of the DB2 MultiNode instance

  • displayName string

    Display name of DB2 Multinode pseudo client

  • instanceId integer required

    ID of the DB2 MultiNode instance

  • instanceGUID string
  • clientId integer required

    Id of the DB2 MultiNode pseudo client

  • appName string

    DB2 MultiNode

  • applicationId integer required

    Possible values: [103]

    103 for DB2 MultiNode

  • entityInfo object
  • companyId integer
  • companyName string
  • multiCommcellId integer
  • backupsetName string required

    Name of the Backupset to add

  • db2BackupSet object required
  • dB2DefaultIndexSP object required
  • storagePolicyId integer required

    pass 1 to assign same plan or pass storage policy id that should be associated for log backups

  • dB2DefaultCommandSP object
  • storagePolicyId integer

    pass 1 to assign same plan or pass storage policy id that should be associated

  • commonBackupSet object
  • isDefaultBackupSet boolean
  • planEntity object

    Pass this object to associate a plan to Backupset

  • planId integer required

    ID of the Plan

  • planName string

    Name of the plan

Responses

OK


Schema
  • processinginstructioninfo object
  • attributes object[]
  • name string
  • value string
  • response object[]
  • errorCode integer
  • entity object
  • clientId integer

    ID of the DB2 MultiNode Pseudo Client

  • applicationId integer
  • backupsetId integer

    ID of the Backupset created

  • _type_ integer
POST /backupset    

Authorization

type: apiKeyname: Authtokenin: header

Request

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

{
"backupSetInfo": {
"backupSetEntity": {
"clientName": "string",
"instanceName": "string",
"displayName": "string",
"instanceId": 0,
"instanceGUID": "string",
"clientId": 0,
"appName": "string",
"applicationId": 103,
"entityInfo": {
"companyId": 0,
"companyName": "string",
"multiCommcellId": 0
},
"backupsetName": "string"
},
"db2BackupSet": {
"dB2DefaultIndexSP": {
"storagePolicyId": 0
},
"dB2DefaultCommandSP": {
"storagePolicyId": 0
}
},
"commonBackupSet": {
"isDefaultBackupSet": true
},
"planEntity": {
"planId": 0,
"planName": "string"
}
}
}
curl -L -X POST 'https://CommandCenterHostName/commandcenter/api/Backupset' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-H 'Authtoken: <API_KEY_VALUE>' \
--data-raw '{
"backupSetInfo": {
"backupSetEntity": {
"clientName": "string",
"instanceName": "string",
"displayName": "string",
"instanceId": 0,
"instanceGUID": "string",
"clientId": 0,
"appName": "string",
"applicationId": 103,
"entityInfo": {
"companyId": 0,
"companyName": "string",
"multiCommcellId": 0
},
"backupsetName": "string"
},
"db2BackupSet": {
"dB2DefaultIndexSP": {
"storagePolicyId": 0
},
"dB2DefaultCommandSP": {
"storagePolicyId": 0
}
},
"commonBackupSet": {
"isDefaultBackupSet": true
},
"planEntity": {
"planId": 0,
"planName": "string"
}
}
}'