com.aliyun.ens20171110.models.DescribeImageInfosRequest 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 DescribeImageInfosRequest extends TeaModel {
/**
* The operating system (OS). You can specify only one OS in a request. If you do not specify a value for this parameter, images for all supported OSs are queried. Valid values:
*
* - linux
* - windows
*
*
* example:
* linux
*/
@NameInMap("OsType")
public String osType;
public static DescribeImageInfosRequest build(java.util.Map map) throws Exception {
DescribeImageInfosRequest self = new DescribeImageInfosRequest();
return TeaModel.build(map, self);
}
public DescribeImageInfosRequest setOsType(String osType) {
this.osType = osType;
return this;
}
public String getOsType() {
return this.osType;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy