Get RecoveryPoint StoreList
Get the list of recovery point stores.
Responses
- 200
- 404
- 503
OK
- application/json
- Schema
- Example (from schema)
Schema
stores object[]
library object
id int32name stringstatus stringPossible values: [
READY
,OFFLINE
,DECONFIGURED
]Status of recovery point store library.
model stringPossible values: [
DISK
,CLOUD
]Model of recovery point store library.
{
"stores": [
{
"library": {
"id": 0,
"name": "string"
},
"status": "READY",
"model": "DISK"
}
]
}
Not Found
- application/json
- Schema
- Example (from schema)
Schema
- errorMessage string
- errorCode int32
{
"errorMessage": "string",
"errorCode": 0
}
Service Unavailable
- application/json
- Schema
- Example (from schema)
Schema
- errorMessage string
- errorCode int32
{
"errorMessage": "string",
"errorCode": 0
}
Loading...