com.aliyun.cs20151215.models.StartAlertRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cs20151215 Show documentation
Show all versions of cs20151215 Show documentation
Alibaba Cloud CS (20151215) SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.cs20151215.models;
import com.aliyun.tea.*;
public class StartAlertRequest extends TeaModel {
/**
* The name of the alert rule set to be enabled.
*/
@NameInMap("alert_rule_group_name")
public String alertRuleGroupName;
/**
* The name of the alert rule to be enabled. If you do not specify an alert rule name, the alert rule set is enabled.
*/
@NameInMap("alert_rule_name")
public String alertRuleName;
public static StartAlertRequest build(java.util.Map map) throws Exception {
StartAlertRequest self = new StartAlertRequest();
return TeaModel.build(map, self);
}
public StartAlertRequest setAlertRuleGroupName(String alertRuleGroupName) {
this.alertRuleGroupName = alertRuleGroupName;
return this;
}
public String getAlertRuleGroupName() {
return this.alertRuleGroupName;
}
public StartAlertRequest setAlertRuleName(String alertRuleName) {
this.alertRuleName = alertRuleName;
return this;
}
public String getAlertRuleName() {
return this.alertRuleName;
}
}