action bluemix_delete_containers_name_or_id { label: "Remove a single container" description: "Remove a single container that is identified by container ID or name from a space (corresponding IBM Containers command: `cf ic delete `). The container must be stopped before it can be deleted, unless the `force` query parameter is set to true." provider: bluemix method: DELETE path: "/containers/{name_or_id}" encoding: json input: { type: "object" properties: { "X-Auth-Project-Id": { type: "string" } "X-Auth-Token": { type: "string" } force: { type: "boolean" } name_or_id: { type: "string" } } required: ["X-Auth-Project-Id", "X-Auth-Token", "name_or_id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }