com.aliyun.iot20180120.models.GetEdgeInstanceRequest 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 GetEdgeInstanceRequest extends TeaModel {
/**
* The ID of the edge instance. To obtain the instance ID, perform the following steps: Log on to the Link IoT Edge console. On the Edge Instances page, move the pointer over the name of the edge instance whose detailed information you want to query and obtain the instance ID.
* You can also call the QueryEdgeInstance operation to query the instance ID.
* This parameter is required.
*
* example:
* F3APY0tPLhmgGtx0****
*/
@NameInMap("InstanceId")
public String instanceId;
/**
* The ID of the Internet of Things (IoT) service instance. This parameter is not required for the public instance but required for Enterprise Edition instances.
*
* example:
* iot_instc_pu****_c*-v64********
*/
@NameInMap("IotInstanceId")
public String iotInstanceId;
public static GetEdgeInstanceRequest build(java.util.Map map) throws Exception {
GetEdgeInstanceRequest self = new GetEdgeInstanceRequest();
return TeaModel.build(map, self);
}
public GetEdgeInstanceRequest setInstanceId(String instanceId) {
this.instanceId = instanceId;
return this;
}
public String getInstanceId() {
return this.instanceId;
}
public GetEdgeInstanceRequest setIotInstanceId(String iotInstanceId) {
this.iotInstanceId = iotInstanceId;
return this;
}
public String getIotInstanceId() {
return this.iotInstanceId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy