Oracle WebLogic Server APIs · Schema
DeploymentTaskStatus
Application ServerEnterpriseJava EEMiddlewareOracleWebLogic
Properties
| Name | Type | Description |
|---|---|---|
| taskId | string | Unique identifier for the deployment task |
| status | string | Current status of the deployment task |
| progress | string | Progress description |
| completed | boolean | Whether the task is complete |
| failed | boolean | Whether the task failed |
| message | string | Status or error message |
| links | array |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/DeploymentTaskStatus",
"title": "DeploymentTaskStatus",
"type": "object",
"properties": {
"taskId": {
"type": "string",
"description": "Unique identifier for the deployment task"
},
"status": {
"type": "string",
"description": "Current status of the deployment task",
"enum": [
"INITIATED",
"IN_PROGRESS",
"COMPLETED",
"FAILED",
"CANCELLED"
]
},
"progress": {
"type": "string",
"description": "Progress description"
},
"completed": {
"type": "boolean",
"description": "Whether the task is complete"
},
"failed": {
"type": "boolean",
"description": "Whether the task failed"
},
"message": {
"type": "string",
"description": "Status or error message"
},
"links": {
"type": "array",
"items": {
"$ref": "#/components/schemas/Link"
}
}
}
}