interface DatabaseBackup {
    createdAt?: Date;
    databaseId: string;
    dbSize?: number;
    downloadUrl?: string;
    downloadUrlExpiresAt?: Date;
    expiresAt?: Date;
    id: string;
    organizationId: string;
    projectId: string;
    region: Region;
    size?: number;
    status: ServerlessSQLDB.v1alpha1.DatabaseBackupStatus;
}

Properties

createdAt?: Date

Creation date.

databaseId: string

UUID of the source Serverless SQL Database the backup is created from.

dbSize?: number

Size (in bytes) of the database when backup has been done.

downloadUrl?: string

Download URL of the exported database backup.

downloadUrlExpiresAt?: Date

Expiration date of the download URL.

expiresAt?: Date

Expiration date.

id: string

UUID that uniquely identifies a Serverless SQL Database backup.

organizationId: string

The ID of your Scaleway organization.

projectId: string

UUID of the Scaleway project.

region: Region

Region of the database backup.

size?: number

Size (in bytes) of the database backup file.

Status of the Serverless SQL Database backup. One of unknown_status | error | ready | locked.