action bluemix_get_containers_groups { label: "List all container groups in a space" description: "This endpoint returns a list of all container groups in a space independent of their current state. (corresponding IBM Containers command: `cf ic group list`)." provider: bluemix method: GET path: "/containers/groups" encoding: json input: { type: "object" properties: { "X-Auth-Project-Id": { type: "string" } "X-Auth-Token": { type: "string" } } required: ["X-Auth-Project-Id", "X-Auth-Token"] additionalProperties: false } output: { type: "array" items: { properties: { Creation_time: { type: "string" description: "Time when the container group is created." } Id: { type: "string" description: "Unique identifier of the container group." } Name: { type: "string" description: "Name of the container group." } Port: { type: "integer" format: "int32" description: "The port number that is exposed to the public during container group creation." } Routes: { type: "array" description: "The public route that is mapped to the container group. You can use this route to access your container group from the Internet." items: { type: "string" } } Status: { type: "string" description: "Current status of the container group. The container group status is a composite of ACTION and STATUS:

ACTIONS = (CREATE, DELETE, UPDATE, ROLLBACK, SUSPEND, RESUME, ADOPT, SNAPSHOT, CHECK, RESTORE)

STATUSES = (IN_PROGRESS, FAILED, COMPLETE)" } Updated_time: { type: "string" description: "Time when the container group is changed and updated." } } } } }