获取实例网卡信息
更新时间:2024-07-02
该接口用于获取实例网卡信息,包括主网卡和弹性网卡。
请求结构
Plain Text
1GET /v{version}/eni/{instanceId}?clientToken={clientToken} HTTP/1.1
2Host: bcc.bj.baidubce.com
3Authorization: authorization string
请求头域
除公共头域外,无其它特殊头域。
请求参数
参数名称 | 类型 | 是否必选 | 参数位置 | 描述 |
---|---|---|---|---|
version | String | 是 | URL参数 | API版本号。 |
clientToken | String | 是 | Query参数 | 幂等性Token,是一个长度不超过64位的ASCII字符串,详见 幂等性。 |
instanceId | String | 是 | Query参数 | 网卡挂载的虚机ID |
响应头域
除公共头域外,无其它特殊头域。
响应参数
参数名称 | 类型 | 描述 |
---|---|---|
enis | List<EniInfo> | 网卡信息列表,具体参数参见 EniInfo |
请求示例
Plain Text
1GET http://bcc.bj.baidubce.com/v2/eni/i-ofsX9WtN?clientToken=3A8d84403d-a94b-40ce-9d6a-f6225dd26676
2Host: bcc.bj.baidubce.com
3Authorization: bce-auth-v1/f81d3b34e48048fbb2634dc7882d7e21/2015-08-11T04:17:29Z/3600/host/74c506f68c65e26c633bfa104c863fffac5190fdec1ec24b7c03eb5d67d2e1de
响应示例
Plain Text
1HTTP/1.1 200 OK
2Content-Type: application/json;charset=UTF-8
3Date: Wed, 08 Jul 2015 03:28:11 GMT
4x-bce-request-id: d8752367-38e8-45e4-b4c7-e53be3137ce5
5Server: BWS
6{
7 "enis": [
8 {
9 "eniId": "eni-531s8c7f45rs",
10 "name": "test",
11 "vpcId": "vpc-vv3xw6d9970b",
12 "subnetId": "sbn-2escuever5fi",
13 "zoneName": "cn-bj-a",
14 "description": "",
15 "createdTime": "2022-10-20T06:31:42Z",
16 "macAddress": "fa:f6:00:14:05:1e",
17 "status": "inuse",
18 "securityGroupIds": [
19 "g-6uwn49bxhbvj"
20 ],
21 "privateIpSet": [
22 {
23 "primary": true,
24 "privateIpAddress": "192.168.48.8"
25 }
26 ]
27 },
28 {
29 "eniId": "eni-wwi3mdqp6f5j",
30 "name": "eth0",
31 "vpcId": "vpc-vv3xw6d9970b",
32 "subnetId": "sbn-2escuever5fi",
33 "zoneName": "cn-bj-a",
34 "description": "",
35 "createdTime": "2023-03-21T02:09:03Z",
36 "macAddress": "fa:f6:00:01:83:03",
37 "status": "inuse",
38 "securityGroupIds": [
39 "g-6uwn49bxhbvj"
40 ],
41 "privateIpSet": [
42 {
43 "primary": true,
44 "privateIpAddress": "192.168.48.5"
45 },
46 {
47 "primary": false,
48 "privateIpAddress": "192.168.48.3"
49 }
50 ]
51 }
52 ]
53}