diff --git a/pandevice/objects.py b/pandevice/objects.py index f9c06fcf..4ac386f3 100644 --- a/pandevice/objects.py +++ b/pandevice/objects.py @@ -40,6 +40,7 @@ class AddressObject(VersionedPanObject): type (str): Type of address: * ip-netmask (default) * ip-range + * ip-wildcard (added in PAN-OS 9.0) * fqdn description (str): Description of this object tag (list): Administrative tags @@ -61,7 +62,7 @@ def _setup(self): VersionedParamPath( "type", default="ip-netmask", - values=["ip-netmask", "ip-range", "fqdn"], + values=["ip-netmask", "ip-range", "ip-wildcard", "fqdn"], path="{type}", ) )