github.com/morlay/goqcloud@v0.0.0-20181123023149-b00e0b0b9afc/clients/yunjing/describe_components.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/30336
     9  
    10  type DescribeComponentsRequest struct {
    11  	// 组件ID。Uuid和ComponentId必填其一,使用ComponentId表示,查询该组件列表信息。
    12  	ComponentId *int64 `name:"ComponentId,omitempty"`
    13  	// 过滤条件。ComponentVersion - String - 是否必填:否 - 组件版本号MachineIp - String - 是否必填:否 - 主机内网IP
    14  	Filters []*Filter `name:"Filters,omitempty"`
    15  	// 返回数量,默认为10,最大值为100。
    16  	Limit *int64 `name:"Limit,omitempty"`
    17  	// 偏移量,默认为0。
    18  	Offset *int64 `name:"Offset,omitempty"`
    19  	// 区域
    20  	Region string `name:"Region"`
    21  	// 云镜客户端唯一Uuid。Uuid和ComponentId必填其一,使用Uuid表示,查询该主机列表信息。
    22  	Uuid *string `name:"Uuid,omitempty"`
    23  }
    24  
    25  func (req *DescribeComponentsRequest) Invoke(client github_com_morlay_goqcloud.Client) (*DescribeComponentsResponse, error) {
    26  	resp := &DescribeComponentsResponse{}
    27  	err := client.Request("yunjing", "DescribeComponents", "2018-02-28").Do(req, resp)
    28  	return resp, err
    29  }
    30  
    31  type DescribeComponentsResponse struct {
    32  	github_com_morlay_goqcloud.TencentCloudBaseResponse
    33  	// 组件列表数据。
    34  	Components []*Component `json:"Components"`
    35  	// 组件列表记录总数。
    36  	TotalCount int64 `json:"TotalCount"`
    37  }