57 lines
1.8 KiB
Go
57 lines
1.8 KiB
Go
//Code is generated by ucloud code generator, don't modify it by hand, it will cause undefined behaviors.
|
||
//go:generate ucloud-gen-go-api UNet ModifyEIPBandwidth
|
||
|
||
package unet
|
||
|
||
import (
|
||
"github.com/ucloud/ucloud-sdk-go/ucloud/request"
|
||
"github.com/ucloud/ucloud-sdk-go/ucloud/response"
|
||
)
|
||
|
||
// ModifyEIPBandwidthRequest is request schema for ModifyEIPBandwidth action
|
||
type ModifyEIPBandwidthRequest struct {
|
||
request.CommonBase
|
||
|
||
// [公共参数] 地域。 参见 [地域和可用区列表](../summary/regionlist.html)
|
||
// Region *string `required:"true"`
|
||
|
||
// [公共参数] 项目ID。不填写为默认项目,子帐号必须填写。 请参考[GetProjectList接口](../summary/get_project_list.html)
|
||
// ProjectId *string `required:"false"`
|
||
|
||
// 弹性IP的资源ID
|
||
EIPId *string `required:"true"`
|
||
|
||
// 弹性IP的外网带宽, 单位为Mbps. 各地域的带宽值范围如下:流量计费[1-200],带宽计费[1-800]
|
||
Bandwidth *int `required:"true"`
|
||
}
|
||
|
||
// ModifyEIPBandwidthResponse is response schema for ModifyEIPBandwidth action
|
||
type ModifyEIPBandwidthResponse struct {
|
||
response.CommonBase
|
||
}
|
||
|
||
// NewModifyEIPBandwidthRequest will create request of ModifyEIPBandwidth action.
|
||
func (c *UNetClient) NewModifyEIPBandwidthRequest() *ModifyEIPBandwidthRequest {
|
||
req := &ModifyEIPBandwidthRequest{}
|
||
|
||
// setup request with client config
|
||
c.Client.SetupRequest(req)
|
||
|
||
// setup retryable with default retry policy (retry for non-create action and common error)
|
||
req.SetRetryable(true)
|
||
return req
|
||
}
|
||
|
||
// ModifyEIPBandwidth - 调整弹性IP的外网带宽
|
||
func (c *UNetClient) ModifyEIPBandwidth(req *ModifyEIPBandwidthRequest) (*ModifyEIPBandwidthResponse, error) {
|
||
var err error
|
||
var res ModifyEIPBandwidthResponse
|
||
|
||
err = c.Client.InvokeAction("ModifyEIPBandwidth", req, &res)
|
||
if err != nil {
|
||
return &res, err
|
||
}
|
||
|
||
return &res, nil
|
||
}
|