弹性公网IP EIP-示例二:弹性公网IP解绑弹性云服务器:操作步骤

时间:2023-11-01 16:20:29

操作步骤

  1. 查询弹性公网IP详情。
    1. 发送“GET /v1/{project_id}/publicips/{publicip_id}”,project_id为项目ID。
    2. 在Request Header中增加“X-Auth-Token”。
    3. 查看请求响应结果。
      • 请求成功时,响应参数如下:
        {    "publicip": {      "id": "f6318bef-6508-4ea5-a48f-6152b6b1a8fb",      "status": "ACTIVE",      "type": "5_bgp",      "port_id": "a135e9b8-1630-40d2-a6c5-eb534a61efbe",      "public_ip_address": "10.xx.xx.162",      "private_ip_address": "192.168.1.131", "port_id": "a135e9b8-1630-40d2-a6c5-eb534a61efbe",     "tenant_id": "26ae5181a416420998eb2093aaed84d9",      "create_time": "2019-03-27 01:33:18",      "bandwidth_size": 7,      "ip_version": 4    }  }
      • 请求异常时,错误码请参见7.2 错误码
  2. 弹性公网IP解绑云服务器网卡。
    1. 发送“PUT /v1/{project_id}/publicips/{publicip_id}”,project_id为项目ID。
    2. 在Request Header中增加“X-Auth-Token”。
    3. Request Body中传入参数如下:
      {          "publicip": {                  "port_id": ""           } }
    1. 查看请求响应结果。
      • 请求成功时,响应参数如下:
        {    "publicip": {      "id": "f6318bef-6508-4ea5-a48f-6152b6b1a8fb",      "status": "ACTIVE",      "type": "5_bgp",       "public_ip_address": "10.xx.xx.162",      "private_ip_address": "192.168.1.131",      "tenant_id": "26ae5181a416420998eb2093aaed84d9",      "create_time": "2019-03-27 01:33:18",      "bandwidth_size": 7,      "ip_version": 4    }  }
    • 请求异常时,错误码请参见7.2 错误码
support.huaweicloud.com/api-eip/eip_apieg_0003.html