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

     1  package batch
     2  
     3  import (
     4  	github_com_morlay_goqcloud "github.com/morlay/goqcloud"
     5  )
     6  
     7  // 删除作业
     8  // https://cloud.tencent.com/document/api/599/15906
     9  
    10  type DeleteJobRequest struct {
    11  	// 作业ID
    12  	JobId string `name:"JobId"`
    13  	// 区域
    14  	Region string `name:"Region"`
    15  }
    16  
    17  func (req *DeleteJobRequest) Invoke(client github_com_morlay_goqcloud.Client) (*DeleteJobResponse, error) {
    18  	resp := &DeleteJobResponse{}
    19  	err := client.Request("batch", "DeleteJob", "2017-03-12").Do(req, resp)
    20  	return resp, err
    21  }
    22  
    23  type DeleteJobResponse struct {
    24  	github_com_morlay_goqcloud.TencentCloudBaseResponse
    25  }