com.aliyuncs.polardb.model.v20170801.DescribeTasksResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aliyun-java-sdk-polardb Show documentation
Show all versions of aliyun-java-sdk-polardb Show documentation
Aliyun Open API SDK for Java
Copyright (C) Alibaba Cloud Computing
All rights reserved.
版权所有 (C)阿里云计算有限公司
http://www.aliyun.com
The newest version!
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.polardb.model.v20170801;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.polardb.transform.v20170801.DescribeTasksResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DescribeTasksResponse extends AcsResponse {
private Integer totalRecordCount;
private Integer pageRecordCount;
private String endTime;
private String requestId;
private Integer pageNumber;
private String startTime;
private String dBClusterId;
private List tasks;
public Integer getTotalRecordCount() {
return this.totalRecordCount;
}
public void setTotalRecordCount(Integer totalRecordCount) {
this.totalRecordCount = totalRecordCount;
}
public Integer getPageRecordCount() {
return this.pageRecordCount;
}
public void setPageRecordCount(Integer pageRecordCount) {
this.pageRecordCount = pageRecordCount;
}
public String getEndTime() {
return this.endTime;
}
public void setEndTime(String endTime) {
this.endTime = endTime;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public Integer getPageNumber() {
return this.pageNumber;
}
public void setPageNumber(Integer pageNumber) {
this.pageNumber = pageNumber;
}
public String getStartTime() {
return this.startTime;
}
public void setStartTime(String startTime) {
this.startTime = startTime;
}
public String getDBClusterId() {
return this.dBClusterId;
}
public void setDBClusterId(String dBClusterId) {
this.dBClusterId = dBClusterId;
}
public List getTasks() {
return this.tasks;
}
public void setTasks(List tasks) {
this.tasks = tasks;
}
public static class Task {
private String finishTime;
private String stepsInfo;
private Integer progress;
private String expectedFinishTime;
private String beginTime;
private String taskErrorCode;
private String progressInfo;
private String currentStepName;
private String stepProgressInfo;
private String taskErrorMessage;
private String taskAction;
private String dBName;
private Integer remain;
private String taskId;
public String getFinishTime() {
return this.finishTime;
}
public void setFinishTime(String finishTime) {
this.finishTime = finishTime;
}
public String getStepsInfo() {
return this.stepsInfo;
}
public void setStepsInfo(String stepsInfo) {
this.stepsInfo = stepsInfo;
}
public Integer getProgress() {
return this.progress;
}
public void setProgress(Integer progress) {
this.progress = progress;
}
public String getExpectedFinishTime() {
return this.expectedFinishTime;
}
public void setExpectedFinishTime(String expectedFinishTime) {
this.expectedFinishTime = expectedFinishTime;
}
public String getBeginTime() {
return this.beginTime;
}
public void setBeginTime(String beginTime) {
this.beginTime = beginTime;
}
public String getTaskErrorCode() {
return this.taskErrorCode;
}
public void setTaskErrorCode(String taskErrorCode) {
this.taskErrorCode = taskErrorCode;
}
public String getProgressInfo() {
return this.progressInfo;
}
public void setProgressInfo(String progressInfo) {
this.progressInfo = progressInfo;
}
public String getCurrentStepName() {
return this.currentStepName;
}
public void setCurrentStepName(String currentStepName) {
this.currentStepName = currentStepName;
}
public String getStepProgressInfo() {
return this.stepProgressInfo;
}
public void setStepProgressInfo(String stepProgressInfo) {
this.stepProgressInfo = stepProgressInfo;
}
public String getTaskErrorMessage() {
return this.taskErrorMessage;
}
public void setTaskErrorMessage(String taskErrorMessage) {
this.taskErrorMessage = taskErrorMessage;
}
public String getTaskAction() {
return this.taskAction;
}
public void setTaskAction(String taskAction) {
this.taskAction = taskAction;
}
public String getDBName() {
return this.dBName;
}
public void setDBName(String dBName) {
this.dBName = dBName;
}
public Integer getRemain() {
return this.remain;
}
public void setRemain(Integer remain) {
this.remain = remain;
}
public String getTaskId() {
return this.taskId;
}
public void setTaskId(String taskId) {
this.taskId = taskId;
}
}
@Override
public DescribeTasksResponse getInstance(UnmarshallerContext context) {
return DescribeTasksResponseUnmarshaller.unmarshall(this, context);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy