查询安全组规则
功能介绍
查询单个安全组规则。
URI
GET /v3/{project_id}/vpc/security-group-rules/{security_group_rule_id}
| 参数 | 是否必选 | 参数类型 | 描述 |
|---|---|---|---|
| project_id | 是 | String | 项目ID。 获取方式请参见获取项目ID。 |
| security_group_rule_id | 是 | String | 安全组规则ID。 |
请求参数
无
响应参数
状态码:200
| 参数 | 参数类型 | 描述 |
|---|---|---|
| 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 |
|
请求示例
查询安全组规则详情。
GET https://{Endpoint}/v3/{project_id}/vpc/security-group-rules/01a772b2-463e-47e3-a95d-bac85ee8adc6 响应示例
状态码:200
GET操作正常返回,更多状态码请参见状态码。
-
{ "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" : 333, "action" : "allow", "priority" : 1, "remote_group_id" : null, "remote_address_group_id" : null }, "request_id" : "034c4840bde0b1263a4b2e66fbd74d5f" }
状态码
| 状态码 | 描述 |
|---|---|
| 200 | GET操作正常返回,更多状态码请参见状态码。 |
错误码
请参见错误码。