Browse contents of a DB2 Backupset
This operation is used to fetch all tablespaces that are backed up for a DB2 Backupset
Path Parameters
- InstanceID integer required
ID of the instance
- application/json
Request Body
entity object
clientName stringName of the client
instanceName stringDB2 Instance name
displayName stringDisplay name of client in commcell
backupsetId integer requiredBackupset id (DB2 database)
_type_ integerinstanceId integer requiredID of the DB2 instance
backupsetGUID stringclientId integer requiredID of the client
appName stringPossible values: [
DB2
]DB2
backupsetName stringName of the backupset (DB2 Database name)
applicationId integer requiredPossible values: [
62
,37
]application ID for DB2 Unix is 62 and application ID for DB2 windows is 37
entityInfo object
companyId integercompanyName stringmultiCommcellId integerisDefaultBackupSet booleanentityName string- path string
- pointInTime integer
lists all tablespaces already backed up at or before this particular time stamp
- options integer
Responses
- 200
- 401
OK
- application/json
- Schema
- Example (from schema)
- Example 1
Schema
oracleContent object[]
tableSpace stringTable space name
fileType integerTable space type
{
"oracleContent": [
{
"tableSpace": "string",
"fileType": 0
}
]
}
{
"oracleContent": [
{
"tableSpace": "SYSCATSPACE",
"fileType": 5
},
{
"tableSpace": "SYSTOOLSPACE",
"fileType": 5
},
{
"tableSpace": "TEMPSPACE1",
"fileType": 5
},
{
"tableSpace": "USERSPACE1",
"fileType": 5
},
{
"tableSpace": "USERSPACE4",
"fileType": 5
}
]
}
Unauthorized
- application/json
- Schema
- Example (from schema)
- Example 1
Schema
- errorMessage string
- errorCode integer
{
"errorMessage": "string",
"errorCode": 0
}
{
"errorMessage": "Access denied",
"errorCode": 5
}
Loading...