curl --request POST \
--url https://api.example.com/service/{tenant_name}/nat_rule \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"name": "<string>",
"outside": "<string>",
"rule_type": "SOURCE_ONE_TO_ONE",
"inside_type": "segment",
"inside": "<string>",
"inside_port": 123,
"protocol": 123,
"outside_port": 123,
"filters": [],
"description": "<string>"
}
'