action bluemix_put_tlskey_refresh { label: "Refresh the TLS Certificate" description: "This endpoint requests to generate a new TLS (Transport Layer Security) certificate on the server and to update the existing user TLS certificate (corresponding IBM Containers command: `cf ic init`)." provider: bluemix method: PUT path: "/tlskey/refresh" 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: { properties: { ca_cert: { type: "string" description: "Certificate Authority (CA) certificate including the CA public key." } reg_host: { type: "string" description: "Full URL to the IBM Bluemix registry." } 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." } } } }