interface IP {
    address: string;
    createdAt?: Date;
    id: string;
    isIpv6: boolean;
    projectId: string;
    region: Region;
    resource?: IPAM.v1.Resource;
    reverses: Reverse[];
    source?: Source;
    tags: string[];
    updatedAt?: Date;
    zone?: Zone;
}

Properties

address: string

IPv4 or IPv6 address in CIDR notation.

createdAt?: Date

Date the IP was reserved.

id: string

IP ID.

isIpv6: boolean

Defines whether the IP is an IPv6 (false = IPv4).

projectId: string

Scaleway Project the IP belongs to.

region: Region

Region of the IP.

resource?: IPAM.v1.Resource

Resource which the IP is attached to.

reverses: Reverse[]

Array of reverses associated with the IP.

source?: Source

Source pool where the IP was reserved in.

tags: string[]

Tags for the IP.

updatedAt?: Date

Date the IP was last modified.

zone?: Zone

Zone of the IP, if zonal.