com.aliyun.ens20171110.models.UnAssociateEnsEipAddressRequest Maven / Gradle / Ivy
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.ens20171110.models;
import com.aliyun.tea.*;
public class UnAssociateEnsEipAddressRequest extends TeaModel {
/**
* The ID of the EIP.
* This parameter is required.
*
* example:
* eip-5sqa431nx3vee8heqxfxp****
*/
@NameInMap("AllocationId")
public String allocationId;
public static UnAssociateEnsEipAddressRequest build(java.util.Map map) throws Exception {
UnAssociateEnsEipAddressRequest self = new UnAssociateEnsEipAddressRequest();
return TeaModel.build(map, self);
}
public UnAssociateEnsEipAddressRequest setAllocationId(String allocationId) {
this.allocationId = allocationId;
return this;
}
public String getAllocationId() {
return this.allocationId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy