Package version:

Interface BackupStatus

Backup status

interface BackupStatus {
    errorMessage?: string;
    healthy?: boolean;
    lastTransferSize?: number;
    lastTransferType?: string;
    mirrorState?: string;
    relationshipStatus?: string;
    totalTransferBytes?: number;
    transferProgressBytes?: number;
    unhealthyReason?: string;
}

Properties

errorMessage?: string

Displays error message if the backup is in an error state NOTE: This property will not be serialized. It can only be populated by the server.

healthy?: boolean

Backup health status NOTE: This property will not be serialized. It can only be populated by the server.

lastTransferSize?: number

Displays the last transfer size NOTE: This property will not be serialized. It can only be populated by the server.

lastTransferType?: string

Displays the last transfer type NOTE: This property will not be serialized. It can only be populated by the server.

mirrorState?: string

The status of the backup NOTE: This property will not be serialized. It can only be populated by the server.

relationshipStatus?: string

Status of the backup mirror relationship NOTE: This property will not be serialized. It can only be populated by the server.

totalTransferBytes?: number

Displays the total bytes transferred NOTE: This property will not be serialized. It can only be populated by the server.

transferProgressBytes?: number

Displays the total number of bytes transferred for the ongoing operation NOTE: This property will not be serialized. It can only be populated by the server.

unhealthyReason?: string

Reason for the unhealthy backup relationship NOTE: This property will not be serialized. It can only be populated by the server.