interface Volume {
    countPin: number;
    createdAt?: Date;
    id: string;
    name: string;
    projectId: string;
    region: Region;
    size?: number;
    tags: string[];
    updatedAt?: Date;
}

Properties

countPin: number
createdAt?: Date
id: string
name: string
projectId: string
region: Region

Region to target. If none is passed will use default region from the config.

size?: number
tags: string[]
updatedAt?: Date