com.aliyun.vpc20160428.models.AllocateEipSegmentAddressResponseBody Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of vpc20160428 Show documentation
Show all versions of vpc20160428 Show documentation
Alibaba Cloud Virtual Private Cloud (20160428) SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.vpc20160428.models;
import com.aliyun.tea.*;
public class AllocateEipSegmentAddressResponseBody extends TeaModel {
/**
* The ID of the contiguous EIP group.
*/
@NameInMap("EipSegmentInstanceId")
public String eipSegmentInstanceId;
/**
* The request ID.
*/
@NameInMap("RequestId")
public String requestId;
public static AllocateEipSegmentAddressResponseBody build(java.util.Map map) throws Exception {
AllocateEipSegmentAddressResponseBody self = new AllocateEipSegmentAddressResponseBody();
return TeaModel.build(map, self);
}
public AllocateEipSegmentAddressResponseBody setEipSegmentInstanceId(String eipSegmentInstanceId) {
this.eipSegmentInstanceId = eipSegmentInstanceId;
return this;
}
public String getEipSegmentInstanceId() {
return this.eipSegmentInstanceId;
}
public AllocateEipSegmentAddressResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
}