com.aliyun.ess20220222.models.DescribeAlarmsResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ess20220222 Show documentation
Show all versions of ess20220222 Show documentation
Alibaba Cloud Auto Scaling (20220222) SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.ess20220222.models;
import com.aliyun.tea.*;
public class DescribeAlarmsResponse extends TeaModel {
@NameInMap("headers")
public java.util.Map headers;
@NameInMap("statusCode")
public Integer statusCode;
@NameInMap("body")
public DescribeAlarmsResponseBody body;
public static DescribeAlarmsResponse build(java.util.Map map) throws Exception {
DescribeAlarmsResponse self = new DescribeAlarmsResponse();
return TeaModel.build(map, self);
}
public DescribeAlarmsResponse setHeaders(java.util.Map headers) {
this.headers = headers;
return this;
}
public java.util.Map getHeaders() {
return this.headers;
}
public DescribeAlarmsResponse setStatusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
public Integer getStatusCode() {
return this.statusCode;
}
public DescribeAlarmsResponse setBody(DescribeAlarmsResponseBody body) {
this.body = body;
return this;
}
public DescribeAlarmsResponseBody getBody() {
return this.body;
}
}