批量创建安全组规则
功能介绍
在特定安全组下批量创建安全组规则。
调试
您可以在API Explorer中调试该接口,支持自动认证鉴权。
URI
POST /v3/{project_id}/vpc/security-groups/{security_group_id}/security-group-rules/batch-create
参数 |
是否必选 |
参数类型 |
描述 |
---|---|---|---|
project_id |
是 |
String |
项目ID。 获取方式请参见获取项目ID。 |
security_group_id |
是 |
String |
安全组ID。 |
请求参数
参数 |
是否必选 |
参数类型 |
描述 |
---|---|---|---|
security_group_rules |
是 |
Array of BatchCreateSecurityGroupRulesOption objects |
批量创建安全组规则的请求体。 |
ignore_duplicate |
否 |
Boolean |
创建时是否忽略重复的安全组规则。 缺省值:false |
dry_run |
否 |
Boolean |
|
参数 |
是否必选 |
参数类型 |
描述 |
---|---|---|---|
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
参数 |
参数类型 |
描述 |
---|---|---|
security_group_rules |
Array of SecurityGroupRule objects |
批量创建安全组规则的响应体。 |
request_id |
String |
请求ID。 |
参数 |
参数类型 |
描述 |
---|---|---|
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 |
|
请求示例
在安全组15457509-18f9-4387-bae6-d4ed1898b301中创建入方向规则,忽略重复规则,两条规则相同。
POST https://{Endpoint}/v3/{project_id}/vpc/security-groups/15457509-18f9-4387-bae6-d4ed1898b301/security-group-rules/batch-create { "ignore_duplicate" : true, "security_group_rules" : [ { "direction" : "ingress", "description" : "", "protocol" : "tcp", "action" : "allow", "priority" : 1, "ethertype" : "IPv4", "multiport" : "22", "remote_ip_prefix" : "117.78.12.122/32" }, { "direction" : "ingress", "description" : "", "protocol" : "tcp", "action" : "allow", "priority" : 1, "ethertype" : "IPv4", "multiport" : "22", "remote_ip_prefix" : "117.78.12.122/32" } ] }
响应示例
状态码: 201
POST操作正常返回,更多状态码请参见状态码。
-
{ "security_group_rules" : [ { "id" : "abef369b-d646-4b8a-9f44-fcd248a6c421", "project_id" : "5f6387106c2048b589b369d96c2f23a2", "security_group_id" : "15457509-18f9-4387-bae6-d4ed1898b301", "direction" : "ingress", "protocol" : "tcp", "description" : "", "created_at" : "2023-04-28T04:08:52.000+00:00", "updated_at" : "2023-04-28T04:08:52.000+00:00", "ethertype" : "IPv4", "remote_ip_prefix" : "117.78.12.122/32", "multiport" : 22, "action" : "allow", "priority" : 1, "remote_group_id" : null, "remote_address_group_id" : null } ], "request_id" : "f1ae2c6f9e94babf077cd3b3e1570c81" }
状态码
状态码 |
描述 |
---|---|
201 |
POST操作正常返回,更多状态码请参见状态码。 |
错误码
请参见错误码。