-
Notifications
You must be signed in to change notification settings - Fork 38
/
describe_udbinstance_binlog.go
65 lines (48 loc) · 2.12 KB
/
describe_udbinstance_binlog.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
//Code is generated by ucloud code generator, don't modify it by hand, it will cause undefined behaviors.
//go:generate ucloud-gen-go-api UDB DescribeUDBInstanceBinlog
package udb
import (
"github.com/ucloud/ucloud-sdk-go/ucloud/request"
"github.com/ucloud/ucloud-sdk-go/ucloud/response"
)
// DescribeUDBInstanceBinlogRequest is request schema for DescribeUDBInstanceBinlog action
type DescribeUDBInstanceBinlogRequest struct {
request.CommonBase
// [公共参数] 地域。 参见 [地域和可用区列表](../summary/regionlist.html)
// Region *string `required:"true"`
// [公共参数] 可用区。参见 [可用区列表](../summary/regionlist.html)
// Zone *string `required:"false"`
// [公共参数] 项目ID。不填写为默认项目,子帐号必须填写。 请参考[GetProjectList接口](../summary/get_project_list.html)
// ProjectId *string `required:"false"`
// DB实例Id
DBId *string `required:"true"`
// 过滤条件:起始时间(时间戳)
BeginTime *int `required:"true"`
// 过滤条件:结束时间(时间戳)
EndTime *int `required:"true"`
}
// DescribeUDBInstanceBinlogResponse is response schema for DescribeUDBInstanceBinlog action
type DescribeUDBInstanceBinlogResponse struct {
response.CommonBase
// 获取的Binlog信息列表 UDBInstanceBinlogSet
DataSet []UDBInstanceBinlogSet
}
// NewDescribeUDBInstanceBinlogRequest will create request of DescribeUDBInstanceBinlog action.
func (c *UDBClient) NewDescribeUDBInstanceBinlogRequest() *DescribeUDBInstanceBinlogRequest {
req := &DescribeUDBInstanceBinlogRequest{}
// 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
}
// DescribeUDBInstanceBinlog - 获取UDB指定时间段的binlog列表
func (c *UDBClient) DescribeUDBInstanceBinlog(req *DescribeUDBInstanceBinlogRequest) (*DescribeUDBInstanceBinlogResponse, error) {
var err error
var res DescribeUDBInstanceBinlogResponse
err = c.Client.InvokeAction("DescribeUDBInstanceBinlog", req, &res)
if err != nil {
return &res, err
}
return &res, nil
}