curl --request PATCH \
--url https://api.example.com/service/{tenant_name}/firewall_rule/{rule_name}/forwarding_policy \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"forwarding_policy": "ACCEPT",
"categories": [
"<string>"
],
"add_categories": [
"<string>"
],
"remove_categories": [
"<string>"
],
"allowed_domains": [
"<string>"
],
"add_allowed_domains": [
"<string>"
],
"remove_allowed_domains": [
"<string>"
],
"denied_domains": [
"<string>"
],
"add_denied_domains": [
"<string>"
],
"remove_denied_domains": [
"<string>"
],
"policy_name": "<string>"
}
'