RefreshFirewall
API Request
URLs
PUT zstack/v1/vpcfirewalls/refresh/{uuid}/actions
Headers
Authorization: OAuth the-session-uuid
Body
Note: In
the preceding sample, both systemTags and userTags are optional.
These two fields can be included in the body structure.
{
"refreshFirewall": {},
"systemTags": [],
"userTags": []
}

Curl
Sample
curl -H "Content-Type: application/json;charset=UTF-8" \
-H "Authorization: OAuth b86c9016b4f24953a9edefb53ca0678c" \
-X PUT -d '{"refreshFirewall":{}}' http://localhost:8080/zstack/v1/vpcfirewalls/refresh/f461b936af043aa89aa2bdeb221085e7/actions
Request Parameters
Name | Type | Location | Description | Optional Value | Starting Version |
---|---|---|---|---|---|
uuid | String | url | The resource UUID. | 3.6.0 | |
systemTags | List | body | Optional. The system tags. | 3.6.0 | |
userTags | List | body | Optional. The user tags. | 3.6.0 |
API Response
Sample
Response
{
"inventory": {
"name": "name",
"refs": [
{
"id": 1.0,
"ruleSetUuid": "05cc1e225ef83107b6075d758c8dcee2",
"l3NetworkUuid": "178e23cc9fdc3673b90ee258fe60395f",
"packetsForwardType": "in",
"createDate": "Nov 14, 2017 10:20:57 PM",
"lastOpDate": "Nov 14, 2017 10:20:57 PM"
}
],
"description": "example-des"
}
}
Name | Type | Description | Starting Version |
---|---|---|---|
error | ErrorCode | The error code. If not null, the operation fails, or vice versa. For more information, see error. | 3.6.0 |
inventory | VpcFirewallInventory | See inventory. | 3.6.0 |
#error
Name | Type | Description | Starting Version |
---|---|---|---|
code | String | The error code, which is a numbered or alphanumeric code that specifies an error. For example, SYS.1000, HOST.1001. | 3.6.0 |
description | String | The brief description of the error. | 3.6.0 |
details | String | The details about the error. | 3.6.0 |
elaboration | String | The reserved field. Default value: null. | 3.6.0 |
opaque | LinkedHashMap | The reserved field. Default value: null. | 3.6.0 |
cause | ErrorCode | The root error, which is the associated root cause of the current error. If no root error exists, this parameter is null. | 3.6.0 |
#inventory
Name | Type | Description | Starting Version |
---|---|---|---|
uuid | String | The resource UUID. | 3.6.0 |
name | String | The resource name. | 3.6.0 |
createDate | Timestamp | The creation date. | 3.6.0 |
lastOpDate | Timestamp | The last operation date. | 3.6.0 |
description | String | The detailed description of the resource. | 3.6.0 |
refs | List | See refs. | 3.6.0 |
#refs
Name | Type | Description | Starting Version |
---|---|---|---|
id | long | 3.6.0 | |
ruleSetUuid | String | 3.6.0 | |
l3Uuid | String | 3.6.0 | |
createDate | Timestamp | The creation date. | 3.6.0 |
lastOpDate | Timestamp | The last operation date. | 3.6.0 |
packetsForwardType | PacketsForwardType | See packetsForwardType. | 3.6.0 |
#packetsForwardType
Name | Type | Description | Starting Version |
---|---|---|---|
in | PacketsForwardType | 3.6.0 | |
out | PacketsForwardType | 3.6.0 | |
local | PacketsForwardType | 3.6.0 |
SDK Sample
Java
SDK
RefreshFirewallAction action = new RefreshFirewallAction();
action.uuid = "f461b936af043aa89aa2bdeb221085e7";
action.sessionId = "b86c9016b4f24953a9edefb53ca0678c";
RefreshFirewallAction.Result res = action.call();
Python
SDK
RefreshFirewallAction action = RefreshFirewallAction()
action.uuid = "f461b936af043aa89aa2bdeb221085e7"
action.sessionId = "b86c9016b4f24953a9edefb53ca0678c"
RefreshFirewallAction.Result res = action.call()