Skip to content

Commit

Permalink
feat(ApplicationFilter): Add new_appid parameter (#547)
Browse files Browse the repository at this point in the history
* added new_appid to allowed parameters for ApplicationFilter. Need to test

* Fixed formatting

* Formatting fixed *again* disabled my autopep8 extension which was causing issues
  • Loading branch information
keithcampbelljr committed Feb 8, 2024
1 parent 9e8cc2a commit bc96108
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions panos/objects.py
Original file line number Diff line number Diff line change
Expand Up @@ -574,6 +574,7 @@ class ApplicationFilter(VersionedPanObject):
has_known_vulnerabilities (bool):
pervasive (bool):
tag (list): Administrative tags
new_appid (bool):
"""

Expand Down Expand Up @@ -636,6 +637,10 @@ def _setup(self):
)
params.append(VersionedParamPath("tag", path="tagging/tag", vartype="member"))

params.append(
VersionedParamPath("new_appid", path="new-appid", vartype="yesno")
)

self._params = tuple(params)


Expand Down

0 comments on commit bc96108

Please sign in to comment.