批量创建辅助弹性网卡
功能介绍
批量创建辅助弹性网卡。
调试
您可以在API Explorer中调试该接口,支持自动认证鉴权。
URI
POST /v3/{project_id}/vpc/sub-network-interfaces/batch-create
参数 |
是否必选 |
参数类型 |
描述 |
---|---|---|---|
project_id |
是 |
String |
项目ID。 获取方式请参见获取项目ID。 |
请求参数
参数 |
是否必选 |
参数类型 |
描述 |
---|---|---|---|
dry_run |
否 |
Boolean |
|
sub_network_interface |
是 |
创建辅助弹性网卡的请求体。 |
|
count |
是 |
Integer |
批量创建辅助弹性网卡的个数。 最小值:1 最大值:10 |
参数 |
是否必选 |
参数类型 |
描述 |
---|---|---|---|
virsubnet_id |
是 |
String |
|
parent_id |
是 |
String |
|
security_groups |
否 |
Array of strings |
|
description |
否 |
String |
|
ipv6_enable |
否 |
Boolean |
|
project_id |
否 |
String |
|
allowed_address_pairs |
否 |
Array of AllowAddressPair objects |
|
响应参数
状态码:201
参数 |
参数类型 |
描述 |
---|---|---|
request_id |
String |
请求ID。 |
sub_network_interfaces |
Array of SubNetworkInterface objects |
批量创建辅助弹性网卡的响应体。 |
参数 |
参数类型 |
描述 |
---|---|---|
id |
String |
|
virsubnet_id |
String |
|
private_ip_address |
String |
|
ipv6_ip_address |
String |
|
mac_address |
String |
|
parent_device_id |
String |
|
parent_id |
String |
|
description |
String |
|
vpc_id |
String |
|
vlan_id |
Integer |
|
security_groups |
Array of strings |
|
tags |
Array of ResourceTag objects |
|
project_id |
String |
|
created_at |
String |
|
allowed_address_pairs |
Array of AllowAddressPair objects |
|
state |
String |
|
instance_id |
String |
|
instance_type |
String |
|
scope |
String |
|
security_enabled |
Boolean |
|
请求示例
批量创建3个辅助弹性网卡,虚拟子网id为115b5a84-31dc-4b1e-8de9-bf5a75d2c566,宿主网络接口id为8b6c46f1-c68d-4bba-a922-2d97da185af5,关联安全组6727c950-9f01-47a2-a7aa-7d3686c4c95b。
POST https://{Endpoint}/v3/8c6fb137a48a428aaf9a0229dca4edb3/vpc/sub-network-interfaces/batch-create
{
"sub_network_interface" : {
"virsubnet_id" : "115b5a84-31dc-4b1e-8de9-bf5a75d2c566",
"security_groups" : [ "6727c950-9f01-47a2-a7aa-7d3686c4c95b" ],
"parent_id" : "8b6c46f1-c68d-4bba-a922-2d97da185af5"
},
"count" : 3
}
响应示例
状态码:201
POST操作正常返回,更多状态码请参见状态码。
{
"sub_network_interfaces" : [ {
"id" : "4c2b455a-4c75-4c4d-bada-727be4d0f7b5",
"project_id" : "6b32266bded64091a138e9ec19cff361",
"virsubnet_id" : "3c15c3b0-0df4-4115-9c18-e67a8a0d7702",
"private_ip_address" : "192.168.0.160",
"ipv6_ip_address" : null,
"mac_address" : "fa:16:3e:26:7e:1e",
"parent_device_id" : "285b2e45-2968-4f4c-8992-54e0d4c8da1d",
"security_enabled" : false,
"security_groups" : [ ],
"allowed_address_pairs" : [ ],
"vpc_id" : "c10e1e02-9db2-4bd0-89ef-52536952627e",
"instance_id" : "",
"instance_type" : "",
"description" : "",
"parent_id" : "00336617-4552-48c5-9856-f539f4e9aca2",
"vlan_id" : 3413,
"state" : null,
"tags" : [ ],
"scope" : "center",
"created_at" : "2025-02-10T08:21:16Z"
}, {
"id" : "a9ecbff0-d24f-493d-b62c-ee9b916db23a",
"project_id" : "6b32266bded64091a138e9ec19cff361",
"virsubnet_id" : "3c15c3b0-0df4-4115-9c18-e67a8a0d7702",
"private_ip_address" : "192.168.0.20",
"ipv6_ip_address" : null,
"mac_address" : "fa:16:3e:26:7e:92",
"parent_device_id" : "285b2e45-2968-4f4c-8992-54e0d4c8da1d",
"security_enabled" : false,
"security_groups" : [ ],
"allowed_address_pairs" : [ ],
"vpc_id" : "c10e1e02-9db2-4bd0-89ef-52536952627e",
"instance_id" : "",
"instance_type" : "",
"description" : "",
"parent_id" : "00336617-4552-48c5-9856-f539f4e9aca2",
"vlan_id" : 595,
"state" : null,
"tags" : [ ],
"scope" : "center",
"created_at" : "2025-02-10T08:21:16Z"
} ],
"request_id" : "3f8a9620bea08c3e6ce0d4004d71f0c8"
}
状态码
状态码 |
描述 |
---|---|
201 |
POST操作正常返回,更多状态码请参见状态码。 |
错误码
请参见错误码。