更新时间:2022-01-25 GMT+08:00
查询安全组规则
功能介绍
查询单个安全组规则。
URI
GET /v1/{project_id}/security-group-rules/{security_group_rule_id}
请求消息
响应消息
- 响应参数
表2 响应参数 名称
参数类型
说明
security_group_rule
Object
安全组规则对象,请参见表3。
表3 security_group_rule对象 名称
参数类型
说明
id
String
安全组规则标识
description
String
- 功能说明:安全组规则描述
- 取值范围:0-255个字符,支持数字、字母、中文字符
security_group_id
String
安全组标识
direction
String
- 功能说明:出入控制方向
- 取值范围:
- egress:出方向
- ingress:入方向
ethertype
String
- 功能说明:IP协议类型
- 取值范围:IPv4,IPv6
protocol
String
- 功能说明:协议类型
- 取值范围:icmp、tcp、udp等
- 约束:为空表示支持所有协议
port_range_min
Integer
- 功能说明:起始端口值
- 取值范围:1~65535
- 约束:不能大于port_range_max的值,为空表示所有端口,如果协议是icmp类型,取值范围请参见安全组规则icmp协议名称对应关系表。
port_range_max
Integer
- 功能说明:结束端口值
- 取值范围:1~65535
- 约束:协议不为icmp时,取值不能小于port_range_min的值,为空表示所有端口,如果协议是icmp类型,取值范围请参见安全组规则icmp协议名称对应关系表。
remote_ip_prefix
String
- 功能说明:远端IP地址,当direction是egress时为虚拟机访问端的地址,当direction是ingress时为访问虚拟机的地址
- 取值范围:IP地址,或者cidr格式
- 约束:和remote_group_id互斥
remote_group_id
String
- 功能说明:对端安全组id
- 约束:和remote_ip_prefix互斥
tenant_id
String
- 功能说明:安全组规则所属项目ID
- 响应样例
{ "security_group_rule": { "direction": "ingress", "ethertype": "IPv4", "id": "2bc0accf-312e-429a-956e-e4407625eb62", "description":"", "port_range_max": 80, "port_range_min": 80, "protocol": "tcp", "remote_group_id": "85cc3048-abc3-43cc-89b3-377341426ac5", "remote_ip_prefix": null, "security_group_id": "a7734e61-b545-452d-a3cd-0189cbd9747a", "tenant_id": "e4f50856753b4dc6afee5fa6b9b6c550" } }
状态码
请参见状态码。
错误码
请参考错误码。
父主题: 安全组