action bluemix_delete_containers_groups_name_or_id { label: "Stop and delete all container instances in a container group." description: "Stops and deletes the container instances that run in a container group (corresponding IBM Containers command: `cf ic group rm `). When you delete a container group, all floating private IP addresses are released." provider: bluemix method: DELETE path: "/containers/groups/{name_or_id}" encoding: json input: { type: "object" properties: { "X-Auth-Project-Id": { type: "string" } "X-Auth-Token": { type: "string" } force: { 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 } }