Update Firewall Rules

Update Firewall Rules

Updates all the firewall rules for a given Provider Gateway. If a rule with the ruleId is not already present, a new rule will be created. If it already exists, the rule will be updated. Any existing rule that is not specified in the update payload will be deleted. The order of rules in payload will define the actual order in which this rules will be applied.

Request
URI
PUT
https://{api_host}/cloudapi/1.0.0/externalNetworks/{externalNetworkId}/providerGatewayServices/firewall/rules
COPY
Path Parameters
string
externalNetworkId
Required

externalNetworkId


Request Body
GatewayFirewallRules of type(s) application/json
Optional
{
    "status": "string",
    "systemRules": [
        {
            "id": "string",
            "name": "string",
            "description": "string",
            "sourceFirewallGroups": [
                {
                    "name": "string",
                    "id": "string"
                }
            ],
            "sourceFirewallIpAddresses": [
                "string"
            ],
            "destinationFirewallGroups": [
                {
                    "name": "string",
                    "id": "string"
                }
            ],
            "destinationFirewallIpAddresses": [
                "string"
            ],
            "applicationPortProfiles": [
                {
                    "name": "string",
                    "id": "string"
                }
            ],
            "rawPortProtocols": [
                {
                    "layer4Item": {
                        "protocol": "string",
                        "sourcePorts": [
                            "8080",
                            "8090-8095"
                        ],
                        "destinationPorts": [
                            "20",
                            "21",
                            "139-445"
                        ]
                    }
                }
            ],
            "ipProtocol": "string",
            "actionValue": "string",
            "direction": "string",
            "logging": false,
            "networkContextProfiles": [
                {
                    "name": "string",
                    "id": "string"
                }
            ],
            "active": false,
            "version": {
                "version": 0
            },
            "comments": "string",
            "appliedTo": {
                "name": "string",
                "id": "string"
            },
            "loggingId": "string",
            "relativePosition": {
                "adjacentRuleId": "string",
                "rulePosition": "string"
            }
        }
    ],
    "userDefinedRules": [
        {
            "id": "string",
            "name": "string",
            "description": "string",
            "sourceFirewallGroups": [
                {
                    "name": "string",
                    "id": "string"
                }
            ],
            "sourceFirewallIpAddresses": [
                "string"
            ],
            "destinationFirewallGroups": [
                {
                    "name": "string",
                    "id": "string"
                }
            ],
            "destinationFirewallIpAddresses": [
                "string"
            ],
            "applicationPortProfiles": [
                {
                    "name": "string",
                    "id": "string"
                }
            ],
            "rawPortProtocols": [
                {
                    "layer4Item": {
                        "protocol": "string",
                        "sourcePorts": [
                            "8080",
                            "8090-8095"
                        ],
                        "destinationPorts": [
                            "20",
                            "21",
                            "139-445"
                        ]
                    }
                }
            ],
            "ipProtocol": "string",
            "actionValue": "string",
            "direction": "string",
            "logging": false,
            "networkContextProfiles": [
                {
                    "name": "string",
                    "id": "string"
                }
            ],
            "active": false,
            "version": {
                "version": 0
            },
            "comments": "string",
            "appliedTo": {
                "name": "string",
                "id": "string"
            },
            "loggingId": "string",
            "relativePosition": {
                "adjacentRuleId": "string",
                "rulePosition": "string"
            }
        }
    ],
    "defaultRules": [
        {
            "id": "string",
            "name": "string",
            "description": "string",
            "sourceFirewallGroups": [
                {
                    "name": "string",
                    "id": "string"
                }
            ],
            "sourceFirewallIpAddresses": [
                "string"
            ],
            "destinationFirewallGroups": [
                {
                    "name": "string",
                    "id": "string"
                }
            ],
            "destinationFirewallIpAddresses": [
                "string"
            ],
            "applicationPortProfiles": [
                {
                    "name": "string",
                    "id": "string"
                }
            ],
            "rawPortProtocols": [
                {
                    "layer4Item": {
                        "protocol": "string",
                        "sourcePorts": [
                            "8080",
                            "8090-8095"
                        ],
                        "destinationPorts": [
                            "20",
                            "21",
                            "139-445"
                        ]
                    }
                }
            ],
            "ipProtocol": "string",
            "actionValue": "string",
            "direction": "string",
            "logging": false,
            "networkContextProfiles": [
                {
                    "name": "string",
                    "id": "string"
                }
            ],
            "active": false,
            "version": {
                "version": 0
            },
            "comments": "string",
            "appliedTo": {
                "name": "string",
                "id": "string"
            },
            "loggingId": "string",
            "relativePosition": {
                "adjacentRuleId": "string",
                "rulePosition": "string"
            }
        }
    ]
}
Authentication
This operation uses the following authentication methods.
Responses
202

The request have been accepted and the task to monitor the request is in the Location header.

Operation doesn't return any data structure

Code Samples
COPY
                    curl -X PUT -H 'Authorization: <value>' -H 'Content-Type: application/json' -d '{}' https://{api_host}/cloudapi/1.0.0/externalNetworks/{externalNetworkId}/providerGatewayServices/firewall/rules