1package drds
2
3//Licensed under the Apache License, Version 2.0 (the "License");
4//you may not use this file except in compliance with the License.
5//You may obtain a copy of the License at
6//
7//http://www.apache.org/licenses/LICENSE-2.0
8//
9//Unless required by applicable law or agreed to in writing, software
10//distributed under the License is distributed on an "AS IS" BASIS,
11//WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12//See the License for the specific language governing permissions and
13//limitations under the License.
14//
15// Code generated by Alibaba Cloud SDK Code Generator.
16// Changes may cause incorrect behavior and will be lost if the code is regenerated.
17
18// Task is a nested struct in drds response
19type Task struct {
20	TaskType            int    `json:"TaskType" xml:"TaskType"`
21	TbComputeLength     int    `json:"TbComputeLength" xml:"TbComputeLength"`
22	Label               string `json:"Label" xml:"Label"`
23	Id                  int64  `json:"Id" xml:"Id"`
24	TargetId            int64  `json:"TargetId" xml:"TargetId"`
25	ParentJobId         string `json:"ParentJobId" xml:"ParentJobId"`
26	TaskStatus          int    `json:"TaskStatus" xml:"TaskStatus"`
27	ShowProgress        bool   `json:"ShowProgress" xml:"ShowProgress"`
28	GmtCreate           int64  `json:"GmtCreate" xml:"GmtCreate"`
29	TaskPhase           string `json:"TaskPhase" xml:"TaskPhase"`
30	ErrMsg              string `json:"ErrMsg" xml:"ErrMsg"`
31	ExpandType          string `json:"ExpandType" xml:"ExpandType"`
32	DbComputeLength     int    `json:"DbComputeLength" xml:"DbComputeLength"`
33	State               string `json:"State" xml:"State"`
34	AllowCancel         bool   `json:"AllowCancel" xml:"AllowCancel"`
35	DetailTaskId        string `json:"DetailTaskId" xml:"DetailTaskId"`
36	Content             string `json:"Content" xml:"Content"`
37	TaskName            string `json:"TaskName" xml:"TaskName"`
38	Progress            int    `json:"Progress" xml:"Progress"`
39	ProgressDescription string `json:"ProgressDescription" xml:"ProgressDescription"`
40	TaskDetail          string `json:"TaskDetail" xml:"TaskDetail"`
41}
42