查询指定的弹性网卡
更新时间:2023-08-05
接口描述
查询指定的弹性网卡。
请求结构
GET /v2/vpc/eni/{eniId} HTTP/1.1
Host: bec.baidubce.com
Authorization: authorization string
请求头域
除公共头域外,无其它特殊头域。
请求参数
参数名称 | 类型 | 是否必需 | 参数位置 | 描述 |
---|---|---|---|---|
eniId | String | 是 | URL参数 | 弹性网卡的ID |
返回头域
除公共头域,无其它特殊头域。
返回参数
参数名称 | 类型 | 描述 |
---|---|---|
result | Eni | 弹性网卡信息 |
请求示例
GET /v2/vpc/eni/eni-w2d4kgc3x0y1 HTTP/1.1
Host: bec.baidubce.com
authorization: bce-auth-v1/c3119080364d11e8912505e5e0ae9978/2018-04-02T08:14:25Z/3600/host;x-bce-account;x-bce-client-ip;x-bce-date;x-bce-request-id;x-bce-security-token/xxx
返回示例
HTTP/1.1 200 OK
x-bce-request-id: 7e789a40-adac-414a-8bd4-916d6be61112
Date: Mon, 02 Apr 2019 08:14:25 GMT
Content-Type: application/json;charset=UTF-8
Server: BWS
{
"createdTime":"2022-08-12 18:53:07.0",
"description":"",
"instanceId":"vm-xxxxx",
"eniId":"eni-9kewqunek5sc",
"privateIpSet":[
{
"primary":true,
"privateIpAddress":"192.168.1.221"
}
],
"macAddress":"fa:16:3e:c0:e4:3d",
"name":"test",
"securityGroupIds":[
"sg-SY5smEG9"
],
"status":"available",
"subnetId":"sbn-053m53r01z3h",
"vpcId":"vpc-7hueyu2089wf",
"subnetId":"cn-hangzhou-cm",
}
Model对象定义
Eni
参数名称 | 类型 | 描述 |
---|---|---|
eniId | String | 弹性网卡的ID |
name | String | 弹性网卡的名称 |
description | String | 弹性网卡的描述 |
regionId | String | 弹性网卡所属的节点 |
instanceId | String | 挂载的云主机ID |
macAddress | String | 网卡的MAC地址 |
vpcId | String | 网卡所属的vpcId |
subnetId | String | 网卡所属的子网ID |
securityGroupIds | List<String> | 网卡关联的安全组ID集合 |
regionId | String | 网卡所属的节点ID |
status | String | 网卡的状态: available:未挂载,inuse:已挂载, attaching:挂载中, detaching:卸载中 |
privateIpSet | List<PrivateIP> | 网卡的IP集合 |
PrivateIP
参数名称 | 类型 | 描述 |
---|---|---|
primary | boolean | 是否是主IP。true为主IP,false为辅助IP |
privateIpAddress | String | 内网IP地址 |