action bluemix_post_containers_name_or_id_stop { label: "Stop a single container" description: "Stop a single container with a given container name or ID (corresponding IBM Containers command: `cf ic stop `)." provider: bluemix method: POST path: "/containers/{name_or_id}/stop" encoding: json input: { type: "object" properties: { "X-Auth-Project-Id": { type: "string" } "X-Auth-Token": { type: "string" } name_or_id: { type: "string" } t: { type: "integer" } } required: ["X-Auth-Project-Id", "X-Auth-Token", "name_or_id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }