com.aliyun.iot20180120.models.GenerateDeviceNameListURLRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of iot20180120 Show documentation
Show all versions of iot20180120 Show documentation
Alibaba Cloud IoT Platform (20180120) SDK for Java
The newest version!
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.iot20180120.models;
import com.aliyun.tea.*;
public class GenerateDeviceNameListURLRequest extends TeaModel {
/**
* The ID of the instance. You can view the instance ID on the Overview page in the IoT Platform console.
*
*
* - If your instance has an ID, you must specify the ID for this parameter. Otherwise, the call fails.
* - If your instance has no Overview page or ID, you do not need to configure this parameter.
*
*
* For more information, see Overview.
*
* example:
* iot-cn-0pp1n8t****
*/
@NameInMap("IotInstanceId")
public String iotInstanceId;
public static GenerateDeviceNameListURLRequest build(java.util.Map map) throws Exception {
GenerateDeviceNameListURLRequest self = new GenerateDeviceNameListURLRequest();
return TeaModel.build(map, self);
}
public GenerateDeviceNameListURLRequest setIotInstanceId(String iotInstanceId) {
this.iotInstanceId = iotInstanceId;
return this;
}
public String getIotInstanceId() {
return this.iotInstanceId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy