interface IP {
    address: string;
    createdAt?: Date;
    gatewayId?: string;
    id: string;
    organizationId: string;
    projectId: string;
    reverse?: string;
    tags: string[];
    updatedAt?: Date;
    zone: Zone;
}

Properties

address: string

The IP address itself.

createdAt?: Date

IP address creation date.

gatewayId?: string

Public Gateway associated with the IP address.

id: string

IP address ID.

organizationId: string

Owning Organization.

projectId: string

Owning Project.

reverse?: string

Reverse domain name for the IP address.

tags: string[]

Tags associated with the IP address.

updatedAt?: Date

IP address last modification date.

zone: Zone

Zone of the IP address.