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 9c00e11 commit c2089f7Copy full SHA for c2089f7
plugins/module_utils/checkpoint.py
@@ -1413,11 +1413,11 @@ def call_is_plural(api_call_object, payload):
1413
and ("nat" in api_call_object or "mobile-access" in api_call_object)
1414
):
1415
return False
1416
- if (
1417
- payload.get("layer") is None
1418
- and ("access" in api_call_object or "threat" in api_call_object or "https" in api_call_object)
1419
- ):
1420
- return True
+ if ((payload.get("layer") is None and ("access" in api_call_object or "threat"
+ in api_call_object or "https" in api_call_object))
+ or
+ (payload.get("package") is not None and "nat" in api_call_object)):
+ return True
1421
1422
1423
0 commit comments