Get Kubernetes applications details
API to get details of a Kubernetes application
Path Parameters
- appGUID string required
GUID of the Application to get details
Responses
- 200
- 500
OK
- application/json
- Schema
- Example (from schema)
Schema
- name string
Name of the Application
- GUID string
GUID of the Application
activityControl Kubernetes Application Activity Control Options
enableBackup booleanenableRestore booleanSLA object
SLA Details for a Kubernetes entity
status stringPossible values: [
MET_SLA
,MISSED_SLA
,EXCLUDED_SLA
,YET_TO_BE_PROTECTED
,MIGHT_MISS_SLA
,UNKNOWN
]Provides the SLA status.
reason string- applicationSize int32
Size of the application
company object
id int32name stringcluster object
id int32name stringplan object
id int32name string- status string
Possible values: [
PROTECTED
,NOT_PROTECTED
,PENDING
,BACKED_UP_WITH_ERROR
,DISCOVERED
]The status of the backup for the VM, instance, or container.
applicationGroup object
id int32name string- provisionedSize int32
Provisioned size of the volumes
{
"name": "string",
"GUID": "string",
"activityControl": {
"enableBackup": true,
"enableRestore": true
},
"SLA": {
"status": "MET_SLA",
"reason": "string"
},
"applicationSize": 0,
"company": {
"id": 0,
"name": "string"
},
"cluster": {
"id": 0,
"name": "string"
},
"plan": {
"id": 0,
"name": "string"
},
"status": "PROTECTED",
"applicationGroup": {
"id": 0,
"name": "string"
},
"provisionedSize": 0
}
Server Error
- application/json
- Schema
- Example (from schema)
Schema
- errorMessage string
- errorCode int32
{
"errorMessage": "string",
"errorCode": 0
}
Loading...