github.com/morlay/goqcloud@v0.0.0-20181123023149-b00e0b0b9afc/clients/yunjing/describe_malwares.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/19837 9 10 type DescribeMalwaresRequest struct { 11 // 过滤条件。Keywords - String - 是否必填:否 - 查询关键字 Status - String - 是否必填:否 - 木马状态(UN_OPERATED: 未处理 | SEGREGATED: 已隔离|TRUSTED:信任)每个过滤条件只支持一个值,暂不支持多个值“或”关系查询。 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 // 客户端唯一Uuid。 20 Uuid *string `name:"Uuid,omitempty"` 21 } 22 23 func (req *DescribeMalwaresRequest) Invoke(client github_com_morlay_goqcloud.Client) (*DescribeMalwaresResponse, error) { 24 resp := &DescribeMalwaresResponse{} 25 err := client.Request("yunjing", "DescribeMalwares", "2018-02-28").Do(req, resp) 26 return resp, err 27 } 28 29 type DescribeMalwaresResponse struct { 30 github_com_morlay_goqcloud.TencentCloudBaseResponse 31 // Malware数组。 32 Malwares []*Malware `json:"Malwares"` 33 // 木马总数。 34 TotalCount int64 `json:"TotalCount"` 35 }