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

    Type Alias PostRestoreBackupData

    type PostRestoreBackupData = {
        body: { linode_id: number; overwrite?: boolean };
        path: { backupId: number; linodeId: number };
        query?: never;
        url: "linode/instances/{linodeId}/backups/{backupId}/restore";
    }
    Index

    Properties

    Properties

    body: { linode_id: number; overwrite?: boolean }

    Parameters to provide when restoring the Backup.

    Type Declaration

    • linode_id: number

      The ID of the Linode to restore a Backup to.

    • Optionaloverwrite?: boolean

      If true, deletes all Disks and Configs on the target Linode before restoring.

      If false, and the Disk image size is larger than the available space on the Linode, an error message indicating insufficient space is returned.

    path: { backupId: number; linodeId: number }

    Type Declaration

    • backupId: number

      The ID of the Backup to restore.

    • linodeId: number

      The ID of the Linode that the Backup belongs to.

    query?: never
    url: "linode/instances/{linodeId}/backups/{backupId}/restore"