com.aliyuncs.market.model.v20151101.GetImageInstanceResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aliyun-java-sdk-market Show documentation
Show all versions of aliyun-java-sdk-market 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.market.model.v20151101;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.market.transform.v20151101.GetImageInstanceResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class GetImageInstanceResponse extends AcsResponse {
private ImageInstance imageInstance;
public ImageInstance getImageInstance() {
return this.imageInstance;
}
public void setImageInstance(ImageInstance imageInstance) {
this.imageInstance = imageInstance;
}
public static class ImageInstance {
private Long instanceId;
private Long orderId;
private Long userPK;
private Long supplierId;
private String imageId;
private String yaochiCode;
private String ecsInstanceId;
private Integer instanceStatus;
private Long createOn;
public Long getInstanceId() {
return this.instanceId;
}
public void setInstanceId(Long instanceId) {
this.instanceId = instanceId;
}
public Long getOrderId() {
return this.orderId;
}
public void setOrderId(Long orderId) {
this.orderId = orderId;
}
public Long getUserPK() {
return this.userPK;
}
public void setUserPK(Long userPK) {
this.userPK = userPK;
}
public Long getSupplierId() {
return this.supplierId;
}
public void setSupplierId(Long supplierId) {
this.supplierId = supplierId;
}
public String getImageId() {
return this.imageId;
}
public void setImageId(String imageId) {
this.imageId = imageId;
}
public String getYaochiCode() {
return this.yaochiCode;
}
public void setYaochiCode(String yaochiCode) {
this.yaochiCode = yaochiCode;
}
public String getEcsInstanceId() {
return this.ecsInstanceId;
}
public void setEcsInstanceId(String ecsInstanceId) {
this.ecsInstanceId = ecsInstanceId;
}
public Integer getInstanceStatus() {
return this.instanceStatus;
}
public void setInstanceStatus(Integer instanceStatus) {
this.instanceStatus = instanceStatus;
}
public Long getCreateOn() {
return this.createOn;
}
public void setCreateOn(Long createOn) {
this.createOn = createOn;
}
}
@Override
public GetImageInstanceResponse getInstance(UnmarshallerContext context) {
return GetImageInstanceResponseUnmarshaller.unmarshall(this, context);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy