action bluemix_delete_images_id { label: "Remove a Docker image." description: "Remove a Docker image from the private Bluemix registry that is identified by the image ID (corresponding IBM Containers command: `cf ic rmi `)." provider: bluemix method: DELETE path: "/images/{id}" encoding: json input: { type: "object" properties: { "X-Auth-Project-Id": { type: "string" } "X-Auth-Token": { type: "string" } id: { type: "string" } } required: ["X-Auth-Project-Id", "X-Auth-Token", "id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }