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

com.aliyun.cs20151215.models.StartAlertRequest Maven / Gradle / Ivy

There is a newer version: 4.8.0
Show newest version
// 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; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy