v1

latestOpenAPI 3.1.0MIT2026-07-2654137287.8 KB
metadata

Get Container Instance Status

Gets the health statuses of the current container instance

get/v1/status

Headers

Metadata'true' required

A custom request header required by all operations.

Response

OK

readyboolean required

true if the running container is ready. If a readiness probe is defined, this returns the latest result of the probe. If a readiness probe is not defined but a startup probe is defined, this returns the same value as the started property. If neither a readiness probe nor a startup probe are defined, returns true.

startedboolean required

true if the running container is started. If a startup probe is defined, this returns the latest result of the probe. If a startup probe is not defined, returns true.

Example response

{
  "ready": true,
  "started": true
}