Skip to main content

Modify database group

This operation is used to modify the database group properties using the database group ID.

Path Parameters
  • subclientId integer required

    Id of the subclient

Request Body
  • subClientProperties object
  • commonProperties object required
  • isDefaultSubclient boolean

    true if default subclient

  • contentOperationType string required

    Default value: OVERWRITE

  • content object[]
  • mySQLContent object

    Names of the databases to be added to the Database group content

  • databaseName string
  • mySqlSubclientProp object
  • numberOfBackupStreams integer

    Possible values: >= 1 and <= 100

    Number of data streams for backup

  • association object
  • entity object[] required
  • clientName string

    Name of the cloud account

  • instanceName string

    Name of the instance

  • displayName string

    Display Name of the cloud account

  • backupsetName string

    Default value: defaultDummyBackupSet

  • _type_ string

    Default value: SUBCLIENT_ENTITY

  • commCellName string
  • applicationId integer

    Default value: 104

  • subclientName string

    Name of the database group to be modified

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": {
"commonProperties": {
"isDefaultSubclient": true
},
"contentOperationType": "OVERWRITE",
"content": [
{
"mySQLContent": {
"databaseName": "string"
}
}
],
"mySqlSubclientProp": {
"numberOfBackupStreams": 0
}
},
"association": {
"entity": [
{
"clientName": "string",
"instanceName": "string",
"displayName": "string",
"backupsetName": "defaultDummyBackupSet",
"_type_": "SUBCLIENT_ENTITY",
"commCellName": "string",
"applicationId": 104,
"subclientName": "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": {
"commonProperties": {
"isDefaultSubclient": true
},
"contentOperationType": "OVERWRITE",
"content": [
{
"mySQLContent": {
"databaseName": "string"
}
}
],
"mySqlSubclientProp": {
"numberOfBackupStreams": 0
}
},
"association": {
"entity": [
{
"clientName": "string",
"instanceName": "string",
"displayName": "string",
"backupsetName": "defaultDummyBackupSet",
"_type_": "SUBCLIENT_ENTITY",
"commCellName": "string",
"applicationId": 104,
"subclientName": "string"
}
]
}
}'