List all RMAN Backup Pieces
Select
SaaS
Customer Managed
List all RMAN backup-pieces based on time or SCN. In case both time and SCN is provided, SCN will take the higher priority.
Path Parameters
- instanceId int32 required
Id of the instance
Query Parameters
- toTime int32
toTime (GMT) for the browse operation (required input in case browsing with time)
- fromTime int32
fromTime (GMT) for the browse operation. (optional input in case browsing with time)
- endSCN int32
endSCN for the browse operation. (required input in case browsing with SCN)
Responses
- 200
- 400
- 500
Success
- application/json
- Schema
- Example (from schema)
Schema
jobs object[]
jobid int64Job ID
rmanCompletionTime int32RMAN recovery PIT (GMT) in Unix Format
jobCompletionTime int32Job Completion Time (GMT) in Unix Format
endSCN int64RMAN reported SCN for the job
pieces object[]
List of RMAN Pieces
name stringRMAN Piece name
type stringPossible values: [
DATA
,LOG
]RMAN Piece type
{
"jobs": [
{
"jobid": 0,
"rmanCompletionTime": 0,
"jobCompletionTime": 0,
"endSCN": 0,
"pieces": [
{
"name": "string",
"type": "DATA"
}
]
}
]
}
Bad Request
- application/json
- Schema
- Example (from schema)
Schema
- errorMessage string
- errorCode int32
{
"errorMessage": "string",
"errorCode": 0
}
Internal Server Error
- application/json
- Schema
- Example (from schema)
Schema
- errorMessage string
- errorCode int32
{
"errorMessage": "string",
"errorCode": 0
}
Loading...