interface Volume {
    creationDate?: Date;
    exportUri?: string;
    id: string;
    modificationDate?: Date;
    name: string;
    organization: string;
    project: string;
    server?: Instance.v1.ServerSummary;
    size: number;
    state: VolumeState;
    tags: string[];
    volumeType: VolumeVolumeType;
    zone: Zone;
}

Properties

creationDate?: Date

Volume creation date.

exportUri?: string

Show the volume NBD export URI.

id: string

Volume unique ID.

modificationDate?: Date

Volume modification date.

name: string

Volume name.

organization: string

Volume Organization ID.

project: string

Volume Project ID.

Instance attached to the volume.

size: number

Volume disk size.

Volume state.

tags: string[]

Volume tags.

volumeType: VolumeVolumeType

Volume type.

zone: Zone

Zone in which the volume is located.