Interface BackupInternal

A Backup Object

Example

{
"object": "backup",
"attributes": {
"uuid": "26adeafc-74af-43fd-93a5-9afa0486b21b",
"uuid_short": "26adeafc",
"name": "test-1",
"sha256_hash": "56d2965e9167c785647878a391dfe24460c3aa5e1111b385708094bd8837b487",
"bytes": 3266448936,
"locked": false,
"creating": false,
"created_at": "2023-11-28T08:37:39.000000Z"
}
}
interface Backup {
    attributes: {
        bytes: number;
        created_at: string;
        creating: boolean;
        locked: boolean;
        name: string;
        sha256_hash: null | string;
        uuid: string;
        uuid_short: string;
    };
    object: "backup";
}

Properties

Properties

attributes: {
    bytes: number;
    created_at: string;
    creating: boolean;
    locked: boolean;
    name: string;
    sha256_hash: null | string;
    uuid: string;
    uuid_short: string;
}

Type declaration

  • bytes: number
  • created_at: string
  • creating: boolean
  • locked: boolean
  • name: string
  • sha256_hash: null | string

    The hash of the Backup. May be null if the Backup is still being created.

  • uuid: string
  • uuid_short: string
object: "backup"

Generated using TypeDoc