curl --request PUT \
--url https://console.gmicloud.ai/api/v1/firewalls/{id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"inboundRules": [
{
"portRange": {
"max": 32768,
"min": 32768
},
"protocol": "tcp",
"remoteIpPrefix": "237.84.2.178/24",
"description": "<string>"
}
],
"name": "<string>",
"description": "<string>"
}
'