action bluemix_get_containers_id_status { label: "List the current state of a container." description: "This endpoint returns the current state of a container. This state can either be a transient state, such as BUILDING and NETWORKING, or a non-transient state, such as RUNNING, SHUTDOWN, CRASHED, or SUSPENDED." provider: bluemix method: GET path: "/containers/{id}/status" encoding: json input: { type: "object" properties: { "X-Auth-Project-Id": { type: "string" } "X-Auth-Token": { type: "string" } id: { type: "string" } } required: ["X-Auth-Project-Id", "X-Auth-Token", "id"] additionalProperties: false } output: { required: ["NameOrId"] properties: { NameOrId: { type: "string" description: "The unique identifier of the container. " } Status: { type: "string" description: "The current status of the container. The status can either be a transient one, such as BUILDING or NETWORKING, or a non-transient one, such as RUNNING, SHUTDOWN, CRASHED, or SUSPENDED. " } Transient: { type: "boolean" description: "When set to true, the current container state is temporary and will change soon. An example for a transient state is the BUILDING state. A container that is created will be set to the BUILDING state until all container layers are created and the container is started. When set to false, the container state is permanent, such as CRASHED." } } } }