com.aliyuncs.market.model.v20151101.GetImageResourceResponse 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.GetImageResourceResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class GetImageResourceResponse extends AcsResponse {
private Image image;
public Image getImage() {
return this.image;
}
public void setImage(Image image) {
this.image = image;
}
public static class Image {
private String productCode;
private String productSkuCode;
private String imageId;
private String imageVersion;
private String regionNo;
private String imageName;
private Long supplierId;
private String supplierName;
private String osName;
private String architecture;
private Integer imageSize;
private String description;
private String imageOwnerAlias;
private String snapshotNo;
private String device;
private Boolean isSubscribed;
private String gmtCreated;
private Boolean supportIO;
private String vmType;
public String getProductCode() {
return this.productCode;
}
public void setProductCode(String productCode) {
this.productCode = productCode;
}
public String getProductSkuCode() {
return this.productSkuCode;
}
public void setProductSkuCode(String productSkuCode) {
this.productSkuCode = productSkuCode;
}
public String getImageId() {
return this.imageId;
}
public void setImageId(String imageId) {
this.imageId = imageId;
}
public String getImageVersion() {
return this.imageVersion;
}
public void setImageVersion(String imageVersion) {
this.imageVersion = imageVersion;
}
public String getRegionNo() {
return this.regionNo;
}
public void setRegionNo(String regionNo) {
this.regionNo = regionNo;
}
public String getImageName() {
return this.imageName;
}
public void setImageName(String imageName) {
this.imageName = imageName;
}
public Long getSupplierId() {
return this.supplierId;
}
public void setSupplierId(Long supplierId) {
this.supplierId = supplierId;
}
public String getSupplierName() {
return this.supplierName;
}
public void setSupplierName(String supplierName) {
this.supplierName = supplierName;
}
public String getOsName() {
return this.osName;
}
public void setOsName(String osName) {
this.osName = osName;
}
public String getArchitecture() {
return this.architecture;
}
public void setArchitecture(String architecture) {
this.architecture = architecture;
}
public Integer getImageSize() {
return this.imageSize;
}
public void setImageSize(Integer imageSize) {
this.imageSize = imageSize;
}
public String getDescription() {
return this.description;
}
public void setDescription(String description) {
this.description = description;
}
public String getImageOwnerAlias() {
return this.imageOwnerAlias;
}
public void setImageOwnerAlias(String imageOwnerAlias) {
this.imageOwnerAlias = imageOwnerAlias;
}
public String getSnapshotNo() {
return this.snapshotNo;
}
public void setSnapshotNo(String snapshotNo) {
this.snapshotNo = snapshotNo;
}
public String getDevice() {
return this.device;
}
public void setDevice(String device) {
this.device = device;
}
public Boolean getIsSubscribed() {
return this.isSubscribed;
}
public void setIsSubscribed(Boolean isSubscribed) {
this.isSubscribed = isSubscribed;
}
public String getGmtCreated() {
return this.gmtCreated;
}
public void setGmtCreated(String gmtCreated) {
this.gmtCreated = gmtCreated;
}
public Boolean getSupportIO() {
return this.supportIO;
}
public void setSupportIO(Boolean supportIO) {
this.supportIO = supportIO;
}
public String getVmType() {
return this.vmType;
}
public void setVmType(String vmType) {
this.vmType = vmType;
}
}
@Override
public GetImageResourceResponse getInstance(UnmarshallerContext context) {
return GetImageResourceResponseUnmarshaller.unmarshall(this, context);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy