action bluemix_post_containers_name_or_id_rename { label: "Rename a single container" description: "Change the current name of an existing single container that is identified by the container ID or name (corresponding IBM Containers command: `cf ic rename `). " provider: bluemix method: POST path: "/containers/{name_or_id}/rename" encoding: json input: { type: "object" properties: { "X-Auth-Project-Id": { type: "string" } "X-Auth-Token": { type: "string" } name: { type: "string" } name_or_id: { type: "string" } } required: ["X-Auth-Project-Id", "X-Auth-Token", "name", "name_or_id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }