interface Snapshot {
    baseVolume?: SnapshotBaseVolume;
    creationDate?: Date;
    errorReason?: string;
    id: string;
    modificationDate?: Date;
    name: string;
    organization: string;
    project: string;
    size: number;
    state: SnapshotState;
    tags: string[];
    volumeType: VolumeVolumeType;
    zone: Zone;
}

Properties

baseVolume?: SnapshotBaseVolume

Volume on which the snapshot is based on.

creationDate?: Date

Snapshot creation date.

errorReason?: string

Reason for the failed snapshot import.

id: string

Snapshot ID.

modificationDate?: Date

Snapshot modification date.

name: string

Snapshot name.

organization: string

Snapshot Organization ID.

project: string

Snapshot Project ID.

size: number

Snapshot size.

Snapshot state.

tags: string[]

Snapshot tags.

volumeType: VolumeVolumeType

Snapshot volume type.

zone: Zone

Snapshot zone.