curl --request PUT \
--url https://api.example.com/service/{tenant_name}/pbm_rule/{rule_name} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"name": "<string>",
"priority": 123,
"filters": [
{
"filter_type": "src_network",
"values": "<unknown>"
}
],
"count": 123,
"unit": "unspecified",
"enable": true,
"labels": {},
"description": "<string>"
}
'