com.amazonaws.services.directconnect.model.CreatePrivateVirtualInterfaceResult Maven / Gradle / Ivy
Show all versions of aws-java-sdk-directconnect Show documentation
/*
* Copyright 2012-2017 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.directconnect.model;
import java.io.Serializable;
import javax.annotation.Generated;
/**
*
* A virtual interface (VLAN) transmits the traffic between the AWS Direct Connect location and the customer.
*
*
* @see AWS API Documentation
*/
@Generated("com.amazonaws:aws-java-sdk-code-generator")
public class CreatePrivateVirtualInterfaceResult extends com.amazonaws.AmazonWebServiceResult implements Serializable,
Cloneable {
/**
*
* The AWS account that will own the new virtual interface.
*
*/
private String ownerAccount;
private String virtualInterfaceId;
private String location;
private String connectionId;
private String virtualInterfaceType;
private String virtualInterfaceName;
private Integer vlan;
private Integer asn;
/**
*
* The autonomous system number (ASN) for the Amazon side of the connection.
*
*/
private Long amazonSideAsn;
private String authKey;
private String amazonAddress;
private String customerAddress;
private String addressFamily;
private String virtualInterfaceState;
/**
*
* Information for generating the customer router configuration.
*
*/
private String customerRouterConfig;
private String virtualGatewayId;
private String directConnectGatewayId;
private com.amazonaws.internal.SdkInternalList routeFilterPrefixes;
private com.amazonaws.internal.SdkInternalList bgpPeers;
/**
*
* The AWS account that will own the new virtual interface.
*
*
* @param ownerAccount
* The AWS account that will own the new virtual interface.
*/
public void setOwnerAccount(String ownerAccount) {
this.ownerAccount = ownerAccount;
}
/**
*
* The AWS account that will own the new virtual interface.
*
*
* @return The AWS account that will own the new virtual interface.
*/
public String getOwnerAccount() {
return this.ownerAccount;
}
/**
*
* The AWS account that will own the new virtual interface.
*
*
* @param ownerAccount
* The AWS account that will own the new virtual interface.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public CreatePrivateVirtualInterfaceResult withOwnerAccount(String ownerAccount) {
setOwnerAccount(ownerAccount);
return this;
}
/**
* @param virtualInterfaceId
*/
public void setVirtualInterfaceId(String virtualInterfaceId) {
this.virtualInterfaceId = virtualInterfaceId;
}
/**
* @return
*/
public String getVirtualInterfaceId() {
return this.virtualInterfaceId;
}
/**
* @param virtualInterfaceId
* @return Returns a reference to this object so that method calls can be chained together.
*/
public CreatePrivateVirtualInterfaceResult withVirtualInterfaceId(String virtualInterfaceId) {
setVirtualInterfaceId(virtualInterfaceId);
return this;
}
/**
* @param location
*/
public void setLocation(String location) {
this.location = location;
}
/**
* @return
*/
public String getLocation() {
return this.location;
}
/**
* @param location
* @return Returns a reference to this object so that method calls can be chained together.
*/
public CreatePrivateVirtualInterfaceResult withLocation(String location) {
setLocation(location);
return this;
}
/**
* @param connectionId
*/
public void setConnectionId(String connectionId) {
this.connectionId = connectionId;
}
/**
* @return
*/
public String getConnectionId() {
return this.connectionId;
}
/**
* @param connectionId
* @return Returns a reference to this object so that method calls can be chained together.
*/
public CreatePrivateVirtualInterfaceResult withConnectionId(String connectionId) {
setConnectionId(connectionId);
return this;
}
/**
* @param virtualInterfaceType
*/
public void setVirtualInterfaceType(String virtualInterfaceType) {
this.virtualInterfaceType = virtualInterfaceType;
}
/**
* @return
*/
public String getVirtualInterfaceType() {
return this.virtualInterfaceType;
}
/**
* @param virtualInterfaceType
* @return Returns a reference to this object so that method calls can be chained together.
*/
public CreatePrivateVirtualInterfaceResult withVirtualInterfaceType(String virtualInterfaceType) {
setVirtualInterfaceType(virtualInterfaceType);
return this;
}
/**
* @param virtualInterfaceName
*/
public void setVirtualInterfaceName(String virtualInterfaceName) {
this.virtualInterfaceName = virtualInterfaceName;
}
/**
* @return
*/
public String getVirtualInterfaceName() {
return this.virtualInterfaceName;
}
/**
* @param virtualInterfaceName
* @return Returns a reference to this object so that method calls can be chained together.
*/
public CreatePrivateVirtualInterfaceResult withVirtualInterfaceName(String virtualInterfaceName) {
setVirtualInterfaceName(virtualInterfaceName);
return this;
}
/**
* @param vlan
*/
public void setVlan(Integer vlan) {
this.vlan = vlan;
}
/**
* @return
*/
public Integer getVlan() {
return this.vlan;
}
/**
* @param vlan
* @return Returns a reference to this object so that method calls can be chained together.
*/
public CreatePrivateVirtualInterfaceResult withVlan(Integer vlan) {
setVlan(vlan);
return this;
}
/**
* @param asn
*/
public void setAsn(Integer asn) {
this.asn = asn;
}
/**
* @return
*/
public Integer getAsn() {
return this.asn;
}
/**
* @param asn
* @return Returns a reference to this object so that method calls can be chained together.
*/
public CreatePrivateVirtualInterfaceResult withAsn(Integer asn) {
setAsn(asn);
return this;
}
/**
*
* The autonomous system number (ASN) for the Amazon side of the connection.
*
*
* @param amazonSideAsn
* The autonomous system number (ASN) for the Amazon side of the connection.
*/
public void setAmazonSideAsn(Long amazonSideAsn) {
this.amazonSideAsn = amazonSideAsn;
}
/**
*
* The autonomous system number (ASN) for the Amazon side of the connection.
*
*
* @return The autonomous system number (ASN) for the Amazon side of the connection.
*/
public Long getAmazonSideAsn() {
return this.amazonSideAsn;
}
/**
*
* The autonomous system number (ASN) for the Amazon side of the connection.
*
*
* @param amazonSideAsn
* The autonomous system number (ASN) for the Amazon side of the connection.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public CreatePrivateVirtualInterfaceResult withAmazonSideAsn(Long amazonSideAsn) {
setAmazonSideAsn(amazonSideAsn);
return this;
}
/**
* @param authKey
*/
public void setAuthKey(String authKey) {
this.authKey = authKey;
}
/**
* @return
*/
public String getAuthKey() {
return this.authKey;
}
/**
* @param authKey
* @return Returns a reference to this object so that method calls can be chained together.
*/
public CreatePrivateVirtualInterfaceResult withAuthKey(String authKey) {
setAuthKey(authKey);
return this;
}
/**
* @param amazonAddress
*/
public void setAmazonAddress(String amazonAddress) {
this.amazonAddress = amazonAddress;
}
/**
* @return
*/
public String getAmazonAddress() {
return this.amazonAddress;
}
/**
* @param amazonAddress
* @return Returns a reference to this object so that method calls can be chained together.
*/
public CreatePrivateVirtualInterfaceResult withAmazonAddress(String amazonAddress) {
setAmazonAddress(amazonAddress);
return this;
}
/**
* @param customerAddress
*/
public void setCustomerAddress(String customerAddress) {
this.customerAddress = customerAddress;
}
/**
* @return
*/
public String getCustomerAddress() {
return this.customerAddress;
}
/**
* @param customerAddress
* @return Returns a reference to this object so that method calls can be chained together.
*/
public CreatePrivateVirtualInterfaceResult withCustomerAddress(String customerAddress) {
setCustomerAddress(customerAddress);
return this;
}
/**
* @param addressFamily
* @see AddressFamily
*/
public void setAddressFamily(String addressFamily) {
this.addressFamily = addressFamily;
}
/**
* @return
* @see AddressFamily
*/
public String getAddressFamily() {
return this.addressFamily;
}
/**
* @param addressFamily
* @return Returns a reference to this object so that method calls can be chained together.
* @see AddressFamily
*/
public CreatePrivateVirtualInterfaceResult withAddressFamily(String addressFamily) {
setAddressFamily(addressFamily);
return this;
}
/**
* @param addressFamily
* @see AddressFamily
*/
public void setAddressFamily(AddressFamily addressFamily) {
withAddressFamily(addressFamily);
}
/**
* @param addressFamily
* @return Returns a reference to this object so that method calls can be chained together.
* @see AddressFamily
*/
public CreatePrivateVirtualInterfaceResult withAddressFamily(AddressFamily addressFamily) {
this.addressFamily = addressFamily.toString();
return this;
}
/**
* @param virtualInterfaceState
* @see VirtualInterfaceState
*/
public void setVirtualInterfaceState(String virtualInterfaceState) {
this.virtualInterfaceState = virtualInterfaceState;
}
/**
* @return
* @see VirtualInterfaceState
*/
public String getVirtualInterfaceState() {
return this.virtualInterfaceState;
}
/**
* @param virtualInterfaceState
* @return Returns a reference to this object so that method calls can be chained together.
* @see VirtualInterfaceState
*/
public CreatePrivateVirtualInterfaceResult withVirtualInterfaceState(String virtualInterfaceState) {
setVirtualInterfaceState(virtualInterfaceState);
return this;
}
/**
* @param virtualInterfaceState
* @see VirtualInterfaceState
*/
public void setVirtualInterfaceState(VirtualInterfaceState virtualInterfaceState) {
withVirtualInterfaceState(virtualInterfaceState);
}
/**
* @param virtualInterfaceState
* @return Returns a reference to this object so that method calls can be chained together.
* @see VirtualInterfaceState
*/
public CreatePrivateVirtualInterfaceResult withVirtualInterfaceState(VirtualInterfaceState virtualInterfaceState) {
this.virtualInterfaceState = virtualInterfaceState.toString();
return this;
}
/**
*
* Information for generating the customer router configuration.
*
*
* @param customerRouterConfig
* Information for generating the customer router configuration.
*/
public void setCustomerRouterConfig(String customerRouterConfig) {
this.customerRouterConfig = customerRouterConfig;
}
/**
*
* Information for generating the customer router configuration.
*
*
* @return Information for generating the customer router configuration.
*/
public String getCustomerRouterConfig() {
return this.customerRouterConfig;
}
/**
*
* Information for generating the customer router configuration.
*
*
* @param customerRouterConfig
* Information for generating the customer router configuration.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public CreatePrivateVirtualInterfaceResult withCustomerRouterConfig(String customerRouterConfig) {
setCustomerRouterConfig(customerRouterConfig);
return this;
}
/**
* @param virtualGatewayId
*/
public void setVirtualGatewayId(String virtualGatewayId) {
this.virtualGatewayId = virtualGatewayId;
}
/**
* @return
*/
public String getVirtualGatewayId() {
return this.virtualGatewayId;
}
/**
* @param virtualGatewayId
* @return Returns a reference to this object so that method calls can be chained together.
*/
public CreatePrivateVirtualInterfaceResult withVirtualGatewayId(String virtualGatewayId) {
setVirtualGatewayId(virtualGatewayId);
return this;
}
/**
* @param directConnectGatewayId
*/
public void setDirectConnectGatewayId(String directConnectGatewayId) {
this.directConnectGatewayId = directConnectGatewayId;
}
/**
* @return
*/
public String getDirectConnectGatewayId() {
return this.directConnectGatewayId;
}
/**
* @param directConnectGatewayId
* @return Returns a reference to this object so that method calls can be chained together.
*/
public CreatePrivateVirtualInterfaceResult withDirectConnectGatewayId(String directConnectGatewayId) {
setDirectConnectGatewayId(directConnectGatewayId);
return this;
}
/**
* @return
*/
public java.util.List getRouteFilterPrefixes() {
if (routeFilterPrefixes == null) {
routeFilterPrefixes = new com.amazonaws.internal.SdkInternalList();
}
return routeFilterPrefixes;
}
/**
* @param routeFilterPrefixes
*/
public void setRouteFilterPrefixes(java.util.Collection routeFilterPrefixes) {
if (routeFilterPrefixes == null) {
this.routeFilterPrefixes = null;
return;
}
this.routeFilterPrefixes = new com.amazonaws.internal.SdkInternalList(routeFilterPrefixes);
}
/**
*
* NOTE: This method appends the values to the existing list (if any). Use
* {@link #setRouteFilterPrefixes(java.util.Collection)} or {@link #withRouteFilterPrefixes(java.util.Collection)}
* if you want to override the existing values.
*
*
* @param routeFilterPrefixes
* @return Returns a reference to this object so that method calls can be chained together.
*/
public CreatePrivateVirtualInterfaceResult withRouteFilterPrefixes(RouteFilterPrefix... routeFilterPrefixes) {
if (this.routeFilterPrefixes == null) {
setRouteFilterPrefixes(new com.amazonaws.internal.SdkInternalList(routeFilterPrefixes.length));
}
for (RouteFilterPrefix ele : routeFilterPrefixes) {
this.routeFilterPrefixes.add(ele);
}
return this;
}
/**
* @param routeFilterPrefixes
* @return Returns a reference to this object so that method calls can be chained together.
*/
public CreatePrivateVirtualInterfaceResult withRouteFilterPrefixes(java.util.Collection routeFilterPrefixes) {
setRouteFilterPrefixes(routeFilterPrefixes);
return this;
}
/**
* @return
*/
public java.util.List getBgpPeers() {
if (bgpPeers == null) {
bgpPeers = new com.amazonaws.internal.SdkInternalList();
}
return bgpPeers;
}
/**
* @param bgpPeers
*/
public void setBgpPeers(java.util.Collection bgpPeers) {
if (bgpPeers == null) {
this.bgpPeers = null;
return;
}
this.bgpPeers = new com.amazonaws.internal.SdkInternalList(bgpPeers);
}
/**
*
* NOTE: This method appends the values to the existing list (if any). Use
* {@link #setBgpPeers(java.util.Collection)} or {@link #withBgpPeers(java.util.Collection)} if you want to override
* the existing values.
*
*
* @param bgpPeers
* @return Returns a reference to this object so that method calls can be chained together.
*/
public CreatePrivateVirtualInterfaceResult withBgpPeers(BGPPeer... bgpPeers) {
if (this.bgpPeers == null) {
setBgpPeers(new com.amazonaws.internal.SdkInternalList(bgpPeers.length));
}
for (BGPPeer ele : bgpPeers) {
this.bgpPeers.add(ele);
}
return this;
}
/**
* @param bgpPeers
* @return Returns a reference to this object so that method calls can be chained together.
*/
public CreatePrivateVirtualInterfaceResult withBgpPeers(java.util.Collection bgpPeers) {
setBgpPeers(bgpPeers);
return this;
}
/**
* Returns a string representation of this object; useful for testing and debugging.
*
* @return A string representation of this object.
*
* @see java.lang.Object#toString()
*/
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("{");
if (getOwnerAccount() != null)
sb.append("OwnerAccount: ").append(getOwnerAccount()).append(",");
if (getVirtualInterfaceId() != null)
sb.append("VirtualInterfaceId: ").append(getVirtualInterfaceId()).append(",");
if (getLocation() != null)
sb.append("Location: ").append(getLocation()).append(",");
if (getConnectionId() != null)
sb.append("ConnectionId: ").append(getConnectionId()).append(",");
if (getVirtualInterfaceType() != null)
sb.append("VirtualInterfaceType: ").append(getVirtualInterfaceType()).append(",");
if (getVirtualInterfaceName() != null)
sb.append("VirtualInterfaceName: ").append(getVirtualInterfaceName()).append(",");
if (getVlan() != null)
sb.append("Vlan: ").append(getVlan()).append(",");
if (getAsn() != null)
sb.append("Asn: ").append(getAsn()).append(",");
if (getAmazonSideAsn() != null)
sb.append("AmazonSideAsn: ").append(getAmazonSideAsn()).append(",");
if (getAuthKey() != null)
sb.append("AuthKey: ").append(getAuthKey()).append(",");
if (getAmazonAddress() != null)
sb.append("AmazonAddress: ").append(getAmazonAddress()).append(",");
if (getCustomerAddress() != null)
sb.append("CustomerAddress: ").append(getCustomerAddress()).append(",");
if (getAddressFamily() != null)
sb.append("AddressFamily: ").append(getAddressFamily()).append(",");
if (getVirtualInterfaceState() != null)
sb.append("VirtualInterfaceState: ").append(getVirtualInterfaceState()).append(",");
if (getCustomerRouterConfig() != null)
sb.append("CustomerRouterConfig: ").append(getCustomerRouterConfig()).append(",");
if (getVirtualGatewayId() != null)
sb.append("VirtualGatewayId: ").append(getVirtualGatewayId()).append(",");
if (getDirectConnectGatewayId() != null)
sb.append("DirectConnectGatewayId: ").append(getDirectConnectGatewayId()).append(",");
if (getRouteFilterPrefixes() != null)
sb.append("RouteFilterPrefixes: ").append(getRouteFilterPrefixes()).append(",");
if (getBgpPeers() != null)
sb.append("BgpPeers: ").append(getBgpPeers());
sb.append("}");
return sb.toString();
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (obj instanceof CreatePrivateVirtualInterfaceResult == false)
return false;
CreatePrivateVirtualInterfaceResult other = (CreatePrivateVirtualInterfaceResult) obj;
if (other.getOwnerAccount() == null ^ this.getOwnerAccount() == null)
return false;
if (other.getOwnerAccount() != null && other.getOwnerAccount().equals(this.getOwnerAccount()) == false)
return false;
if (other.getVirtualInterfaceId() == null ^ this.getVirtualInterfaceId() == null)
return false;
if (other.getVirtualInterfaceId() != null && other.getVirtualInterfaceId().equals(this.getVirtualInterfaceId()) == false)
return false;
if (other.getLocation() == null ^ this.getLocation() == null)
return false;
if (other.getLocation() != null && other.getLocation().equals(this.getLocation()) == false)
return false;
if (other.getConnectionId() == null ^ this.getConnectionId() == null)
return false;
if (other.getConnectionId() != null && other.getConnectionId().equals(this.getConnectionId()) == false)
return false;
if (other.getVirtualInterfaceType() == null ^ this.getVirtualInterfaceType() == null)
return false;
if (other.getVirtualInterfaceType() != null && other.getVirtualInterfaceType().equals(this.getVirtualInterfaceType()) == false)
return false;
if (other.getVirtualInterfaceName() == null ^ this.getVirtualInterfaceName() == null)
return false;
if (other.getVirtualInterfaceName() != null && other.getVirtualInterfaceName().equals(this.getVirtualInterfaceName()) == false)
return false;
if (other.getVlan() == null ^ this.getVlan() == null)
return false;
if (other.getVlan() != null && other.getVlan().equals(this.getVlan()) == false)
return false;
if (other.getAsn() == null ^ this.getAsn() == null)
return false;
if (other.getAsn() != null && other.getAsn().equals(this.getAsn()) == false)
return false;
if (other.getAmazonSideAsn() == null ^ this.getAmazonSideAsn() == null)
return false;
if (other.getAmazonSideAsn() != null && other.getAmazonSideAsn().equals(this.getAmazonSideAsn()) == false)
return false;
if (other.getAuthKey() == null ^ this.getAuthKey() == null)
return false;
if (other.getAuthKey() != null && other.getAuthKey().equals(this.getAuthKey()) == false)
return false;
if (other.getAmazonAddress() == null ^ this.getAmazonAddress() == null)
return false;
if (other.getAmazonAddress() != null && other.getAmazonAddress().equals(this.getAmazonAddress()) == false)
return false;
if (other.getCustomerAddress() == null ^ this.getCustomerAddress() == null)
return false;
if (other.getCustomerAddress() != null && other.getCustomerAddress().equals(this.getCustomerAddress()) == false)
return false;
if (other.getAddressFamily() == null ^ this.getAddressFamily() == null)
return false;
if (other.getAddressFamily() != null && other.getAddressFamily().equals(this.getAddressFamily()) == false)
return false;
if (other.getVirtualInterfaceState() == null ^ this.getVirtualInterfaceState() == null)
return false;
if (other.getVirtualInterfaceState() != null && other.getVirtualInterfaceState().equals(this.getVirtualInterfaceState()) == false)
return false;
if (other.getCustomerRouterConfig() == null ^ this.getCustomerRouterConfig() == null)
return false;
if (other.getCustomerRouterConfig() != null && other.getCustomerRouterConfig().equals(this.getCustomerRouterConfig()) == false)
return false;
if (other.getVirtualGatewayId() == null ^ this.getVirtualGatewayId() == null)
return false;
if (other.getVirtualGatewayId() != null && other.getVirtualGatewayId().equals(this.getVirtualGatewayId()) == false)
return false;
if (other.getDirectConnectGatewayId() == null ^ this.getDirectConnectGatewayId() == null)
return false;
if (other.getDirectConnectGatewayId() != null && other.getDirectConnectGatewayId().equals(this.getDirectConnectGatewayId()) == false)
return false;
if (other.getRouteFilterPrefixes() == null ^ this.getRouteFilterPrefixes() == null)
return false;
if (other.getRouteFilterPrefixes() != null && other.getRouteFilterPrefixes().equals(this.getRouteFilterPrefixes()) == false)
return false;
if (other.getBgpPeers() == null ^ this.getBgpPeers() == null)
return false;
if (other.getBgpPeers() != null && other.getBgpPeers().equals(this.getBgpPeers()) == false)
return false;
return true;
}
@Override
public int hashCode() {
final int prime = 31;
int hashCode = 1;
hashCode = prime * hashCode + ((getOwnerAccount() == null) ? 0 : getOwnerAccount().hashCode());
hashCode = prime * hashCode + ((getVirtualInterfaceId() == null) ? 0 : getVirtualInterfaceId().hashCode());
hashCode = prime * hashCode + ((getLocation() == null) ? 0 : getLocation().hashCode());
hashCode = prime * hashCode + ((getConnectionId() == null) ? 0 : getConnectionId().hashCode());
hashCode = prime * hashCode + ((getVirtualInterfaceType() == null) ? 0 : getVirtualInterfaceType().hashCode());
hashCode = prime * hashCode + ((getVirtualInterfaceName() == null) ? 0 : getVirtualInterfaceName().hashCode());
hashCode = prime * hashCode + ((getVlan() == null) ? 0 : getVlan().hashCode());
hashCode = prime * hashCode + ((getAsn() == null) ? 0 : getAsn().hashCode());
hashCode = prime * hashCode + ((getAmazonSideAsn() == null) ? 0 : getAmazonSideAsn().hashCode());
hashCode = prime * hashCode + ((getAuthKey() == null) ? 0 : getAuthKey().hashCode());
hashCode = prime * hashCode + ((getAmazonAddress() == null) ? 0 : getAmazonAddress().hashCode());
hashCode = prime * hashCode + ((getCustomerAddress() == null) ? 0 : getCustomerAddress().hashCode());
hashCode = prime * hashCode + ((getAddressFamily() == null) ? 0 : getAddressFamily().hashCode());
hashCode = prime * hashCode + ((getVirtualInterfaceState() == null) ? 0 : getVirtualInterfaceState().hashCode());
hashCode = prime * hashCode + ((getCustomerRouterConfig() == null) ? 0 : getCustomerRouterConfig().hashCode());
hashCode = prime * hashCode + ((getVirtualGatewayId() == null) ? 0 : getVirtualGatewayId().hashCode());
hashCode = prime * hashCode + ((getDirectConnectGatewayId() == null) ? 0 : getDirectConnectGatewayId().hashCode());
hashCode = prime * hashCode + ((getRouteFilterPrefixes() == null) ? 0 : getRouteFilterPrefixes().hashCode());
hashCode = prime * hashCode + ((getBgpPeers() == null) ? 0 : getBgpPeers().hashCode());
return hashCode;
}
@Override
public CreatePrivateVirtualInterfaceResult clone() {
try {
return (CreatePrivateVirtualInterfaceResult) super.clone();
} catch (CloneNotSupportedException e) {
throw new IllegalStateException("Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e);
}
}
}