Skip to main content

Modify database group

Select

Customer Managed

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
  • contentOperationType string required

    Default value: OVERWRITE

  • content object[]
  • postgreSQLContent object

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

  • databaseName string
  • postgreSQLSubclientProp object
  • numberOfBackupStreams integer

    Possible values: >= 1 and <= 100

    Number of data streams for backup

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

    Name of the cloud account

  • instanceName string

    Name of the instance

  • backupsetName string

    Default value: DumpBasedBackupSet

  • _type_ string

    Default value: SUBCLIENT_ENTITY

  • commCellName string
  • applicationId integer

    Default value: 125

  • 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": {
"contentOperationType": "OVERWRITE",
"content": [
{
"postgreSQLContent": {
"databaseName": "string"
}
}
],
"postgreSQLSubclientProp": {
"numberOfBackupStreams": 0,
"collectObjectListDuringBackup": true
}
},
"association": {
"entity": [
{
"clientName": "string",
"instanceName": "string",
"backupsetName": "DumpBasedBackupSet",
"_type_": "SUBCLIENT_ENTITY",
"commCellName": "string",
"applicationId": 125,
"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": {
"contentOperationType": "OVERWRITE",
"content": [
{
"postgreSQLContent": {
"databaseName": "string"
}
}
],
"postgreSQLSubclientProp": {
"numberOfBackupStreams": 0,
"collectObjectListDuringBackup": true
}
},
"association": {
"entity": [
{
"clientName": "string",
"instanceName": "string",
"backupsetName": "DumpBasedBackupSet",
"_type_": "SUBCLIENT_ENTITY",
"commCellName": "string",
"applicationId": 125,
"subclientName": "string"
}
]
}
}'