com.aliyuncs.market_inner.model.v20160801.InnerQueryAvailableImagesResponse Maven / Gradle / Ivy
/*
* 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_inner.model.v20160801;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.market_inner.transform.v20160801.InnerQueryAvailableImagesResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class InnerQueryAvailableImagesResponse extends AcsResponse {
private Integer pageNumber;
private Integer pageSize;
private Integer totalCount;
private String requestId;
private List imageList;
public Integer getPageNumber() {
return this.pageNumber;
}
public void setPageNumber(Integer pageNumber) {
this.pageNumber = pageNumber;
}
public Integer getPageSize() {
return this.pageSize;
}
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
}
public Integer getTotalCount() {
return this.totalCount;
}
public void setTotalCount(Integer totalCount) {
this.totalCount = totalCount;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public List getImageList() {
return this.imageList;
}
public void setImageList(List imageList) {
this.imageList = imageList;
}
public static class Image {
private String imageId;
private Integer imageSize;
private Long supplierId;
private String snapshotId;
private String device;
private String productCode;
private String productSkuCode;
private String imageVersion;
private String regionId;
private String imageName;
private String supplierName;
private String osName;
private String architecture;
private String description;
private String imageOwnerAlias;
private Boolean isSubscribed;
private String gmtCreated;
private Boolean supportIoOptimized;
private String vmType;
private List diskDeviceMappings;
public String getImageId() {
return this.imageId;
}
public void setImageId(String imageId) {
this.imageId = imageId;
}
public Integer getImageSize() {
return this.imageSize;
}
public void setImageSize(Integer imageSize) {
this.imageSize = imageSize;
}
public Long getSupplierId() {
return this.supplierId;
}
public void setSupplierId(Long supplierId) {
this.supplierId = supplierId;
}
public String getSnapshotId() {
return this.snapshotId;
}
public void setSnapshotId(String snapshotId) {
this.snapshotId = snapshotId;
}
public String getDevice() {
return this.device;
}
public void setDevice(String device) {
this.device = device;
}
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 getImageVersion() {
return this.imageVersion;
}
public void setImageVersion(String imageVersion) {
this.imageVersion = imageVersion;
}
public String getRegionId() {
return this.regionId;
}
public void setRegionId(String regionId) {
this.regionId = regionId;
}
public String getImageName() {
return this.imageName;
}
public void setImageName(String imageName) {
this.imageName = imageName;
}
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 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 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 getSupportIoOptimized() {
return this.supportIoOptimized;
}
public void setSupportIoOptimized(Boolean supportIoOptimized) {
this.supportIoOptimized = supportIoOptimized;
}
public String getVmType() {
return this.vmType;
}
public void setVmType(String vmType) {
this.vmType = vmType;
}
public List getDiskDeviceMappings() {
return this.diskDeviceMappings;
}
public void setDiskDeviceMappings(List diskDeviceMappings) {
this.diskDeviceMappings = diskDeviceMappings;
}
public static class DiskDeviceMapping {
private String diskType;
private String format;
private String snapshotId;
private Integer size;
private String device;
private String importOSSBucket;
private String importOSSObject;
public String getDiskType() {
return this.diskType;
}
public void setDiskType(String diskType) {
this.diskType = diskType;
}
public String getFormat() {
return this.format;
}
public void setFormat(String format) {
this.format = format;
}
public String getSnapshotId() {
return this.snapshotId;
}
public void setSnapshotId(String snapshotId) {
this.snapshotId = snapshotId;
}
public Integer getSize() {
return this.size;
}
public void setSize(Integer size) {
this.size = size;
}
public String getDevice() {
return this.device;
}
public void setDevice(String device) {
this.device = device;
}
public String getImportOSSBucket() {
return this.importOSSBucket;
}
public void setImportOSSBucket(String importOSSBucket) {
this.importOSSBucket = importOSSBucket;
}
public String getImportOSSObject() {
return this.importOSSObject;
}
public void setImportOSSObject(String importOSSObject) {
this.importOSSObject = importOSSObject;
}
}
}
@Override
public InnerQueryAvailableImagesResponse getInstance(UnmarshallerContext context) {
return InnerQueryAvailableImagesResponseUnmarshaller.unmarshall(this, context);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy