action hetzner_get_ssh_keys_id { label: "Get a SSH key" description: "Returns a specific SSH key object." provider: hetzner method: GET path: "/ssh_keys/{id}" encoding: json input: { type: "object" properties: { id: { type: "integer" } } required: ["id"] additionalProperties: false } output: { type: "object" required: ["ssh_key"] properties: { ssh_key: { type: "object" required: ["created", "fingerprint", "id", "labels", "name", "public_key"] properties: { created: { type: "string" description: "Point in time when the Resource was created (in ISO-8601 format)" } fingerprint: { type: "string" description: "Fingerprint of public key" } id: { type: "integer" description: "ID of the Resource" } labels: { type: "object" description: "User-defined labels (key-value pairs)" } name: { type: "string" description: "Name of the Resource. Must be unique per Project." } public_key: { type: "string" description: "Public key" } } } } } }