Creating a Security Group Rule¶
Function¶
This API is used to create a security group rule.
URI¶
POST /v3/{project_id}/vpc/security-group-rules
Parameter | Mandatory | Type | Description |
---|---|---|---|
project_id | Yes | String | Project ID. |
Request Parameters¶
Parameter | Mandatory | Type | Description |
---|---|---|---|
dry_run | No | Boolean |
|
security_group_rule | Yes | Request body for creating a security group rule. |
Parameter | Mandatory | Type | Description |
---|---|---|---|
security_group_id | Yes | String |
|
description | No | String |
|
direction | Yes | String |
|
ethertype | No | String |
|
protocol | No | String |
|
multiport | No | String |
|
remote_ip_prefix | No | String |
|
remote_group_id | No | String |
|
action | No | String |
|
priority | No | String |
|
Response Parameters¶
Status code: 201
Parameter | Type | Description |
---|---|---|
request_id | String | Request ID. |
security_group_rule | SecurityGroupRule object | Response body for creating a security group rule. |
Parameter | Type | Description |
---|---|---|
id | String |
|
description | String |
|
security_group_id | String |
|
direction | String |
|
protocol | String |
|
ethertype | String |
|
multiport | String |
|
action | String |
|
priority | Integer |
|
remote_group_id | String |
|
remote_ip_prefix | String |
|
remote_address_group_id | String |
|
created_at | String |
|
updated_at | String |
|
project_id | String |
|
Example Requests¶
Create an inbound rule in the security group whose ID is 1c8d9f94-6022-4518-bb98-e0145fcc7b33.
POST https://{Endpoint}/v3/{project_id}/vpc/security-group-rules
{
"security_group_rule" : {
"security_group_id" : "1c8d9f94-6022-4518-bb98-e0145fcc7b33",
"direction" : "ingress",
"protocol" : "tcp",
"description" : "security group rule description",
"action" : "allow",
"priority" : 1,
"multiport" : "33",
"remote_ip_prefix" : "10.10.0.0/16"
}
}
Example Responses¶
Status code: 201
Normal response to the POST operation. For more status codes, see Status Codes.
{ "request_id" : "1666b2708aaf849337572d6846dce781", "security_group_rule" : { "id" : "f626eb24-d8bd-4d26-ae0b-c16bb65730cb", "project_id" : "060576782980d5762f9ec014dd2f1148", "security_group_id" : "0552091e-b83a-49dd-88a7-4a5c86fd9ec3", "direction" : "ingress", "protocol" : "tcp", "description" : "security group rule description", "created_at" : "2020-08-13T07:12:36.000+00:00", "updated_at" : "2020-08-13T07:12:36.000+00:00", "ethertype" : "IPv4", "remote_ip_prefix" : "10.10.0.0/16", "multiport" : 33, "action" : "allow", "priority" : 1, "remote_group_id" : null, "remote_address_group_id" : null } }
Status Codes¶
Status Code | Description |
---|---|
201 | Normal response to the POST operation. For more status codes, see Status Codes. |
Error Codes¶
See Error Codes.