action bluemix_post_containers_name_or_id_unpause { label: "Unpause a single container" description: "Unpause all processes that are currently stopped inside a single containers with a given container ID or name (corresponding IBM Containers command: `cf ic unpause `)." provider: bluemix method: POST path: "/containers/{name_or_id}/unpause" encoding: json input: { type: "object" properties: { "X-Auth-Project-Id": { type: "string" } "X-Auth-Token": { type: "string" } name_or_id: { type: "string" } } required: ["X-Auth-Project-Id", "X-Auth-Token", "name_or_id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }