BCE::EIP::Instance
更新时间:2024-11-28
功能说明
创建EIP实例
参数描述
属性名称 | 类型 | 是否必须 | 允许更新 | 描述 |
---|---|---|---|---|
bandwidthInMbps | int | 是 | 是 | 公网带宽,单位为Mbps。 对于预付费以及按使用带宽计费的后付费EIP: - 标准型BGP限制为1~500之间的整数 - 增强型BGP限制为100~5000之间的整数(代表带宽上限) 对于按使用流量计费的后付费EIP: - 标准型BGP限制为1~200之间的整数(代表允许的带宽流量峰值 |
billing | Billing | 是 | 否 | 订单信息 |
name | String | 否 | 否 | 弹性公网实例名称,若不传该参数,服务会自动生成。长度1~65个字节,字母或中文开头,可包含中文字母数字-_/.字符。 |
autoRenewTimeUnit | String | 否 | 否 | 按月自动续费或者按年自动续费。月是"month",年是"year"。 |
autoRenewTime | int | 否 | 否 | 自动续费的时间 按月是1-9 按年是 1-3。 |
tags | List<TagModel> | 否 | 是 | 实例绑定的标签列表 |
示例
JSON
1{
2 "type":"BCE::EIP::Instance",
3 "properties":{
4 "name":"eip-name",
5 "bandwidthInMbps":5,
6 "billing":{
7 "paymentTiming":"Postpaid",
8 "billingMethod":"ByTraffic"
9 },
10 "tags": [
11 {
12 "tagKey": "key",
13 "tagValue": "value"
14 }
15 ],
16 "autoRenewTimeUnit": "month",
17 "autoRenewTime": 1
18 }
19}