Skip to content
Original file line number Diff line number Diff line change
Expand Up @@ -1075,12 +1075,75 @@
"template": {
"description": "Job's execution container.",
"$ref": "#/definitions/JobExecutionTemplate"
},
"detailedStatus": {
"description": "Detailed status of the job execution.",
"$ref": "#/definitions/ExecutionJobStatus"
}
},
"x-ms-client-flatten": true
}
}
},
"ExecutionJobStatus": {
"description": "Container Apps Job execution.",
"type": "object",
"properties": {
"pods": {
"description": "Pods in the execution.",
"type": "array",
"items": {
"$ref": "#/definitions/ExecutionPodStatus"
},
"x-ms-identifiers": [
"name"
]
}
}
},
"ExecutionPodStatus": {
"description": "Container Apps Job execution.",
"type": "object",
"properties": {
"name": {
"description": "Pod Name.",
"type": "string"
},
"containers": {
"description": "Containers in the execution",
"type": "array",
"items": {
"$ref": "#/definitions/ExecutionContainerStatus"
},
"x-ms-identifiers": [
"name"
]
}
}
},
"ExecutionContainerStatus": {
"description": "Container Apps Job execution.",
"type": "object",
"properties": {
"name": {
"description": "Container Name.",
"type": "string"
},
"code": {
"description": "Exit code",
"type": "integer",
"format": "int32"
},
"reason": {
"description": "Container reason",
"type": "string"
},
"status": {
"description": "Status of the container",
"type": "string"
}
}
},
"ContainerAppJobExecutions": {
"description": "Container App executions collection ARM resource.",
"type": "object",
Expand Down