action hetzner_get_isos_id { label: "Get an ISO" description: "Returns a specific ISO object." provider: hetzner method: GET path: "/isos/{id}" encoding: json input: { type: "object" properties: { id: { type: "integer" } } required: ["id"] additionalProperties: false } output: { type: "object" required: ["iso"] properties: { iso: { type: "object" required: ["deprecated", "description", "id", "name", "type"] properties: { deprecated: { type: "string" description: "ISO 8601 timestamp of deprecation, null if ISO is still available. After the deprecation time it will no longer be possible to attach the ISO to Servers." } description: { type: "string" description: "Description of the ISO" } id: { type: "integer" description: "ID of the Resource" } name: { type: "string" description: "Unique identifier of the ISO. Only set for public ISOs" } type: { type: "string" description: "Type of the ISO" enum: ["public", "private"] } } } } } }