interface VPC {
    createdAt?: Date;
    id: string;
    isDefault: boolean;
    name: string;
    organizationId: string;
    privateNetworkCount: number;
    projectId: string;
    region: Region;
    routingEnabled: boolean;
    tags: string[];
    updatedAt?: Date;
}

Properties

createdAt?: Date

Date the VPC was created.

id: string

VPC ID.

isDefault: boolean

Defines whether the VPC is the default one for its Project.

name: string

VPC name.

organizationId: string

Scaleway Organization the VPC belongs to.

privateNetworkCount: number

Number of Private Networks within this VPC.

projectId: string

Scaleway Project the VPC belongs to.

region: Region

Region of the VPC.

routingEnabled: boolean

Defines whether the VPC routes traffic between its Private Networks.

tags: string[]

Tags for the VPC.

updatedAt?: Date

Date the VPC was last modified.