com.aliyun.ess20220222.models.AttachAlbServerGroupsResponseBody Maven / Gradle / Ivy
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.ess20220222.models;
import com.aliyun.tea.*;
public class AttachAlbServerGroupsResponseBody extends TeaModel {
/**
* The ID of the request.
*
* example:
* 473469C7-AA6F-4DC5-B3DB-A3DC0DE3****
*/
@NameInMap("RequestId")
public String requestId;
/**
* The ID of the scaling activity. During the scaling activity, the ALB server group is attached to the scaling group and the existing ECS instances or elastic container instances in the scaling group are added to the ALB server group.
*
* This parameter is returned only if you set ForceAttach
to true
.
*
*
* example:
* asa-2ze6wxj8vsohn6j9****
*/
@NameInMap("ScalingActivityId")
public String scalingActivityId;
public static AttachAlbServerGroupsResponseBody build(java.util.Map map) throws Exception {
AttachAlbServerGroupsResponseBody self = new AttachAlbServerGroupsResponseBody();
return TeaModel.build(map, self);
}
public AttachAlbServerGroupsResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public AttachAlbServerGroupsResponseBody setScalingActivityId(String scalingActivityId) {
this.scalingActivityId = scalingActivityId;
return this;
}
public String getScalingActivityId() {
return this.scalingActivityId;
}
}