com.aliyun.ess20220222.models.CreateScalingGroupResponse 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 CreateScalingGroupResponse extends TeaModel {
@NameInMap("headers")
public java.util.Map headers;
@NameInMap("statusCode")
public Integer statusCode;
@NameInMap("body")
public CreateScalingGroupResponseBody body;
public static CreateScalingGroupResponse build(java.util.Map map) throws Exception {
CreateScalingGroupResponse self = new CreateScalingGroupResponse();
return TeaModel.build(map, self);
}
public CreateScalingGroupResponse setHeaders(java.util.Map headers) {
this.headers = headers;
return this;
}
public java.util.Map getHeaders() {
return this.headers;
}
public CreateScalingGroupResponse setStatusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
public Integer getStatusCode() {
return this.statusCode;
}
public CreateScalingGroupResponse setBody(CreateScalingGroupResponseBody body) {
this.body = body;
return this;
}
public CreateScalingGroupResponseBody getBody() {
return this.body;
}
}