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

com.aliyun.iot20180120.models.QueryEdgeInstanceDeviceRequest Maven / Gradle / Ivy

The newest version!
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.iot20180120.models;

import com.aliyun.tea.*;

public class QueryEdgeInstanceDeviceRequest extends TeaModel {
    /**
     * 

The number of the page to return. Pages start from Page 1.

*

This parameter is required.

* * example: *

1

*/ @NameInMap("CurrentPage") public Integer currentPage; /** *

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 that 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: *

tG7sKuOQ7ylb7qS4****

*/ @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; /** *

The number of entries to return on each page. Valid values: 1 to 30. Default value: 10.

*

This parameter is required.

* * example: *

15

*/ @NameInMap("PageSize") public Integer pageSize; public static QueryEdgeInstanceDeviceRequest build(java.util.Map map) throws Exception { QueryEdgeInstanceDeviceRequest self = new QueryEdgeInstanceDeviceRequest(); return TeaModel.build(map, self); } public QueryEdgeInstanceDeviceRequest setCurrentPage(Integer currentPage) { this.currentPage = currentPage; return this; } public Integer getCurrentPage() { return this.currentPage; } public QueryEdgeInstanceDeviceRequest setInstanceId(String instanceId) { this.instanceId = instanceId; return this; } public String getInstanceId() { return this.instanceId; } public QueryEdgeInstanceDeviceRequest setIotInstanceId(String iotInstanceId) { this.iotInstanceId = iotInstanceId; return this; } public String getIotInstanceId() { return this.iotInstanceId; } public QueryEdgeInstanceDeviceRequest setPageSize(Integer pageSize) { this.pageSize = pageSize; return this; } public Integer getPageSize() { return this.pageSize; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy