/* * Copyright 2018-2023 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with * the License. A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR * CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions * and limitations under the License. */ package com.amazonaws.services.ec2.model; import java.io.Serializable; import javax.annotation.Generated; import com.amazonaws.AmazonWebServiceRequest; import com.amazonaws.Request; import com.amazonaws.services.ec2.model.transform.UnassignPrivateIpAddressesRequestMarshaller; /** *
* Contains the parameters for UnassignPrivateIpAddresses. *
*/ @Generated("com.amazonaws:aws-java-sdk-code-generator") public class UnassignPrivateIpAddressesRequest extends AmazonWebServiceRequest implements Serializable, Cloneable, DryRunSupportedRequest* The ID of the network interface. *
*/ private String networkInterfaceId; /** ** The secondary private IP addresses to unassign from the network interface. You can specify this option multiple * times to unassign more than one IP address. *
*/ private com.amazonaws.internal.SdkInternalList* The IPv4 prefixes to unassign from the network interface. *
*/ private com.amazonaws.internal.SdkInternalList* The ID of the network interface. *
* * @param networkInterfaceId * The ID of the network interface. */ public void setNetworkInterfaceId(String networkInterfaceId) { this.networkInterfaceId = networkInterfaceId; } /** ** The ID of the network interface. *
* * @return The ID of the network interface. */ public String getNetworkInterfaceId() { return this.networkInterfaceId; } /** ** The ID of the network interface. *
* * @param networkInterfaceId * The ID of the network interface. * @return Returns a reference to this object so that method calls can be chained together. */ public UnassignPrivateIpAddressesRequest withNetworkInterfaceId(String networkInterfaceId) { setNetworkInterfaceId(networkInterfaceId); return this; } /** ** The secondary private IP addresses to unassign from the network interface. You can specify this option multiple * times to unassign more than one IP address. *
* * @return The secondary private IP addresses to unassign from the network interface. You can specify this option * multiple times to unassign more than one IP address. */ public java.util.List* The secondary private IP addresses to unassign from the network interface. You can specify this option multiple * times to unassign more than one IP address. *
* * @param privateIpAddresses * The secondary private IP addresses to unassign from the network interface. You can specify this option * multiple times to unassign more than one IP address. */ public void setPrivateIpAddresses(java.util.Collection* The secondary private IP addresses to unassign from the network interface. You can specify this option multiple * times to unassign more than one IP address. *
** NOTE: This method appends the values to the existing list (if any). Use * {@link #setPrivateIpAddresses(java.util.Collection)} or {@link #withPrivateIpAddresses(java.util.Collection)} if * you want to override the existing values. *
* * @param privateIpAddresses * The secondary private IP addresses to unassign from the network interface. You can specify this option * multiple times to unassign more than one IP address. * @return Returns a reference to this object so that method calls can be chained together. */ public UnassignPrivateIpAddressesRequest withPrivateIpAddresses(String... privateIpAddresses) { if (this.privateIpAddresses == null) { setPrivateIpAddresses(new com.amazonaws.internal.SdkInternalList* The secondary private IP addresses to unassign from the network interface. You can specify this option multiple * times to unassign more than one IP address. *
* * @param privateIpAddresses * The secondary private IP addresses to unassign from the network interface. You can specify this option * multiple times to unassign more than one IP address. * @return Returns a reference to this object so that method calls can be chained together. */ public UnassignPrivateIpAddressesRequest withPrivateIpAddresses(java.util.Collection* The IPv4 prefixes to unassign from the network interface. *
* * @return The IPv4 prefixes to unassign from the network interface. */ public java.util.List* The IPv4 prefixes to unassign from the network interface. *
* * @param ipv4Prefixes * The IPv4 prefixes to unassign from the network interface. */ public void setIpv4Prefixes(java.util.Collection* The IPv4 prefixes to unassign from the network interface. *
** NOTE: This method appends the values to the existing list (if any). Use * {@link #setIpv4Prefixes(java.util.Collection)} or {@link #withIpv4Prefixes(java.util.Collection)} if you want to * override the existing values. *
* * @param ipv4Prefixes * The IPv4 prefixes to unassign from the network interface. * @return Returns a reference to this object so that method calls can be chained together. */ public UnassignPrivateIpAddressesRequest withIpv4Prefixes(String... ipv4Prefixes) { if (this.ipv4Prefixes == null) { setIpv4Prefixes(new com.amazonaws.internal.SdkInternalList* The IPv4 prefixes to unassign from the network interface. *
* * @param ipv4Prefixes * The IPv4 prefixes to unassign from the network interface. * @return Returns a reference to this object so that method calls can be chained together. */ public UnassignPrivateIpAddressesRequest withIpv4Prefixes(java.util.Collection