com.aliyun.pds20220301.models.GetTaskStatusRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pds20220301 Show documentation
Show all versions of pds20220301 Show documentation
Alibaba Cloud pds (20220301) SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.pds20220301.models;
import com.aliyun.tea.*;
public class GetTaskStatusRequest extends TeaModel {
/**
* The drive ID.
*/
@NameInMap("drive_id")
public String driveId;
/**
* The ID of the task.
*/
@NameInMap("task_id")
public String taskId;
public static GetTaskStatusRequest build(java.util.Map map) throws Exception {
GetTaskStatusRequest self = new GetTaskStatusRequest();
return TeaModel.build(map, self);
}
public GetTaskStatusRequest setDriveId(String driveId) {
this.driveId = driveId;
return this;
}
public String getDriveId() {
return this.driveId;
}
public GetTaskStatusRequest setTaskId(String taskId) {
this.taskId = taskId;
return this;
}
public String getTaskId() {
return this.taskId;
}
}