com.aliyun.ens20171110.models.DescribeAICImagesResponseBody Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ens20171110 Show documentation
Show all versions of ens20171110 Show documentation
Alibaba Cloud edge node service (20171110) SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.ens20171110.models;
import com.aliyun.tea.*;
public class DescribeAICImagesResponseBody extends TeaModel {
/**
* The information about the images.
*/
@NameInMap("Images")
public java.util.List images;
/**
* The page number. Default value: 1.
*
* example:
* 1
*/
@NameInMap("PageNumber")
public Integer pageNumber;
/**
* The number of entries per page.
* Default value: 10.
*
* example:
* 10
*/
@NameInMap("PageSize")
public Integer pageSize;
/**
* The ID of the request.
*
* example:
* 72DC6C0A-D9A8-5345-A2BE-FE354CC728A0
*/
@NameInMap("RequestId")
public String requestId;
/**
* The total number of entries returned.
*
* example:
* 1
*/
@NameInMap("TotalCount")
public Integer totalCount;
public static DescribeAICImagesResponseBody build(java.util.Map map) throws Exception {
DescribeAICImagesResponseBody self = new DescribeAICImagesResponseBody();
return TeaModel.build(map, self);
}
public DescribeAICImagesResponseBody setImages(java.util.List images) {
this.images = images;
return this;
}
public java.util.List getImages() {
return this.images;
}
public DescribeAICImagesResponseBody setPageNumber(Integer pageNumber) {
this.pageNumber = pageNumber;
return this;
}
public Integer getPageNumber() {
return this.pageNumber;
}
public DescribeAICImagesResponseBody setPageSize(Integer pageSize) {
this.pageSize = pageSize;
return this;
}
public Integer getPageSize() {
return this.pageSize;
}
public DescribeAICImagesResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public DescribeAICImagesResponseBody setTotalCount(Integer totalCount) {
this.totalCount = totalCount;
return this;
}
public Integer getTotalCount() {
return this.totalCount;
}
public static class DescribeAICImagesResponseBodyImages extends TeaModel {
/**
* The time when the image was created.
*
* example:
* 2022-09-22 10:54:34
*/
@NameInMap("CreationTime")
public String creationTime;
/**
* The description of the image.
*
* example:
* Test operation of console
*/
@NameInMap("Description")
public String description;
/**
* The image ID of the AIC instance.
*
* example:
* m-ad0ddaddc2d54adeaa09b7c0f1e****
*/
@NameInMap("ImageId")
public String imageId;
/**
* The URL of the AIC image repository.
*
* example:
* ****.alibaba-inc.com/aic/socimage:test
*/
@NameInMap("ImageUrl")
public String imageUrl;
/**
* The status of the image. Available is returned for this parameter. Available indicates that the image is available.
*
* example:
* available
*/
@NameInMap("Status")
public String status;
/**
* The username of the image repository.
*
* example:
* user
*/
@NameInMap("User")
public String user;
public static DescribeAICImagesResponseBodyImages build(java.util.Map map) throws Exception {
DescribeAICImagesResponseBodyImages self = new DescribeAICImagesResponseBodyImages();
return TeaModel.build(map, self);
}
public DescribeAICImagesResponseBodyImages setCreationTime(String creationTime) {
this.creationTime = creationTime;
return this;
}
public String getCreationTime() {
return this.creationTime;
}
public DescribeAICImagesResponseBodyImages setDescription(String description) {
this.description = description;
return this;
}
public String getDescription() {
return this.description;
}
public DescribeAICImagesResponseBodyImages setImageId(String imageId) {
this.imageId = imageId;
return this;
}
public String getImageId() {
return this.imageId;
}
public DescribeAICImagesResponseBodyImages setImageUrl(String imageUrl) {
this.imageUrl = imageUrl;
return this;
}
public String getImageUrl() {
return this.imageUrl;
}
public DescribeAICImagesResponseBodyImages setStatus(String status) {
this.status = status;
return this;
}
public String getStatus() {
return this.status;
}
public DescribeAICImagesResponseBodyImages setUser(String user) {
this.user = user;
return this;
}
public String getUser() {
return this.user;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy