interface Subnet {
    createdAt?: Date;
    id: string;
    privateNetworkId: string;
    projectId: string;
    subnet: string;
    updatedAt?: Date;
    vpcId: string;
}

Properties

createdAt?: Date

Subnet creation date.

id: string

ID of the subnet.

privateNetworkId: string

Private Network the subnet belongs to.

projectId: string

Scaleway Project the subnet belongs to.

subnet: string

Subnet CIDR.

updatedAt?: Date

Subnet last modification date.

vpcId: string

VPC the subnet belongs to.