action combell_get_all_ssh_keys { label: "Overview of SSH keys" provider: combell method: GET path: "/ssh" encoding: json input: { type: "object" properties: { skip: { type: "integer" format: "int32" description: "The number of items to skip in the resultset." } take: { type: "integer" format: "int32" description: "The number of items to return in the resultset. The returned count can be equal or less than this number." } } 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." } linux_hostings: { type: "array" description: "List of Linux hostings where SSH key is attached" items: { type: "string" } } public_key: { type: "string" description: "Public key" } } additionalProperties: false } } }