EipGroup实例
创建共享带宽
- 创建一个共享带宽
- 创建共享带宽需要实名认证,若未通过实名认证可以前往百度开放云官网控制台中的安全认证下的实名认证中进行认证。
函数声明
type CreateEipGroupArgs struct {
Name string `json:"name,omitempty"`
EipCount int `json:"eipCount"`
BandWidthInMbps int `json:"bandwidthInMbps"`
Billing *Billing `json:"billing"`
Tags []model.TagModel `json:"tags"`
RouteType string `json:"routeType,omitempty"`
Idc string `json:"idc,omitempty"`
Continuous bool `json:"continuous,omitempty"`
ClientToken string `json:"-"`
}
type CreateEipGroupResult struct {
Id string `json:"id"`
}
func (c *Client) CreateEipGroup(args *CreateEipGroupArgs) (*CreateEipGroupResult, error)
参数含义
请参考OpenAPI文档:https://cloud.baidu.com/doc/EIP/s/ijwvz2zq8
返回值
操作成功:
{
"id":"eg-xxxxxxxx"
}
操作失败:
抛出异常,异常列表参考:https://cloud.baidu.com/doc/EIP/s/nkcu555a4
代码示例
具体代码示例参考:example_eipgroup_create_eipgroup.go
共享带宽的带宽扩容
- 指定共享带宽的带宽扩容
函数声明
type ResizeEipGroupArgs struct {
BandWidthInMbps int `json:"bandwidthInMbps"`
ClientToken string `json:"-"`
}
func (c *Client) ResizeEipGroupBandWidth(id string, args *ResizeEipGroupArgs) error
参数含义
请参考OpenAPI文档:https://cloud.baidu.com/doc/EIP/s/Wjwvz2zeb
返回值
操作成功:
无特殊返回参数
操作失败:
抛出异常,异常列表参考:https://cloud.baidu.com/doc/EIP/s/nkcu555a4
代码示例
具体代码示例参考:example_eipgroup_resize_eipgroup_bandwidth.go
共享带宽IP数量升级
- 用于指定共享带宽IP数量升级
函数声明
type GroupAddEipCountArgs struct {
EipAddCount int `json:"eipAddCount"`
ClientToken string `json:"-"`
}
func (c *Client) EipGroupAddEipCount(id string, args *GroupAddEipCountArgs) error
参数含义
请参考OpenAPI文档:https://cloud.baidu.com/doc/EIP/s/qjwvz2yol
返回值
操作成功:
无特殊返回参数
操作失败:
抛出异常,异常列表参考:https://cloud.baidu.com/doc/EIP/s/nkcu555a4
代码示例
具体代码示例参考:example_eipgroup_add_eip_count.go
共享带宽更新
- 共享带宽更新,目前支持更新共享带宽的名称
函数声明
type RenameEipGroupArgs struct {
Name string `json:"name"`
ClientToken string `json:"-"`
}
func (c *Client) RenameEipGroup(id string, args *RenameEipGroupArgs) error
参数含义
请参考OpenAPI文档:https://cloud.baidu.com/doc/EIP/s/Sjwvz2xo5
返回值
操作成功:
无特殊返回参数
操作失败:
抛出异常,异常列表参考:https://cloud.baidu.com/doc/EIP/s/nkcu555a4
代码示例
具体代码示例参考:example_eipgroup_rename_eipgroup.go
查询共享带宽列表
- 可根据多重条件查询共享带宽列表
- 若不提供查询条件,则默认查询覆盖所有EIP
- 返回结果为多重条件交集的查询结果,即提供多重条件的情况下,返回同时满足所有条件的共享带宽
- 以上查询结果支持marker分页,分页大小默认为1000,可通过maxKeys参数指定
函数声明
type ListEipGroupArgs struct {
Id string
Name string
Marker string
MaxKeys int
Status string
}
type ListEipGroupResult struct {
Marker string `json:"marker"`
MaxKeys int `json:"maxKeys"`
NextMarker string `json:"nextMarker"`
IsTruncated bool `json:"isTruncated"`
EipGroup []EipGroupModel `json:"eipgroups"`
}
type EipGroupModel struct {
Name string `json:"name"`
Status string `json:"status"`
Id string `json:"id"`
BandWidthInMbps int `json:"bandwidthInMbps"`
DefaultDomesticBandwidth int `json:"defaultDomesticBandwidth"`
BwShortId string `json:"bwShortId"`
BwBandwidthInMbps int `json:"bwBandwidthInMbps"`
DomesticBwShortId string `json:"domesticBwShortId"`
DomesticBwBandwidthInMbps int `json:"domesticBwBandwidthInMbps"`
PaymentTiming string `json:"paymentTiming"`
BillingMethod string `json:"billingMethod"`
CreateTime string `json:"createTime"`
ExpireTime string `json:"expireTime"`
Region string `json:"region"`
RouteType string `json:"routeType"`
Eips []EipModel `json:"eips"`
}
func (c *Client) ListEipGroup(args *ListEipGroupArgs) (*ListEipGroupResult, error)
参数含义
请参考OpenAPI文档:https://cloud.baidu.com/doc/EIP/s/Ujwvz2yd6
返回值
操作成功:
{
"marker": "eg-xxxxxxxx",
"maxKeys": 1000,
"nextMarker": "",
"isTruncated": false,
"eipgroups": [
{
"name": "test-sdk-eipgroup",
"status": "available",
"id": "eg-xxxxxxxx",
"bandwidthInMbps": 100,
"defaultDomesticBandwidth": 0,
"bwShortId": "",
"bwBandwidthInMbps": 0,
"domesticBwShortId": "",
"domesticBwBandwidthInMbps": 0,
"paymentTiming": "Postpaid",
"billingMethod": "ByBandwidth",
"createTime": "2023-11-23T07:25:34Z",
"expireTime": "",
"region": "bj",
"routeType": "BGP",
"eips": [
{
"name": "xxxxx",
"eip": "x.x.x.x",
"eipId": "ip-xxxxxxxx",
"status": "available",
"eipInstanceType": "shared",
"instanceType": "",
"instanceId": "",
"shareGroupId": "eg-xxxxxxxx",
"clusterId": "",
"bandwidthInMbps": 100,
"paymentTiming": "",
"billingMethod": "",
"createTime": "2023-11-23T07:25:34Z",
"expireTime": "",
"tags": null
},
...
]
},
...
]
}
操作失败:
抛出异常,异常列表参考:https://cloud.baidu.com/doc/EIP/s/nkcu555a4
代码示例
具体代码示例参考:example_eipgroup_list_eipgroup.go
查询共享带宽详情
- 查询特定共享带宽详情
函数声明
type EipGroupModel struct {
Name string `json:"name"`
Status string `json:"status"`
Id string `json:"id"`
BandWidthInMbps int `json:"bandwidthInMbps"`
DefaultDomesticBandwidth int `json:"defaultDomesticBandwidth"`
BwShortId string `json:"bwShortId"`
BwBandwidthInMbps int `json:"bwBandwidthInMbps"`
DomesticBwShortId string `json:"domesticBwShortId"`
DomesticBwBandwidthInMbps int `json:"domesticBwBandwidthInMbps"`
PaymentTiming string `json:"paymentTiming"`
BillingMethod string `json:"billingMethod"`
CreateTime string `json:"createTime"`
ExpireTime string `json:"expireTime"`
Region string `json:"region"`
RouteType string `json:"routeType"`
Eips []EipModel `json:"eips"`
}
func (c *Client) EipGroupDetail(id string) (*EipGroupModel, error)
参数含义
请参考OpenAPI文档:https://cloud.baidu.com/doc/EIP/s/Zjwvz2xzs
返回值
操作成功:
{
"name": "test-sdk-eipgroup",
"status": "available",
"id": "eg-xxxxxxxx",
"bandwidthInMbps": 100,
"defaultDomesticBandwidth": 0,
"bwShortId": "",
"bwBandwidthInMbps": 0,
"domesticBwShortId": "",
"domesticBwBandwidthInMbps": 0,
"paymentTiming": "Postpaid",
"billingMethod": "ByBandwidth",
"createTime": "2023-11-23T07:25:34Z",
"expireTime": "",
"region": "bj",
"routeType": "BGP",
"eips": [
{
"name": "xxxxx",
"eip": "x.x.x.x",
"eipId": "ip-xxxxxxxx",
"status": "available",
"eipInstanceType": "shared",
"instanceType": "",
"instanceId": "",
"shareGroupId": "eg-xxxxxxxx",
"clusterId": "",
"bandwidthInMbps": 100,
"paymentTiming": "",
"billingMethod": "",
"createTime": "2023-11-23T07:25:34Z",
"expireTime": "",
"tags": null
},
...
]
}
操作失败:
抛出异常,异常列表参考:https://cloud.baidu.com/doc/EIP/s/nkcu555a4
代码示例
具体代码示例参考:example_eipgroup_detail.go
共享带宽续费
- 针对指定共享带宽的续费操作,延长过期时长
- 共享带宽扩缩容期间不能进行续费操作
函数声明
type EipGroupPurchaseReservedArgs struct {
Billing *Billing `json:"billing"`
ClientToken string `json:"-"`
}
func (c *Client) EipGroupPurchaseReserved(id string, args *EipGroupPurchaseReservedArgs) error
参数含义
请参考OpenAPI文档:https://cloud.baidu.com/doc/EIP/s/ljwvz2z0r
返回值
操作成功:
无特殊返回参数
操作失败:
抛出异常,异常列表参考:https://cloud.baidu.com/doc/EIP/s/nkcu555a4
代码示例
具体代码示例参考:example_eipgroup_purchase_reserved.go
共享带宽释放
- 释放指定共享带宽
- 仅支持后付费计费方式
函数声明
func (c *Client) DeleteRecycleEip(eip string, clientToken string) error
参数含义
请参考OpenAPI文档:https://cloud.baidu.com/doc/EIP/s/ukghouoci
返回值
操作成功:
无特殊返回参数
操作失败:
抛出异常,异常列表参考:https://cloud.baidu.com/doc/EIP/s/nkcu555a4
代码示例
具体代码示例参考:example_eipgroup_delete_eipgroup.go
共享带宽移入EIP
- 只能移入后付费EIP
- 移入的EIP需要和共享带宽线路类型相同
- 移入的EIP不可以绑定带宽包或跨境加速包
- 移入后的共享带宽ip数量需要满足共享带宽的配额要求
函数声明
type EipGroupMoveInArgs struct {
Eips []string `json:"eips"`
ClientToken string `json:"-"`
}
func (c *Client) EipGroupMoveIn(id string, args *EipGroupMoveInArgs) error
参数含义
请参考OpenAPI文档:https://cloud.baidu.com/doc/EIP/s/ukoslf7lm
返回值
操作成功:
无特殊返回参数
操作失败:
抛出异常,异常列表参考:https://cloud.baidu.com/doc/EIP/s/nkcu555a4
代码示例
具体代码示例参考:example_eipgroup_move_in.go
共享带宽移出EIP
- 移出的共享带宽的计费方式必须是后付费
- 移出的共享带宽不可以有其他待生效的订单
- 移出的EIP仅支持后付费计费方式
- 如果移出的EIP是共享带宽原生的EIP,必须要指定移出后的EIP的带宽和计费信息
- 如果移出的EIP是过去移入过该共享带宽的非原生EIP,无需指定移出后的EIP的带宽和计费信息,该EIP将恢复到移入前的带宽和计费方式
函数声明
type EipGroupMoveOutArgs struct {
MoveOutEips []MoveOutEip `json:"moveOutEips"`
ClientToken string `json:"-"`
}
type MoveOutEip struct {
Eip string `json:"eip"`
BandWidthInMbps int `json:"bandwidthInMbps"`
Billing *Billing `json:"billing"`
}
func (c *Client) EipGroupMoveOut(id string, args *EipGroupMoveOutArgs) error
参数含义
请参考OpenAPI文档:https://cloud.baidu.com/doc/EIP/s/Qkoslycn3
返回值
操作成功:
无特殊返回参数
操作失败:
抛出异常,异常列表参考:https://cloud.baidu.com/doc/EIP/s/nkcu555a4
代码示例
具体代码示例参考:example_eipgroup_move_out.go
预付费共享带宽退订
- 预付费共享带宽释放并退款。
- 只有预付费共享带宽支持退订,后付费共享带宽不支持退订,后付费共享带宽可调用释放共享带宽接口直接释放。
- 共享带宽中有EIP正在封禁,不支持退订,可在解封后再操作。
- 共享带宽中有EIP绑定了VPN、NAT,不支持退订,可在解除绑定后再操作。
- 共享带宽中有EIP绑有带宽包,不支持退订,可将带宽包释放后再操作。
- 共享带宽退款有惩罚机制,退款金额 = max(0, 总金额 - 已消费金额 * 1.5)。
函数声明
func (c *Client) RefundEipGroup(id string, clientToken string) error
参数含义
请参考OpenAPI文档:https://cloud.baidu.com/doc/EIP/s/Alxkb5avn
返回值
操作成功:
无特殊返回参数
操作失败:
抛出异常,异常列表参考:https://cloud.baidu.com/doc/EIP/s/nkcu555a4
代码示例
具体代码示例参考:example_eipgroup_refund_eipgroup.go