action bluemix_post_containers_name_or_id_floating_ips_ip_bind { label: "Bind a public IP address to a single container" description: "This endpoint binds an available public IP address to a single container (corresponding IBM Containers command: `cf ic ip bind `). After a container is bound to a public IP address, it can be accessed at `https://:`." provider: bluemix method: POST path: "/containers/{name_or_id}/floating-ips/{ip}/bind" 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 } }