Skip to content

Commit bc96108

Browse files
feat(ApplicationFilter): Add new_appid parameter (#547)
* added new_appid to allowed parameters for ApplicationFilter. Need to test * Fixed formatting * Formatting fixed *again* disabled my autopep8 extension which was causing issues
1 parent 9e8cc2a commit bc96108

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

panos/objects.py

+5
Original file line numberDiff line numberDiff line change
@@ -574,6 +574,7 @@ class ApplicationFilter(VersionedPanObject):
574574
has_known_vulnerabilities (bool):
575575
pervasive (bool):
576576
tag (list): Administrative tags
577+
new_appid (bool):
577578
578579
"""
579580

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

640+
params.append(
641+
VersionedParamPath("new_appid", path="new-appid", vartype="yesno")
642+
)
643+
639644
self._params = tuple(params)
640645

641646

0 commit comments

Comments
 (0)