List Object Storage Instances
Select
SaaS
This API returns the list of all Object Storage instances.
Responses
- 200
OK
- application/json
- Schema
- Example (from schema)
- Example 1
Schema
instances object[]
id integerid of the instance
name stringname of the instance
client object
id integerclient id
name stringclient name
vendor stringinstanceType stringlastBackup object
Shows the time when the last back up job was carried out. The time is provided in unix time format.
time integerapplicationSize integerGives the application size of the instance. It is returned in bytes.
plan object
id integerassociated plan id
name stringassociated plan name
SLAStatus stringPossible values: [
MET_SLA
,MISSED_SLA
,EXCLUDED_SLA
,YET_TO_BE_PROTECTED
,MIGHT_MISS_SLA
,UNKNOWN
]Provides the SLA status
company object
id integercompany id to which instance belongs to
name stringcompany name to which instance belongs to
{
"instances": [
{
"id": 0,
"name": "string",
"client": {
"id": 0,
"name": "string"
},
"vendor": "string",
"instanceType": "string",
"lastBackup": {
"time": 0
},
"applicationSize": 0,
"plan": {
"id": 0,
"name": "string"
},
"SLAStatus": "MET_SLA",
"company": {
"id": 0,
"name": "string"
}
}
]
}
{
"instances": [
{
"id": 11902,
"name": "1saiblobuitest",
"client": {
"id": 23487,
"name": "1saiblobuitest"
},
"vendor": "MICROSOFT_AZURE",
"instanceType": "Azure Blob",
"lastBackup": {
"time": 1680037544
},
"applicationSize": 0,
"plan": {
"id": 11942,
"name": "1saiuiplan"
},
"SLAStatus": "MET_SLA",
"company": {
"id": 10852,
"name": "SP3001"
}
},
{
"id": 10626,
"name": "asdfasd",
"client": {
"id": 21405,
"name": "asdfasd"
},
"vendor": "MICROSOFT_AZURE",
"instanceType": "Azure Blob",
"lastBackup": {
"time": 1675806258
},
"applicationSize": 1537413742592,
"plan": {
"id": 7657,
"name": "customplan480"
},
"SLAStatus": "MISSED_SLA",
"company": {
"id": 10852,
"name": "SP3001"
}
}
]
}
Loading...