action combell_delete_ssh_key { label: "Delete a SSH key" provider: combell method: DELETE path: "/linuxhostings/{domainName}/ssh/keys/{fingerprint}" encoding: json input: { type: "object" properties: { domainName: { type: "string" } domain_name: { type: "string" description: "Linux hosting domain name." } fingerprint: { type: "string" description: "Fingerprint of public key." } } required: ["domainName", "domain_name", "fingerprint"] additionalProperties: false } output: { type: "object" additionalProperties: true } }