action linode_get_backups { label: "Backups List" description: "Returns information about this Linode's available backups.\n" provider: linode method: GET path: "/linode/instances/{linodeId}/backups" encoding: json output: { type: "object" properties: { automatic: { type: "array" items: { type: "object" } } snapshot: { type: "object" properties: { current: { type: "object" description: "An object representing a Backup or snapshot for a Linode with Backup service enabled.\n" properties: { available: { type: "boolean" description: "Whether this Backup is available for restoration.\n\nBackups undergoing maintenance are not available for restoration.\n" } configs: { type: "array" description: "A list of the labels of the Configuration profiles that are part of the Backup.\n" items: { type: "string" } } created: { type: "string" format: "date-time" description: "The date the Backup was taken." } disks: { type: "array" description: "A list of the disks that are part of the Backup.\n" items: { type: "object" properties: { filesystem: { type: "string" description: "The Disk filesystem can be one of:\n\n * raw - No filesystem, just a raw binary stream.\n * swap - Linux swap area.\n * ext3 - The ext3 journaling filesystem for Linux.\n * ext4 - The ext4 journaling filesystem for Linux.\n * initrd - initrd (uncompressed initrd, ext2, max 32 MB).\n" enum: ["raw", "swap", "ext3", "ext4", "initrd"] } label: { type: "string" } size: { type: "integer" } } } } finished: { type: "string" format: "date-time" description: "The date the Backup completed." } id: { type: "integer" description: "The unique ID of this Backup." } label: { type: "string" description: "A label for Backups that are of type `snapshot`." } status: { type: "string" description: "The current state of a specific Backup." enum: ["paused", "pending", "running", "needsPostProcessing", "successful", "failed", "userAborted"] } type: { type: "string" description: "This indicates whether the Backup is an automatic Backup or manual snapshot taken by the User at a specific point in time.\n" enum: ["auto", "snapshot"] } updated: { type: "string" format: "date-time" description: "The date the Backup was most recently updated." } } } in_progress: { type: "object" additionalProperties: true } } } } } }