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

com.aliyun.ens20171110.models.DescribeAICImagesRequest Maven / Gradle / Ivy

// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.ens20171110.models;

import com.aliyun.tea.*;

public class DescribeAICImagesRequest extends TeaModel {
    /**
     * 

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 type of the image. Valid values:

*
    *
  • public: public image
  • *
  • private: custom image
  • *
* * example: *

public

*/ @NameInMap("ImageType") public String imageType; /** *

The URL of the AIC image repository.

* * example: *

****.alibaba-inc.com/aic/socimage:test

*/ @NameInMap("ImageUrl") public String imageUrl; /** *

The end of the time range to query. Specify the time in the 2006-01-02 format. By default, the time range to query is not restricted.

* * example: *

2022-02-02

*/ @NameInMap("MaxDate") public String maxDate; /** *

The beginning of the time range to query. Specify the time in the 2006-01-02 format. By default, the time range to query is not restricted.

* * example: *

2022-01-02

*/ @NameInMap("MinDate") public String minDate; /** *

The page number. Pages start from page 1. Default value: 1.

* * example: *

1

*/ @NameInMap("PageNumber") public String pageNumber; /** *

The number of entries per page. The maximum value is 100. Default value: 10.

* * example: *

10

*/ @NameInMap("PageSize") public String pageSize; /** *

The status of the image. Valid values:

*
    *
  • verifying
  • *
  • disable
  • *
  • available
  • *
* * example: *

available

*/ @NameInMap("Status") public String status; public static DescribeAICImagesRequest build(java.util.Map map) throws Exception { DescribeAICImagesRequest self = new DescribeAICImagesRequest(); return TeaModel.build(map, self); } public DescribeAICImagesRequest setDescription(String description) { this.description = description; return this; } public String getDescription() { return this.description; } public DescribeAICImagesRequest setImageId(String imageId) { this.imageId = imageId; return this; } public String getImageId() { return this.imageId; } public DescribeAICImagesRequest setImageType(String imageType) { this.imageType = imageType; return this; } public String getImageType() { return this.imageType; } public DescribeAICImagesRequest setImageUrl(String imageUrl) { this.imageUrl = imageUrl; return this; } public String getImageUrl() { return this.imageUrl; } public DescribeAICImagesRequest setMaxDate(String maxDate) { this.maxDate = maxDate; return this; } public String getMaxDate() { return this.maxDate; } public DescribeAICImagesRequest setMinDate(String minDate) { this.minDate = minDate; return this; } public String getMinDate() { return this.minDate; } public DescribeAICImagesRequest setPageNumber(String pageNumber) { this.pageNumber = pageNumber; return this; } public String getPageNumber() { return this.pageNumber; } public DescribeAICImagesRequest setPageSize(String pageSize) { this.pageSize = pageSize; return this; } public String getPageSize() { return this.pageSize; } public DescribeAICImagesRequest setStatus(String status) { this.status = status; return this; } public String getStatus() { return this.status; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy