interface VolumeTemplate {
    id: string;
    name: string;
    organization?: string;
    project?: string;
    size: number;
    volumeType: VolumeVolumeType;
}

Properties

id: string

UUID of the volume.

name: string

Name of the volume.

organization?: string

Organization ID of the volume.

One-of ('projectIdentifier'): at most one of 'project', 'organization' could be set.

project?: string

Project ID of the volume.

One-of ('projectIdentifier'): at most one of 'project', 'organization' could be set.

size: number

Disk size of the volume, must be a multiple of 512.

volumeType: VolumeVolumeType

Type of the volume.