action bluemix_get_tlskey { label: "Retrieve the TLS Certificate" description: "This endpoint returns the TLS (Transport Layer Security) certificate to the user (corresponding IBM Containers command: `cf ic login`). The TLS certificate is a SSL certificate that is used to authenticate the user's CLI with the IBM Containers service and to establish a secure communication between the user's local machine and the container in Bluemix." provider: bluemix method: GET path: "/tlskey" encoding: json input: { type: "object" properties: { "X-Auth-Project-Id": { type: "string" } "X-Auth-Token": { type: "string" } } required: ["X-Auth-Project-Id", "X-Auth-Token"] additionalProperties: false } output: { type: "object" required: ["ca_cert", "server_cert", "user_cert", "user_key"] properties: { ca_cert: { type: "string" description: "Certificate Authority (CA) certificate including the CA public key." } server_cert: { type: "string" description: "Server certificate including the server's public key." } user_cert: { type: "string" description: "User certificate including the user's public key." } user_key: { type: "string" description: "User's private key." } } } }