Get Oracle Backup Pieces
This operation fetches oracle backupPieces for a Given Time Duration. (If only fromTime or ToTime is provided then defaults duration to 2 weeks)
Path Parameters
- instanceId integer required
InstanceId of the Instance whose backupPieces are required
Responses
- 200
- 401
- 500
OK
- application/json
- Schema
- Example (from schema)
- Example1
Schema
backupPieces object[]
backupPieceName stringbackupPieces found associated with the instance for the given time duration.
backupJobId integerJob Id of the associated backup piece.
dateOfBackup integerdate when the backup piece was created
{
"backupPieces": [
{
"backupPieceName": "string",
"backupJobId": 0,
"dateOfBackup": 0
}
]
}
{
"backupPieces": [
{
"backupPieceName": "115504_SRCRPO_abc6d6ef_60153_1_1",
"backupJobId": 115504,
"dateOfBackup": 1761129647
},
{
"backupPieceName": "115504_SRCRPO_ghi6j6kl_60153_1_1",
"backupJobId": 115504,
"dateOfBackup": 1761129647
}
]
}
Unauthorized
- application/json
- Schema
- Example (from schema)
- Example
Schema
- errorMessage string
- errorCode integer
{
"errorMessage": "string",
"errorCode": 0
}
{
"errorMessage": "Access Denied",
"errorCode": 5
}
Internal Server Error
- application/json
- Schema
- Example (from schema)
- Example
Schema
- errorMessage string
- errorCode integer
{
"errorMessage": "string",
"errorCode": 0
}
{
"errorMessage": "Exception caught when job info retrieval with error [User [13] does not have permission to browse instance [202].].",
"errorCode": 0
}
Loading...