interface PrivateNetwork {
    createdAt?: Date;
    dhcpEnabled: boolean;
    id: string;
    name: string;
    organizationId: string;
    projectId: string;
    region: Region;
    subnets: Subnet[];
    tags: string[];
    updatedAt?: Date;
    vpcId: string;
}

Properties

createdAt?: Date

Date the Private Network was created.

dhcpEnabled: boolean

Defines whether managed DHCP is enabled for this Private Network.

id: string

Private Network ID.

name: string

Private Network name.

organizationId: string

Scaleway Organization the Private Network belongs to.

projectId: string

Scaleway Project the Private Network belongs to.

region: Region

Region in which the Private Network is available.

subnets: Subnet[]

Private Network subnets.

tags: string[]

Tags of the Private Network.

updatedAt?: Date

Date the Private Network was last modified.

vpcId: string

VPC the Private Network belongs to.