com.aliyuncs.dbs.model.v20190306.DescribePreCheckProgressListResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aliyun-java-sdk-dbs Show documentation
Show all versions of aliyun-java-sdk-dbs Show documentation
Aliyun Open API SDK for Java
Copyright (C) Alibaba Cloud Computing
All rights reserved.
版权所有 (C)阿里云计算有限公司
http://www.aliyun.com
/*
* 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.dbs.model.v20190306;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.dbs.transform.v20190306.DescribePreCheckProgressListResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DescribePreCheckProgressListResponse extends AcsResponse {
private String status;
private Integer progress;
private Boolean success;
private String errCode;
private String errMessage;
private Integer httpStatusCode;
private String requestId;
private List items;
public String getStatus() {
return this.status;
}
public void setStatus(String status) {
this.status = status;
}
public Integer getProgress() {
return this.progress;
}
public void setProgress(Integer progress) {
this.progress = progress;
}
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
public String getErrCode() {
return this.errCode;
}
public void setErrCode(String errCode) {
this.errCode = errCode;
}
public String getErrMessage() {
return this.errMessage;
}
public void setErrMessage(String errMessage) {
this.errMessage = errMessage;
}
public Integer getHttpStatusCode() {
return this.httpStatusCode;
}
public void setHttpStatusCode(Integer httpStatusCode) {
this.httpStatusCode = httpStatusCode;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public List getItems() {
return this.items;
}
public void setItems(List items) {
this.items = items;
}
public static class PreCheckProgressDetail {
private String jobId;
private String state;
private String orderNum;
private String errMsg;
private String names;
private String item;
private Long bootTime;
private Long finishTime;
public String getJobId() {
return this.jobId;
}
public void setJobId(String jobId) {
this.jobId = jobId;
}
public String getState() {
return this.state;
}
public void setState(String state) {
this.state = state;
}
public String getOrderNum() {
return this.orderNum;
}
public void setOrderNum(String orderNum) {
this.orderNum = orderNum;
}
public String getErrMsg() {
return this.errMsg;
}
public void setErrMsg(String errMsg) {
this.errMsg = errMsg;
}
public String getNames() {
return this.names;
}
public void setNames(String names) {
this.names = names;
}
public String getItem() {
return this.item;
}
public void setItem(String item) {
this.item = item;
}
public Long getBootTime() {
return this.bootTime;
}
public void setBootTime(Long bootTime) {
this.bootTime = bootTime;
}
public Long getFinishTime() {
return this.finishTime;
}
public void setFinishTime(Long finishTime) {
this.finishTime = finishTime;
}
}
@Override
public DescribePreCheckProgressListResponse getInstance(UnmarshallerContext context) {
return DescribePreCheckProgressListResponseUnmarshaller.unmarshall(this, context);
}
}