Fetch DB2 Storage groups
This operation is used to fetch all backed up DB2 storage groups of a DB2 Backupset.
Path Parameters
- BackupsetID integer required
ID of the backupset
Responses
- 200
- 401
- 500
OK
- application/json
- Schema
- Example (from schema)
- Example 1
Schema
groupInfo object
storageGroup object[]
groupName stringStorage group name
stoPaths string[]path of the storage group
error object
errorMessage stringerrorCode integer
{
"groupInfo": {
"storageGroup": [
{
"groupName": "string",
"stoPaths": [
"string"
]
}
]
},
"error": {
"errorMessage": "string",
"errorCode": 0
}
}
{
"groupInfo": {
"storageGroup": [
{
"groupName": "IBMSTOGROUP",
"stoPaths": [
"/home/db2inst1"
]
}
]
},
"error": {
"errorMessage": "",
"errorCode": 0
}
}
Unauthorized
- application/json
- Schema
- Example (from schema)
- Example 1
Schema
- errorMessage string
- errorCode integer
{
"errorMessage": "string",
"errorCode": 0
}
{
"errorMessage": "Access denied",
"errorCode": 5
}
Internal Server Error
Loading...