github.com/morlay/goqcloud@v0.0.0-20181123023149-b00e0b0b9afc/clients/yunjing/describe_component_statistics.go (about) 1 package yunjing 2 3 import ( 4 github_com_morlay_goqcloud "github.com/morlay/goqcloud" 5 ) 6 7 // 获取组件统计列表 8 // https://cloud.tencent.com/document/api/296/30337 9 10 type DescribeComponentStatisticsRequest struct { 11 // 过滤条件。ComponentName - String - 是否必填:否 - 组件名称 12 Filters []*Filter `name:"Filters,omitempty"` 13 // 返回数量,默认为10,最大值为100。 14 Limit *int64 `name:"Limit,omitempty"` 15 // 偏移量,默认为0。 16 Offset *int64 `name:"Offset,omitempty"` 17 // 区域 18 Region string `name:"Region"` 19 } 20 21 func (req *DescribeComponentStatisticsRequest) Invoke(client github_com_morlay_goqcloud.Client) (*DescribeComponentStatisticsResponse, error) { 22 resp := &DescribeComponentStatisticsResponse{} 23 err := client.Request("yunjing", "DescribeComponentStatistics", "2018-02-28").Do(req, resp) 24 return resp, err 25 } 26 27 type DescribeComponentStatisticsResponse struct { 28 github_com_morlay_goqcloud.TencentCloudBaseResponse 29 // 组件统计列表数据数组。 30 ComponentStatistics []*ComponentStatistics `json:"ComponentStatistics"` 31 // 组件统计列表记录总数。 32 TotalCount int64 `json:"TotalCount"` 33 }