action bluemix_post_containers_floating_ips_request { label: "Request a public IP address for a space" description: "This endpoint requests a new public IP address for a space (corresponding IBM Containers command: `cf ic ip request`). The number of public IP addresses depends on the quota that is assigned to the space. If there is not enough quota left to request a new public IP address, you can either contact your organization manager to increase the quota, or unbind an existing IP address from a container by running `cf ic ip unbind ` command, or calling the `POST /container/{name_or_id}/floating-ips/{ip}/unbind` endpoint." provider: bluemix method: POST path: "/containers/floating-ips/request" encoding: json input: { type: "object" properties: { "X-Auth-Project-Id": { type: "string" } "X-Auth-Token": { type: "string" } } required: ["X-Auth-Project-Id", "X-Auth-Token"] additionalProperties: false } output: { type: "string" description: "New public IP address that is allocated to your space." } }