弹性负载均衡 ELB-创建公网负载均衡器:购买弹性公网IP

时间:2023-12-14 10:47:16

购买弹性公网IP

接口格式

方法

URI

说明

POST

/v1/{tenant_id}/publicips

申请弹性公网IP

具体步骤

  1. 设置请求消息头。

    在Postman中设置好头部信息,将获取到的Token放入头部,如下图所示。

    图1 设置请求消息头-创建公网负载均衡器

  2. 在Body标签中填写请求消息体。

    图2 填写请求消息体-创建公网负载均衡器

  3. 填写URL。

    https://vpc.cn-east-2.myhuaweicloud.com/v1/0d0bf0e8fb564cc9abbe526dbdca9248/publicips

  4. 发送请求。选择请求方法为POST,点击Send按钮,得到服务端响应

    {
        "publicip": {
            "id": "73c079fc-357a-4d34-8ba1-818a9d9a2aa2",
            "status": "PENDING_CREATE",
            "type": "5_sbgp",
            "public_ip_address": "122.112.235.121",
            "tenant_id": "0d0bf0e8fb564cc9abbe526dbdca9248",
            "create_time": "2018-07-11 02:40:32",
            "bandwidth_size": 0,
            "enterprise_project_id": "0"
        }
    }

    请注意,此时响应体中的tenant_id实为web页面上的项目ID。

示例代码

2中所发送的消息体

{
    "publicip": {
        "type": "5_sbgp"
    },
    "bandwidth": {
        "name": "bandwidth_elb",
        "size": 1,
        "share_type": "PER",
        "charge_mode": "traffic"
    }
}

此处的消息体字段和格式等,具体请参考《虚拟私有云API参考》。

support.huaweicloud.com/api-elb/elb_qs_0005.html