AttachFirewallRuleSetToL3
API Request
URLs
POST zstack/v1/vpcfirewalls/ruleSets/{ruleSetUuid}/l3networks/{l3Uuid}
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.
{
"params": {
"vpcFirewallUuid": "d5a0a7ce8bdf315a87189bb3f1c12f98",
"forward": "in"
},
"systemTags": [],
"userTags": []
}

Curl
Sample
curl -H "Content-Type: application/json;charset=UTF-8" \
-H "Authorization: OAuth b86c9016b4f24953a9edefb53ca0678c" \
-X POST -d '{"params":{"vpcFirewallUuid":"d5a0a7ce8bdf315a87189bb3f1c12f98","forward":"in"}}' http://localhost:8080/zstack/v1/vpcfirewalls/ruleSets/c9ada0bdf0ec3b0a87e534030e4d9b8c/l3networks/b552d497789f3609a764e03fbdf535ad
Request Parameters
Name | Type | Location | Description | Optional Value | Starting Version |
---|---|---|---|---|---|
vpcFirewallUuid | String | body (contained in the params structure) | 3.6.0 | ||
l3Uuid | String | url | 3.6.0 | ||
forward | String | body (contained in the params structure) |
|
3.6.0 | |
ruleSetUuid | String | url | 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": {
"id": 1.0,
"ruleSetUuid": "91e9fed42a113c0395a81920c4179a43",
"l3NetworkUuid": "ad2bbeb82973334fa0ab243f52088fea",
"packetsForwardType": "in",
"createDate": "Nov 14, 2017 10:20:57 PM",
"lastOpDate": "Nov 14, 2017 10:20:57 PM"
}
}
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 | VpcFirewallRuleSetL3RefInventory | 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 |
---|---|---|---|
id | long | 3.6.0 | |
ruleSetUuid | String | 3.6.0 | |
l3NetworkUuid | 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
AttachFirewallRuleSetToL3Action action = new AttachFirewallRuleSetToL3Action();
action.vpcFirewallUuid = "d5a0a7ce8bdf315a87189bb3f1c12f98";
action.l3Uuid = "b552d497789f3609a764e03fbdf535ad";
action.forward = "in";
action.ruleSetUuid = "c9ada0bdf0ec3b0a87e534030e4d9b8c";
action.sessionId = "b86c9016b4f24953a9edefb53ca0678c";
AttachFirewallRuleSetToL3Action.Result res = action.call();
Python
SDK
AttachFirewallRuleSetToL3Action action = AttachFirewallRuleSetToL3Action()
action.vpcFirewallUuid = "d5a0a7ce8bdf315a87189bb3f1c12f98"
action.l3Uuid = "b552d497789f3609a764e03fbdf535ad"
action.forward = "in"
action.ruleSetUuid = "c9ada0bdf0ec3b0a87e534030e4d9b8c"
action.sessionId = "b86c9016b4f24953a9edefb53ca0678c"
AttachFirewallRuleSetToL3Action.Result res = action.call()