github.com/morlay/goqcloud@v0.0.0-20181123023149-b00e0b0b9afc/clients/live/describe_pull_stream_configs.go (about)

     1  package live
     2  
     3  import (
     4  	github_com_morlay_goqcloud "github.com/morlay/goqcloud"
     5  )
     6  
     7  // 查询拉流配置
     8  // https://cloud.tencent.com/document/api/267/30158
     9  
    10  type DescribePullStreamConfigsRequest struct {
    11  	// 配置id。
    12  	ConfigId *string `name:"ConfigId,omitempty"`
    13  	// 区域
    14  	Region string `name:"Region"`
    15  }
    16  
    17  func (req *DescribePullStreamConfigsRequest) Invoke(client github_com_morlay_goqcloud.Client) (*DescribePullStreamConfigsResponse, error) {
    18  	resp := &DescribePullStreamConfigsResponse{}
    19  	err := client.Request("live", "DescribePullStreamConfigs", "2018-08-01").Do(req, resp)
    20  	return resp, err
    21  }
    22  
    23  type DescribePullStreamConfigsResponse struct {
    24  	github_com_morlay_goqcloud.TencentCloudBaseResponse
    25  	// 拉流配置。
    26  	PullStreamConfigs []*PullStreamConfig `json:"PullStreamConfigs"`
    27  }