文档中心 > UpdateSecurityGroupRule
UpdateSecurityGroupRule

最近更新时间:2021-12-24

请求方法:PUT

接口描述:使用UpdateSecurityGroupRule修改指定安全组规则。


请求参数

Param

名称

类型

是否必选

描述

Action

String

系统规定参数。Action为必选参数。取值:UpdateSecurityGroupRule

RegionId

String

地域ID。 HB1-BJMY (华北2-北京2) ; HD1-SHMY(华东1-上海)

Body

名称

类型

是否必选

描述

Direction

String

规则方向,取值为:ingress 或 egress

EtherType

String

以太网类型, 默认:IPv4

Id

String

安全组规则ID

IsDeny

String

授权策略,0:允许;1:拒绝

Priority

String

优先级。

RemoteIpPrefix

String

对端地址。

SecurityGroupId

String

安全组ID。

PortRangeMax

Integer

端口范围最大值,端口应在1-65535之间。

PortRangeMin

Integer

端口范围最晓值,端口应在1-65535之间。


返回参数

名称

类型

描述

RequestId

String

请求ID。

Code

String

操作结果编码。

Msg

String

操作结果描述。


示例

请求示例

PUT https://api.unicloud.com/networks/securitygroup?Action=UpdateSecurityGroupRule
&RegionId=HB1-BJMY
&<公共请求参数>

body
{
 "Direction": "egress",
 "EtherType": "IPv4",
 "Id": "1647fd756b784d18b05d0dad0ce63dd0",
 "IsDeny": "1",
 "PortRangeMax": "28",
 "PortRangeMin": "22",
 "Priority": "99",
 "Protocol": "udp",
 "RemoteIpPrefix": "0.0.0.0/0",
 "SecurityGroupId": "sg-d75ti277372ob"
}

返回示例

JSON格式

{

    "Code": "Network.Success",

    "Msg": "操作成功",

    "RequestId": "b380c623-8a46-4bb5-b9aa-b831e72c4ddc"

}