interface RoutingPolicy {
    createdAt?: Date;
    id: string;
    name: string;
    organizationId: string;
    prefixFilterIn: string[];
    prefixFilterOut: string[];
    projectId: string;
    region: Region;
    tags: string[];
    updatedAt?: Date;
}

Properties

createdAt?: Date

Creation date of the routing policy.

id: string

Unique identifier of the routing policy.

name: string

Name of the routing policy.

organizationId: string

Organization ID.

prefixFilterIn: string[]

IP prefixes to accept from the peer (ranges of route announcements to accept).

prefixFilterOut: string[]

IP prefix filters to advertise to the peer (ranges of routes to advertise).

projectId: string

Project ID.

region: Region

Region of the routing policy.

tags: string[]

List of tags associated with the routing policy.

updatedAt?: Date

Last modification date of the routing policy.