@runloop/api-client - v1.4.0
    Preparing search index...

    Interface NetworkPolicyView

    A NetworkPolicy defines egress network access rules for devboxes. Policies can be applied to blueprints, devboxes, and snapshot resumes.

    interface NetworkPolicyView {
        id: string;
        create_time_ms: number;
        egress: Egress;
        name: string;
        update_time_ms: number;
        description?: string | null;
    }
    Index

    Properties

    id: string

    The unique identifier of the NetworkPolicy.

    create_time_ms: number

    The creation time of the NetworkPolicy (Unix timestamp in milliseconds).

    egress: Egress

    The egress rules for this policy.

    name: string

    The human-readable name of the NetworkPolicy. Unique per account.

    update_time_ms: number

    Last update time of the NetworkPolicy (Unix timestamp in milliseconds).

    description?: string | null

    Optional description of the NetworkPolicy.