action bluemix_post_containers_floating_ips_ip_release { label: "Release public IP address" description: "This endpoint releases a public IP address from a space (corresponding IBM Containers command: `cf ic ip release `). The public IP address is no longer allocated to the space. If a container was bound to the IP address, it is automatically unbound." provider: bluemix method: POST path: "/containers/floating-ips/{ip}/release" encoding: json input: { type: "object" properties: { "X-Auth-Project-Id": { type: "string" } "X-Auth-Token": { type: "string" } ip: { type: "string" } } required: ["X-Auth-Project-Id", "X-Auth-Token", "ip"] additionalProperties: false } output: { type: "object" additionalProperties: true } }