创建安全组规则
功能介绍
创建安全组规则。
URI
POST /v3/{project_id}/vpc/security-group-rules
| 参数 | 是否必选 | 参数类型 | 描述 |
|---|---|---|---|
| project_id | 是 | String | 项目ID。 获取方式请参见获取项目ID。 |
请求参数
| 参数 | 是否必选 | 参数类型 | 描述 |
|---|---|---|---|
| dry_run | 否 | Boolean |
|
| security_group_rule | 是 | 创建安全组规则的请求体。 |
| 参数 | 是否必选 | 参数类型 | 描述 |
|---|---|---|---|
| security_group_id | 是 | String |
|
| description | 否 | String |
|
| direction | 是 | String |
|
| ethertype | 否 | String |
|
| protocol | 否 | String |
|
| multiport | 否 | String |
|
| remote_ip_prefix | 否 | String |
|
| remote_group_id | 否 | String |
|
| remote_address_group_id | 否 | String |
|
| action | 否 | String |
|
| priority | 否 | String |
|
响应参数
状态码:201
| 参数 | 参数类型 | 描述 |
|---|---|---|
| request_id | String | 请求ID。 |
| security_group_rule | SecurityGroupRule object | 创建安全组规则的响应体。 |
| 参数 | 参数类型 | 描述 |
|---|---|---|
| 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 |
|
请求示例
创建一条入方向安全组规则,所在安全组id为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"
}
} 响应示例
状态码:201
POST操作正常返回,更多状态码请参见状态码。
-
{ "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 } }
状态码
| 状态码 | 描述 |
|---|---|
| 201 | POST操作正常返回,更多状态码请参见状态码。 |
错误码
请参见错误码。