com.aliyun.ens20171110.models.DescribeSelfImagesRequest 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 DescribeSelfImagesRequest extends TeaModel {
/**
* The ID of the image. Fuzzy search is supported.
*
* example:
* centos_6_08_64_20G_a****
*/
@NameInMap("ImageId")
public String imageId;
/**
* The name of the image. Fuzzy search is supported.
*
* example:
* centos_6_08_64_20G_a****
*/
@NameInMap("ImageName")
public String imageName;
/**
* The page number to return. Pages start from page 1. 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 snapshot.
*
* example:
* sp-5xg63dmojc1oaa3pk****
*/
@NameInMap("SnapshotId")
public String snapshotId;
public static DescribeSelfImagesRequest build(java.util.Map map) throws Exception {
DescribeSelfImagesRequest self = new DescribeSelfImagesRequest();
return TeaModel.build(map, self);
}
public DescribeSelfImagesRequest setImageId(String imageId) {
this.imageId = imageId;
return this;
}
public String getImageId() {
return this.imageId;
}
public DescribeSelfImagesRequest setImageName(String imageName) {
this.imageName = imageName;
return this;
}
public String getImageName() {
return this.imageName;
}
public DescribeSelfImagesRequest setPageNumber(Integer pageNumber) {
this.pageNumber = pageNumber;
return this;
}
public Integer getPageNumber() {
return this.pageNumber;
}
public DescribeSelfImagesRequest setPageSize(Integer pageSize) {
this.pageSize = pageSize;
return this;
}
public Integer getPageSize() {
return this.pageSize;
}
public DescribeSelfImagesRequest setSnapshotId(String snapshotId) {
this.snapshotId = snapshotId;
return this;
}
public String getSnapshotId() {
return this.snapshotId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy