Represents the structure of a single session entry in the response from the PAN-OS API. Contains detailed information about each session including source, destination, protocol, state, and other relevant data.

interface SessionEntry {
    application: string;
    decrypt-mirror: string;
    dport: string;
    dst: string;
    dstnat: string;
    egress: string;
    flags: string;
    from: string;
    idx: string;
    ingress: string;
    nat: string;
    proto: string;
    proxy: string;
    security-rule: string;
    source: string;
    sport: string;
    srcnat: string;
    start-time: string;
    state: string;
    to: string;
    total-byte-count: string;
    type: string;
    vsys: string;
    vsys-idx: string;
    xdport: string;
    xdst: string;
    xsource: string;
    xsport: string;
}

Properties

application: string

Application associated with the session.

decrypt-mirror: string

Indicates if decrypt mirror is applied to the session.

dport: string

Destination port number of the session.

dst: string

Destination IP address of the session.

dstnat: string

Destination NAT IP address.

egress: string

Egress interface for the session.

flags: string

Flags associated with the session.

from: string

Zone from which the session originated.

idx: string

Index of the session entry.

ingress: string

Ingress interface for the session.

nat: string

Indicates if NAT is applied to the session.

proto: string

Protocol used in the session.

proxy: string

Indicates if the session is a proxy session.

security-rule: string

Security rule applied to the session.

source: string

Source IP address of the session.

sport: string

Source port number of the session.

srcnat: string

Source NAT IP address.

start-time: string

Start time of the session.

state: string

Current state of the session.

to: string

Zone where the session is destined.

total-byte-count: string

Total byte count for the session.

type: string

Type of the session.

vsys: string

Virtual system associated with the session.

vsys-idx: string

Index of the virtual system associated with the session.

xdport: string

Translated destination port number for NAT.

xdst: string

Translated destination IP address for NAT.

xsource: string

Translated source IP address for NAT.

xsport: string

Translated source port number for NAT.

Generated using TypeDoc