接口功能介绍
创建安全组出向规则。
接口约束
无
URI
POST /v4/vpc/create-security-group-egress
请求参数
请求体body参数
参数 | 参数类型 | 是否必填 | 说明 | 示例 |
---|---|---|---|---|
regionID | String | 是 | 区域id | 79fa97e3-c48b-xxxx-9f46-6a13d8163678 |
securityGroupID | String | 是 | 安全组ID。 | sg-bp67acxxxazb4p |
securityGroupRules | Array of Objects | 是 | 规则信息 | 见下表 |
clientToken | String | 是 | 客户端存根,用于保证订单幂等性, 长度 1 - 64 | 79fa97e3-c48b-xxxx-9f46-6a13d8163678 |
表 securityGroupRules
参数 | 参数类型 | 是否必填 | 说明 | 示例 |
---|---|---|---|---|
direction | String | 是 | 出方向 | egress |
action | String | 是 | 拒绝策略:允许-accept 拒绝-drop | accept |
priority | Integer | 否 | 优先级:1~100,取值越小优先级越大 | 100 |
protocol | String | 是 | 协议: ANY、TCP、UDP、ICMP(v4) | ANY |
ethertype | String | 是 | IP类型:IPv4、IPv6 | IPv4 |
destCidrIp | String | 否 | 远端地址 | 0.0.0.0/0 |
remoteSecurityGroupID | String | 否 | 远端安全组id | sg-rk2ewg7fjn |
prefixListID | String | 否 | 前缀列表 | pl-5i7lt6xsvt |
remoteType | Integer | 否 | 远端类型,0 表示 destCidrIp,1 表示 remoteSecurityGroupID, 2 表示 prefixlistID,默认为 0 | 0 |
description | String | 否 | 支持拉丁字母、中文、数字, 特殊字符:~ !@#$%^&*()_-+= <>?:"{},./;'[]·~ !@#¥%……&*() —— -+={} | 《》?:“”【】、;‘',。、,不能以 http: / https: 开头,长度 0 - 128 |
range | String | 否 | 安全组开放的传输层协议相关的源端端口范围 | 8000-9000 |
参数 | 参数类型 | 说明 | 示例 |
---|---|---|---|
statusCode | Integer | 返回状态码(800为成功,900为失败) | 800 |
message | String | statusCode为900时的错误信息; statusCode为800时为success, 英文 | success |
description | String | statusCode为900时的错误信息; statusCode为800时为成功, 中文 | 成功 |
errorCode | String | statusCode为900时为业务细分错误码,三段式:product.module.code; statusCode为800时为SUCCESS | SUCCESS |
请求示例
请求体body
{
"regionID":"79fa97e3-c48b-xxxx-9f46-6a13d8163678",
"securityGroupID":"default",
"clientToken":"81f7728662ddxxxx800155d307d5b",
"securityGroupRules":[
{
"direction":"egress",
"action":"accept",
"priority":1,
"protocol":"TCP",
"ethertype":"IPv4",
"destCidrIp":"0.0.0.0/0",
"description":"dafgsdfd",
"range":"1-200"
}
]
}
响应示例
{
"statusCode":800,
"description":"成功",
"errorCode":"SUCCESS",
"message":"success"
}
状态码
请参考状态码说明。
错误码
请参考错误码说明。