All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.aliyuncs.sae.model.v20190506.DescribeChangeOrderResponse Maven / Gradle / Ivy

Go to download

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.sae.model.v20190506;

import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.sae.transform.v20190506.DescribeChangeOrderResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;

/**
 * @author auto create
 * @version 
 */
public class DescribeChangeOrderResponse extends AcsResponse {

	private String requestId;

	private String message;

	private String traceId;

	private String errorCode;

	private String code;

	private Boolean success;

	private Data data;

	public String getRequestId() {
		return this.requestId;
	}

	public void setRequestId(String requestId) {
		this.requestId = requestId;
	}

	public String getMessage() {
		return this.message;
	}

	public void setMessage(String message) {
		this.message = message;
	}

	public String getTraceId() {
		return this.traceId;
	}

	public void setTraceId(String traceId) {
		this.traceId = traceId;
	}

	public String getErrorCode() {
		return this.errorCode;
	}

	public void setErrorCode(String errorCode) {
		this.errorCode = errorCode;
	}

	public String getCode() {
		return this.code;
	}

	public void setCode(String code) {
		this.code = code;
	}

	public Boolean getSuccess() {
		return this.success;
	}

	public void setSuccess(Boolean success) {
		this.success = success;
	}

	public Data getData() {
		return this.data;
	}

	public void setData(Data data) {
		this.data = data;
	}

	public static class Data {

		private Integer status;

		private Integer subStatus;

		private String approvalId;

		private String errorMessage;

		private Integer batchWaitTime;

		private String createTime;

		private Integer batchCount;

		private String coTypeCode;

		private Boolean supportAbortFreeze;

		private Boolean supportRollback;

		private String changeOrderId;

		private String appName;

		private String batchType;

		private String description;

		private String coType;

		private Boolean auto;

		private String currentPipelineId;

		private String appId;

		private List pipelines;

		private List coTargets;

		public Integer getStatus() {
			return this.status;
		}

		public void setStatus(Integer status) {
			this.status = status;
		}

		public Integer getSubStatus() {
			return this.subStatus;
		}

		public void setSubStatus(Integer subStatus) {
			this.subStatus = subStatus;
		}

		public String getApprovalId() {
			return this.approvalId;
		}

		public void setApprovalId(String approvalId) {
			this.approvalId = approvalId;
		}

		public String getErrorMessage() {
			return this.errorMessage;
		}

		public void setErrorMessage(String errorMessage) {
			this.errorMessage = errorMessage;
		}

		public Integer getBatchWaitTime() {
			return this.batchWaitTime;
		}

		public void setBatchWaitTime(Integer batchWaitTime) {
			this.batchWaitTime = batchWaitTime;
		}

		public String getCreateTime() {
			return this.createTime;
		}

		public void setCreateTime(String createTime) {
			this.createTime = createTime;
		}

		public Integer getBatchCount() {
			return this.batchCount;
		}

		public void setBatchCount(Integer batchCount) {
			this.batchCount = batchCount;
		}

		public String getCoTypeCode() {
			return this.coTypeCode;
		}

		public void setCoTypeCode(String coTypeCode) {
			this.coTypeCode = coTypeCode;
		}

		public Boolean getSupportAbortFreeze() {
			return this.supportAbortFreeze;
		}

		public void setSupportAbortFreeze(Boolean supportAbortFreeze) {
			this.supportAbortFreeze = supportAbortFreeze;
		}

		public Boolean getSupportRollback() {
			return this.supportRollback;
		}

		public void setSupportRollback(Boolean supportRollback) {
			this.supportRollback = supportRollback;
		}

		public String getChangeOrderId() {
			return this.changeOrderId;
		}

		public void setChangeOrderId(String changeOrderId) {
			this.changeOrderId = changeOrderId;
		}

		public String getAppName() {
			return this.appName;
		}

		public void setAppName(String appName) {
			this.appName = appName;
		}

		public String getBatchType() {
			return this.batchType;
		}

		public void setBatchType(String batchType) {
			this.batchType = batchType;
		}

		public String getDescription() {
			return this.description;
		}

		public void setDescription(String description) {
			this.description = description;
		}

		public String getCoType() {
			return this.coType;
		}

		public void setCoType(String coType) {
			this.coType = coType;
		}

		public Boolean getAuto() {
			return this.auto;
		}

		public void setAuto(Boolean auto) {
			this.auto = auto;
		}

		public String getCurrentPipelineId() {
			return this.currentPipelineId;
		}

		public void setCurrentPipelineId(String currentPipelineId) {
			this.currentPipelineId = currentPipelineId;
		}

		public String getAppId() {
			return this.appId;
		}

		public void setAppId(String appId) {
			this.appId = appId;
		}

		public List getPipelines() {
			return this.pipelines;
		}

		public void setPipelines(List pipelines) {
			this.pipelines = pipelines;
		}

		public List getCoTargets() {
			return this.coTargets;
		}

		public void setCoTargets(List coTargets) {
			this.coTargets = coTargets;
		}

		public static class Pipeline {

			private Integer status;

			private Long startTime;

			private Long updateTime;

			private Integer batchType;

			private Integer parallelCount;

			private String pipelineName;

			private String pipelineId;

			public Integer getStatus() {
				return this.status;
			}

			public void setStatus(Integer status) {
				this.status = status;
			}

			public Long getStartTime() {
				return this.startTime;
			}

			public void setStartTime(Long startTime) {
				this.startTime = startTime;
			}

			public Long getUpdateTime() {
				return this.updateTime;
			}

			public void setUpdateTime(Long updateTime) {
				this.updateTime = updateTime;
			}

			public Integer getBatchType() {
				return this.batchType;
			}

			public void setBatchType(Integer batchType) {
				this.batchType = batchType;
			}

			public Integer getParallelCount() {
				return this.parallelCount;
			}

			public void setParallelCount(Integer parallelCount) {
				this.parallelCount = parallelCount;
			}

			public String getPipelineName() {
				return this.pipelineName;
			}

			public void setPipelineName(String pipelineName) {
				this.pipelineName = pipelineName;
			}

			public String getPipelineId() {
				return this.pipelineId;
			}

			public void setPipelineId(String pipelineId) {
				this.pipelineId = pipelineId;
			}
		}
	}

	@Override
	public DescribeChangeOrderResponse getInstance(UnmarshallerContext context) {
		return	DescribeChangeOrderResponseUnmarshaller.unmarshall(this, context);
	}

	@Override
	public boolean checkShowJsonItemName() {
		return false;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy