action bluemix_post_containers_groups_name_or_id_unmaproute { label: "Unmap a public route from a container group" description: "This endpoint unmaps a public route from a container group (corresponding IBM Containers command: `cf ic route unmap -n -d `). If no other public route is mapped to the container group, then the container group is no longer available from the internet. \n\n When you unmap a route from a container group, the route is not deleted and can be mapped to other container groups. " provider: bluemix method: POST path: "/containers/groups/{name_or_id}/unmaproute" encoding: json input: { type: "object" properties: { "X-Auth-Project-Id": { type: "string" } "X-Auth-Token": { type: "string" } domain: { type: "string" description: "The default system domain is mybluemix.net and already provides a SSL certificate, so you can access your container groups with HTTPS without any additional configuration." } host: { type: "string" description: "The host name of your container group, such as mycontainerhost. Do not include underscores (_) in the host name. The host and the domain combined form the full public route URL, such as http://mycontainerhost.mybluemix.net." } name_or_id: { type: "string" } } required: ["X-Auth-Project-Id", "X-Auth-Token", "name_or_id"] additionalProperties: false } output: { type: "object" } }