action combell_get_ssh_keys { label: "Overview of SSH keys" provider: combell method: GET path: "/linuxhostings/{domainName}/ssh/keys" encoding: json input: { type: "object" properties: { domainName: { type: "string" } domain_name: { type: "string" description: "Linux hosting domain name." } } required: ["domainName", "domain_name"] additionalProperties: false } output: { type: "array" items: { type: "object" properties: { fingerprint: { type: "string" description: "The fingerprint of the public key.
\nThis value is ignored for creation of new SSH keys." } public_key: { type: "string" description: "Public key" } } additionalProperties: false } } }