action bluemix_post_containers_groups_name_or_id_maproute { label: "Map a public route to a container group." description: "If you want your container group to be accessible from the Internet, you need to expose a public port and map a public route to it (corresponding IBM Containers command: `cf ic route map -n -d `). Every route consists of the host name and domain." provider: bluemix method: POST path: "/containers/groups/{name_or_id}/maproute" 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" } }