Represents the structured response from the PAN-OS API containing session information for all active sessions.

interface SessionAllResponse {
    response: {
        result: {
            entry: SessionEntry[];
        };
        status: string;
    };
}

Properties

Properties

response: {
    result: {
        entry: SessionEntry[];
    };
    status: string;
}

The response wrapper containing the response status and the session entries.

Type declaration

  • result: {
        entry: SessionEntry[];
    }

    The container holding the actual session entries returned by the request.

    • entry: SessionEntry[]

      An array of SessionEntry objects, each providing details of an individual session.

  • status: string

    The status of the session information request, signifying success or an error.

Generated using TypeDoc