action bluemix_get_containers_floating_ips { label: "List available public IP addresses in a space" description: "This endpoint returns a list of all public IP addresses that are allocated to a space and not bound to a container. If you want to list all public IP addresses that are allocated to a space, even those that are already bound to a container, use the `all` query parameter (corrsponding IBM Containers command: `cf ic ip list`)." provider: bluemix method: GET path: "/containers/floating-ips" encoding: json input: { type: "object" properties: { "X-Auth-Project-Id": { type: "string" } "X-Auth-Token": { type: "string" } all: { type: "boolean" } } required: ["X-Auth-Project-Id", "X-Auth-Token"] additionalProperties: false } output: { type: "array" items: { properties: { Bindings: { properties: { ContainerId: { type: "string" description: "Unique identifier representing a container" } } } IpAddress: { type: "string" description: "The public IP address that is allocated to the organization space." } } } } }