
com.aliyun.arms20190808.models.DeleteAlertRulesRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of arms20190808 Show documentation
Show all versions of arms20190808 Show documentation
Alibaba Cloud Application Real-Time Monitoring Service (20190808) SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.arms20190808.models;
import com.aliyun.tea.*;
public class DeleteAlertRulesRequest extends TeaModel {
/**
* The IDs of the alert rules that you want to delete. The value is a JSON array, for example, [123, 234]
. You can call the SearchAlertRules operation and view the Id
parameter in the response to obtain the alert rule ID. For more information, see SearchAlertRules.
* This parameter is required.
*
* example:
* [123, 234]
*/
@NameInMap("AlertIds")
public String alertIds;
/**
* The region ID. Default value: cn-hangzhou
.
* This parameter is required.
*
* example:
* cn-hangzhou
*/
@NameInMap("RegionId")
public String regionId;
public static DeleteAlertRulesRequest build(java.util.Map map) throws Exception {
DeleteAlertRulesRequest self = new DeleteAlertRulesRequest();
return TeaModel.build(map, self);
}
public DeleteAlertRulesRequest setAlertIds(String alertIds) {
this.alertIds = alertIds;
return this;
}
public String getAlertIds() {
return this.alertIds;
}
public DeleteAlertRulesRequest setRegionId(String regionId) {
this.regionId = regionId;
return this;
}
public String getRegionId() {
return this.regionId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy