From d355040240ac7745cfa0fab1c1c8ddf6858c6268 Mon Sep 17 00:00:00 2001 From: Calvin Remsburg Date: Wed, 14 Feb 2024 16:56:04 -0600 Subject: [PATCH] Remove field tmo_5gcdelete from SessionStats model until 11.x.x has larger adoption --- pan_os_upgrade/models/session_stats.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pan_os_upgrade/models/session_stats.py b/pan_os_upgrade/models/session_stats.py index f89702a..7f92667 100644 --- a/pan_os_upgrade/models/session_stats.py +++ b/pan_os_upgrade/models/session_stats.py @@ -38,7 +38,6 @@ class SessionStats(BaseModel): pps: Optional[str] tcp_cong_ctrl: Optional[str] = Field(None, alias="tcp-cong-ctrl") tcp_reject_siw_thresh: Optional[str] = Field(..., alias="tcp-reject-siw-thresh") - tmo_5gcdelete: Optional[str] = Field(..., alias="tmo-5gcdelete") tmo_cp: Optional[str] = Field(..., alias="tmo-cp") tmo_def: Optional[str] = Field(..., alias="tmo-def") tmo_icmp: Optional[str] = Field(..., alias="tmo-icmp") @@ -55,3 +54,5 @@ class SessionStats(BaseModel): tmo_tcptimewait: Optional[str] = Field(..., alias="tmo-tcptimewait") tmo_udp: Optional[str] = Field(..., alias="tmo-udp") vardata_rate: Optional[str] = Field(..., alias="vardata-rate") + # below are only found on later releases of PAN-OS and will be ignored for now + # tmo_5gcdelete: Optional[str] = Field(..., alias="tmo-5gcdelete")