com.aliyun.iot20180120.models.ListRuleActionsRequest 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 ListRuleActionsRequest extends TeaModel {
/**
* The ID of the instance. On the Overview page in the IoT Platform console, you can view the ID of the instance.
*
*
* - If your instance has an ID, you must specify the ID for this parameter. Otherwise, the call fails.
* - If the Overview page or instance ID is not displayed in the IoT Platform console, you do not need to configure this parameter.
*
*
* For more information about the instance, see Overview.
*
* example:
* iot_instc_pu****_c*-v64********
*/
@NameInMap("IotInstanceId")
public String iotInstanceId;
/**
* The ID of the rule.
* You can log on to the IoT Platform console and go to the details page of the instance that you want to manage. On the instance details page, choose Rules Engine > Data Forwarding to obtain the rule ID. Alternatively, you can call the ListRule operation to view the value of the Id parameter in the response.
* This parameter is required.
*
* example:
* 10000
*/
@NameInMap("RuleId")
public Long ruleId;
public static ListRuleActionsRequest build(java.util.Map map) throws Exception {
ListRuleActionsRequest self = new ListRuleActionsRequest();
return TeaModel.build(map, self);
}
public ListRuleActionsRequest setIotInstanceId(String iotInstanceId) {
this.iotInstanceId = iotInstanceId;
return this;
}
public String getIotInstanceId() {
return this.iotInstanceId;
}
public ListRuleActionsRequest setRuleId(Long ruleId) {
this.ruleId = ruleId;
return this;
}
public Long getRuleId() {
return this.ruleId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy