com.aliyun.ess20220222.models.ApplyScalingGroupResponse 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
The newest version!
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.ess20220222.models;
import com.aliyun.tea.*;
public class ApplyScalingGroupResponse extends TeaModel {
@NameInMap("headers")
public java.util.Map headers;
@NameInMap("statusCode")
public Integer statusCode;
@NameInMap("body")
public ApplyScalingGroupResponseBody body;
public static ApplyScalingGroupResponse build(java.util.Map map) throws Exception {
ApplyScalingGroupResponse self = new ApplyScalingGroupResponse();
return TeaModel.build(map, self);
}
public ApplyScalingGroupResponse setHeaders(java.util.Map headers) {
this.headers = headers;
return this;
}
public java.util.Map getHeaders() {
return this.headers;
}
public ApplyScalingGroupResponse setStatusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
public Integer getStatusCode() {
return this.statusCode;
}
public ApplyScalingGroupResponse setBody(ApplyScalingGroupResponseBody body) {
this.body = body;
return this;
}
public ApplyScalingGroupResponseBody getBody() {
return this.body;
}
}