Skip to main content

Modify Subclient

This API modifies the subclient properties for your default/archivelog subclient of your instance.

Path Parameters
  • subclientId string required

    Subclient Id

Request Body
  • subClientProperties object
  • oracleSubclientProp object
  • dataThresholdStreams integer

    Modify number of data streams

  • maxBackupSetSizeInKB integer

    Modify backupset size

  • sectionSizeInKB integer

    Change oracle backupiece section size

  • validate boolean

    Default value: false

  • checkLogical boolean

    Default value: false

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": {
"oracleSubclientProp": {
"dataThresholdStreams": 0,
"maxBackupSetSizeInKB": 0,
"sectionSizeInKB": 0,
"validate": false,
"checkLogical": false
}
}
}
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": {
"oracleSubclientProp": {
"dataThresholdStreams": 0,
"maxBackupSetSizeInKB": 0,
"sectionSizeInKB": 0,
"validate": false,
"checkLogical": false
}
}
}'