com.aliyun.arms20190808.models.UpdateAlertRuleResponseBody 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 UpdateAlertRuleResponseBody extends TeaModel {
/**
* The ID of the alert rule.
*
* example:
* 1234567
*/
@NameInMap("AlertId")
public Long alertId;
/**
* The struct returned.
*
* example:
*
*
*
*/
@NameInMap("Data")
public String data;
/**
* The ID of the request.
*
* example:
* 6A9AEA84-7186-4D8D-B498-4585C6A2****
*/
@NameInMap("RequestId")
public String requestId;
public static UpdateAlertRuleResponseBody build(java.util.Map map) throws Exception {
UpdateAlertRuleResponseBody self = new UpdateAlertRuleResponseBody();
return TeaModel.build(map, self);
}
public UpdateAlertRuleResponseBody setAlertId(Long alertId) {
this.alertId = alertId;
return this;
}
public Long getAlertId() {
return this.alertId;
}
public UpdateAlertRuleResponseBody setData(String data) {
this.data = data;
return this;
}
public String getData() {
return this.data;
}
public UpdateAlertRuleResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy