We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e4f02e6 commit f559047Copy full SHA for f559047
panos/objects.py
@@ -659,7 +659,7 @@ class CustomUrlCategory(VersionedPanObject):
659
name (str): The name
660
url_value (list): Values to include in custom URL category object
661
description (str): Description of this object
662
- type (str): The type
+ type (str): (PAN-OS 9.0+) The type
663
664
"""
665
@@ -675,7 +675,8 @@ def _setup(self):
675
676
params.append(VersionedParamPath("url_value", path="list", vartype="member"))
677
params.append(VersionedParamPath("description", path="description"))
678
- params.append(VersionedParamPath("type"))
+ params.append(VersionedParamPath("type", exclude=True))
679
+ params[-1].add_profile("9.0.0", path="type")
680
681
self._params = tuple(params)
682
0 commit comments