github.com/morlay/goqcloud@v0.0.0-20181123023149-b00e0b0b9afc/clients/cdb/stop_db_import_job.go (about) 1 package cdb 2 3 import ( 4 github_com_morlay_goqcloud "github.com/morlay/goqcloud" 5 ) 6 7 // 终止数据导入任务 8 // https://cloud.tencent.com/document/api/236/15857 9 10 type StopDbImportJobRequest struct { 11 // 异步任务的请求ID。 12 AsyncRequestId string `name:"AsyncRequestId"` 13 // 区域 14 Region string `name:"Region"` 15 } 16 17 func (req *StopDbImportJobRequest) Invoke(client github_com_morlay_goqcloud.Client) (*StopDbImportJobResponse, error) { 18 resp := &StopDbImportJobResponse{} 19 err := client.Request("cdb", "StopDBImportJob", "2017-03-20").Do(req, resp) 20 return resp, err 21 } 22 23 type StopDbImportJobResponse struct { 24 github_com_morlay_goqcloud.TencentCloudBaseResponse 25 }