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> | 否 | 是 | 实例绑定的标签列表 |
示例
{
"type":"BCE::EIP::Instance",
"properties":{
"name":"eip-name",
"bandwidthInMbps":5,
"billing":{
"paymentTiming":"Postpaid",
"billingMethod":"ByTraffic"
},
"tags": [
{
"tagKey": "key",
"tagValue": "value"
}
],
"autoRenewTimeUnit": "month",
"autoRenewTime": 1
}
}