@akamai/openapi-ts
    Preparing search index...

    Type Alias PostSnapshotResponses

    type PostSnapshotResponses = {
        "200": {
            available: boolean;
            configs: string[];
            created: string;
            disks: {
                filesystem: "raw" | "swap" | "ext2" | "ext3" | "ext4" | "initrd";
                label: string;
                size: number;
            }[];
            finished: string;
            id: number;
            label: string
            | null;
            status:
                | "paused"
                | "pending"
                | "running"
                | "needsPostProcessing"
                | "successful"
                | "failed"
                | "userAborted";
            type: "auto"
            | "snapshot";
            updated: string;
        };
    }
    Index

    Properties

    Properties

    "200": {
        available: boolean;
        configs: string[];
        created: string;
        disks: {
            filesystem: "raw" | "swap" | "ext2" | "ext3" | "ext4" | "initrd";
            label: string;
            size: number;
        }[];
        finished: string;
        id: number;
        label: string
        | null;
        status:
            | "paused"
            | "pending"
            | "running"
            | "needsPostProcessing"
            | "successful"
            | "failed"
            | "userAborted";
        type: "auto"
        | "snapshot";
        updated: string;
    }

    An object representing a Backup or snapshot for a Linode with Backup service enabled.

    Type Declaration

    • Readonlyavailable: boolean

      Read-only Whether this Backup is available for restoration.

      Backups undergoing maintenance are not available for restoration.

    • Readonlyconfigs: string[]

      Read-only A list of the labels of the Configuration profiles that are part of the Backup.

    • Readonlycreated: string

      Read-only The date the Backup was taken.

    • Readonlydisks: {
          filesystem: "raw" | "swap" | "ext2" | "ext3" | "ext4" | "initrd";
          label: string;
          size: number;
      }[]

      Read-only A list of the disks that are part of the Backup.

    • Readonlyfinished: string

      Read-only The date the Backup completed.

    • Readonlyid: number

      Read-only The unique ID of this Backup.

    • label: string | null

      A label for Backups that are of type snapshot.

    • status:
          | "paused"
          | "pending"
          | "running"
          | "needsPostProcessing"
          | "successful"
          | "failed"
          | "userAborted"

      Read-only The current state of a specific Backup.

    • type: "auto" | "snapshot"

      Read-only This indicates whether the Backup is an automatic Backup or manual snapshot taken by the User at a specific point in time.

    • Readonlyupdated: string

      Read-only The date the Backup was most recently updated.