GetBigDataList
This endpoint is used to return the list of big data apps.
- 200
- 404
Success
- application/json
- Schema
- Example (from schema)
Schema
- bigDataAppCount int32
This returns the total number of big data apps.
bigDataApps object[]
This returns the big data app list.
id int32This gives the id of the big data app.
name stringThis give the name of the big data app.
displayName stringThis gives the name of the big data app as it shown on the admin console or GUI.
GUID stringThis returns the Globally Unique Identifier of the big data app.
configured booleanThis returns if the big data app is configured or deconfigured.
applicationId int32This gives the application id of the big data app.
clusterType stringThis returns the clusterType of the big data app
lastBackup object
jobId int32Returns the job id of the last backup job performed.
status stringPossible values: [
NEVER_BACKED_UP
,COMPLETED
,FAILED
,COMPLETED_WITH_ERRORS
,KILLED
,SUSPENDED
,INTERRUPTED
,ANY_STATUS
,SKIPPED
,FAILED_TO_START
,SYNCHRONIZED
,NOT_SYNCHRONIZED
,NOT_ATTEMPTED
,STARTED
,COMPLETED_WITH_WARNINGS
,SYSTEM_FAILED
,COMMITTED
]Status of the last backup job performed.
time int64Shows the time when the last back up job was carried out. The time is provided in unix time format.
failureReason stringGives the reason for the last backup job failing, if the last backup job fails.
applicationSize int32Provides the application size of the big data app. It is provided in bytes.
plan object
id int32name stringinstance object
id int32name stringSLA object
status stringPossible values: [
MET_SLA
,MISSED_SLA
,EXCLUDED_SLA
,YET_TO_BE_PROTECTED
,MIGHT_MISS_SLA
,UNKNOWN
]Provides the SLA status.
reasonList object[]
Provides a reason on why the SLA might not be met.
mightMissReason stringGives the reason as to why the SLA might not be met.
subclient object
id int32name stringcompany object
id int32name string
{
"bigDataAppCount": 0,
"bigDataApps": [
{
"id": 0,
"name": "string",
"displayName": "string",
"GUID": "string",
"configured": true,
"applicationId": 0,
"clusterType": "string",
"lastBackup": {
"jobId": 0,
"status": "NEVER_BACKED_UP",
"time": 0,
"failureReason": "string"
},
"applicationSize": 0,
"plan": {
"id": 0,
"name": "string"
},
"instance": {
"id": 0,
"name": "string"
},
"SLA": {
"status": "MET_SLA",
"reasonList": [
{
"mightMissReason": "string",
"subclient": {
"id": 0,
"name": "string"
}
}
]
},
"company": {
"id": 0,
"name": "string"
}
}
]
}
Requested Details not found