创建辅助弹性网卡
功能介绍
创建辅助弹性网卡。
URI
POST /v3/{project_id}/vpc/sub-network-interfaces
| 参数 | 是否必选 | 参数类型 | 描述 |
|---|---|---|---|
| project_id | 是 | String | 项目ID。 获取方式请参见获取项目ID。 |
请求参数
| 参数 | 是否必选 | 参数类型 | 描述 |
|---|---|---|---|
| dry_run | 否 | Boolean |
|
| sub_network_interface | 是 | 创建辅助弹性网卡请求体对象。 |
| 参数 | 是否必选 | 参数类型 | 描述 |
|---|---|---|---|
| virsubnet_id | 是 | String |
|
| vlan_id | 否 | String |
|
| parent_id | 是 | String |
|
| description | 否 | String |
|
| ipv6_enable | 否 | Boolean |
|
| private_ip_address | 否 | String |
|
| ipv6_ip_address | 否 | String |
|
| security_groups | 否 | Array of strings |
|
| project_id | 否 | String |
|
| allowed_address_pairs | 否 | Array of AllowAddressPair objects |
|
响应参数
状态码:201
| 参数 | 参数类型 | 描述 |
|---|---|---|
| request_id | String | 请求ID。 |
| sub_network_interface | SubNetworkInterface object | 辅助弹性网卡的响应体。 |
| 参数 | 参数类型 | 描述 |
|---|---|---|
| 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 |
|
请求示例
创建辅助弹性网卡,虚拟子网id为08278e6c-61ca-46c1-9fc3-0d4f6c12f193,宿主网络接口id为637748df-2986-4350-8303-95d259580fb3,关联安全组6727c950-9f01-47a2-a7aa-7d3686c4c95b。
POST https://{Endpoint}/v3/8c6fb137a48a428aaf9a0229dca4edb3/vpc/sub-network-interfaces
{
"sub_network_interface" : {
"virsubnet_id" : "08278e6c-61ca-46c1-9fc3-0d4f6c12f193",
"parent_id" : "637748df-2986-4350-8303-95d259580fb3",
"security_groups" : [ "6727c950-9f01-47a2-a7aa-7d3686c4c95b" ]
}
} 响应示例
状态码:201
POST操作正常返回,更多状态码请参见状态码。
{
"sub_network_interface" : {
"id" : "2be868f2-f7c9-48db-abc0-eea0b9105b0d",
"project_id" : "8c6fb137a48a428aaf9a0229dca4edb3",
"virsubnet_id" : "08278e6c-61ca-46c1-9fc3-0d4f6c12f193",
"private_ip_address" : "10.0.0.225",
"mac_address" : "fa:16:3e:48:f8:6f",
"parent_device_id" : "1ab01f1d-4ef7-4d83-82be-802b3aca0223",
"security_groups" : [ "6727c950-9f01-47a2-a7aa-7d3686c4c95b" ],
"allowed_address_pairs" : [ ],
"vpc_id" : "63b97e6b-3598-430f-9eb8-1caf06937be8",
"parent_id" : "637748df-2986-4350-8303-95d259580fb3",
"vlan_id" : 2787,
"instance_type" : "",
"instance_id" : "",
"tags" : [ ],
"created_at" : "2020-05-19T01:16:25.000+00:00"
},
"request_id" : "ceb6273e-1ec9-4168-ac11-3dfeaacfc889"
} 状态码
| 状态码 | 描述 |
|---|---|
| 201 | POST操作正常返回,更多状态码请参见状态码。 |
错误码
请参见错误码。