Describes the response structure returned by PAN-OS when querying routing route information. Contains a collection of RoutingEntry items representing individual routing entries.

interface RoutingRouteResponse {
    response: {
        result: {
            entry: RoutingEntry | RoutingEntry[];
            flags: string;
        };
        status: string;
    };
}

Properties

Properties

response: {
    result: {
        entry: RoutingEntry | RoutingEntry[];
        flags: string;
    };
    status: string;
}

Contains the status of the request and the result payload with routing entries.

Type declaration

  • result: {
        entry: RoutingEntry | RoutingEntry[];
        flags: string;
    }

    The parent element containing the routing flags and the individual routing entries.

    • entry: RoutingEntry | RoutingEntry[]

      Either a single RoutingEntry object or an array of RoutingEntry objects. This reflects the possibility of receiving one or many routing entries from the API.

    • flags: string

      Flags representing attributes that are applicable to the entire routing route response.

  • status: string

    Indicates if the request to fetch routing route information was successful ('success') or not ('error').

Generated using TypeDoc