This API is used to update a blacklist or whitelist rule.
PUT /v1/{project_id}/waf/policy/{policy_id}/whiteblackip/{whiteblackip_rule_id}
Parameter |
Mandatory |
Type |
Description |
---|---|---|---|
project_id |
Yes |
String |
Specifies the project ID. |
policy_id |
Yes |
String |
Specifies the policy ID. |
whiteblackip_rule_id |
Yes |
String |
Specifies the ID of a blacklist or whitelist rule. |
Parameter |
Mandatory |
Type |
Description |
---|---|---|---|
addr |
Yes |
String |
Specifies the public IP address or range (IP address and subnet mask). For example, X.X.0.125 or X.X.6.0/24. |
white |
No |
Integer |
Specifies the IP address type.
|
Parameter |
Type |
Description |
---|---|---|
id |
String |
Specifies the ID of a blacklist or whitelist rule. |
policy_id |
String |
Specifies the policy ID. |
addr |
String |
Specifies the public IP address or range (IP address and subnet mask). For example, X.X.0.125 or X.X.6.0/24. |
white |
Integer |
Specifies the IP address type.
If you do not configure the white parameter, the value is Blacklist by default. |
timestamp |
Long |
Specifies the time when a blacklist or whitelist rule is added. |
X.X.0.125 is used as an example.
{ "addr": "X.X.0.125", "white": 1 }
{ "id": "44d887434169475794b2717438f7fa78", "policy_id": "ertr45c0f96784ec8abd8ba61a98064ef", "addr": "X.X.0.125", "white": 1, "timestamp": 1499817600 }
For details about error status codes, see Status Codes.