action bluemix_post_containers_name_or_id_floating_ips_ip_unbind { label: "Unbind a public IP address from a container" description: "This endpoint unbinds a public IP address from a container (corresponding IBM Containers command: `cf ic ip unbind `). The container that is unbound from the IP address will not be accessible from the internet anymore. The public IP address will be further allocated to the space and can be used to be bound to other containers. " provider: bluemix method: POST path: "/containers/{name_or_id}/floating-ips/{ip}/unbind" encoding: json input: { type: "object" properties: { "X-Auth-Project-Id": { type: "string" } "X-Auth-Token": { type: "string" } ip: { type: "string" } name_or_id: { type: "string" } } required: ["X-Auth-Project-Id", "X-Auth-Token", "ip", "name_or_id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }