com.aliyun.ess20220222.models.EnableScalingGroupResponseBody 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 EnableScalingGroupResponseBody extends TeaModel {
/**
* The ID of the request.
*
* example:
* 473469C7-AA6F-4DC5-B3DB-A3DC0DE3****
*/
@NameInMap("RequestId")
public String requestId;
public static EnableScalingGroupResponseBody build(java.util.Map map) throws Exception {
EnableScalingGroupResponseBody self = new EnableScalingGroupResponseBody();
return TeaModel.build(map, self);
}
public EnableScalingGroupResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
}