com.amazonaws.services.networkmanager.model.GetNetworkRoutesResult Maven / Gradle / Ivy
Show all versions of aws-java-sdk-networkmanager Show documentation
/*
* Copyright 2017-2022 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.networkmanager.model;
import java.io.Serializable;
import javax.annotation.Generated;
/**
*
* @see AWS
* API Documentation
*/
@Generated("com.amazonaws:aws-java-sdk-code-generator")
public class GetNetworkRoutesResult extends com.amazonaws.AmazonWebServiceResult implements Serializable, Cloneable {
/**
*
* The ARN of the route table.
*
*/
private String routeTableArn;
/**
*
* Describes a core network segment edge.
*
*/
private CoreNetworkSegmentEdgeIdentifier coreNetworkSegmentEdge;
/**
*
* The route table type.
*
*/
private String routeTableType;
/**
*
* The route table creation time.
*
*/
private java.util.Date routeTableTimestamp;
/**
*
* The network routes.
*
*/
private java.util.List networkRoutes;
/**
*
* The ARN of the route table.
*
*
* @param routeTableArn
* The ARN of the route table.
*/
public void setRouteTableArn(String routeTableArn) {
this.routeTableArn = routeTableArn;
}
/**
*
* The ARN of the route table.
*
*
* @return The ARN of the route table.
*/
public String getRouteTableArn() {
return this.routeTableArn;
}
/**
*
* The ARN of the route table.
*
*
* @param routeTableArn
* The ARN of the route table.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public GetNetworkRoutesResult withRouteTableArn(String routeTableArn) {
setRouteTableArn(routeTableArn);
return this;
}
/**
*
* Describes a core network segment edge.
*
*
* @param coreNetworkSegmentEdge
* Describes a core network segment edge.
*/
public void setCoreNetworkSegmentEdge(CoreNetworkSegmentEdgeIdentifier coreNetworkSegmentEdge) {
this.coreNetworkSegmentEdge = coreNetworkSegmentEdge;
}
/**
*
* Describes a core network segment edge.
*
*
* @return Describes a core network segment edge.
*/
public CoreNetworkSegmentEdgeIdentifier getCoreNetworkSegmentEdge() {
return this.coreNetworkSegmentEdge;
}
/**
*
* Describes a core network segment edge.
*
*
* @param coreNetworkSegmentEdge
* Describes a core network segment edge.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public GetNetworkRoutesResult withCoreNetworkSegmentEdge(CoreNetworkSegmentEdgeIdentifier coreNetworkSegmentEdge) {
setCoreNetworkSegmentEdge(coreNetworkSegmentEdge);
return this;
}
/**
*
* The route table type.
*
*
* @param routeTableType
* The route table type.
* @see RouteTableType
*/
public void setRouteTableType(String routeTableType) {
this.routeTableType = routeTableType;
}
/**
*
* The route table type.
*
*
* @return The route table type.
* @see RouteTableType
*/
public String getRouteTableType() {
return this.routeTableType;
}
/**
*
* The route table type.
*
*
* @param routeTableType
* The route table type.
* @return Returns a reference to this object so that method calls can be chained together.
* @see RouteTableType
*/
public GetNetworkRoutesResult withRouteTableType(String routeTableType) {
setRouteTableType(routeTableType);
return this;
}
/**
*
* The route table type.
*
*
* @param routeTableType
* The route table type.
* @return Returns a reference to this object so that method calls can be chained together.
* @see RouteTableType
*/
public GetNetworkRoutesResult withRouteTableType(RouteTableType routeTableType) {
this.routeTableType = routeTableType.toString();
return this;
}
/**
*
* The route table creation time.
*
*
* @param routeTableTimestamp
* The route table creation time.
*/
public void setRouteTableTimestamp(java.util.Date routeTableTimestamp) {
this.routeTableTimestamp = routeTableTimestamp;
}
/**
*
* The route table creation time.
*
*
* @return The route table creation time.
*/
public java.util.Date getRouteTableTimestamp() {
return this.routeTableTimestamp;
}
/**
*
* The route table creation time.
*
*
* @param routeTableTimestamp
* The route table creation time.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public GetNetworkRoutesResult withRouteTableTimestamp(java.util.Date routeTableTimestamp) {
setRouteTableTimestamp(routeTableTimestamp);
return this;
}
/**
*
* The network routes.
*
*
* @return The network routes.
*/
public java.util.List getNetworkRoutes() {
return networkRoutes;
}
/**
*
* The network routes.
*
*
* @param networkRoutes
* The network routes.
*/
public void setNetworkRoutes(java.util.Collection networkRoutes) {
if (networkRoutes == null) {
this.networkRoutes = null;
return;
}
this.networkRoutes = new java.util.ArrayList(networkRoutes);
}
/**
*
* The network routes.
*
*
* NOTE: This method appends the values to the existing list (if any). Use
* {@link #setNetworkRoutes(java.util.Collection)} or {@link #withNetworkRoutes(java.util.Collection)} if you want
* to override the existing values.
*
*
* @param networkRoutes
* The network routes.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public GetNetworkRoutesResult withNetworkRoutes(NetworkRoute... networkRoutes) {
if (this.networkRoutes == null) {
setNetworkRoutes(new java.util.ArrayList(networkRoutes.length));
}
for (NetworkRoute ele : networkRoutes) {
this.networkRoutes.add(ele);
}
return this;
}
/**
*
* The network routes.
*
*
* @param networkRoutes
* The network routes.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public GetNetworkRoutesResult withNetworkRoutes(java.util.Collection networkRoutes) {
setNetworkRoutes(networkRoutes);
return this;
}
/**
* Returns a string representation of this object. This is useful for testing and debugging. Sensitive data will be
* redacted from this string using a placeholder value.
*
* @return A string representation of this object.
*
* @see java.lang.Object#toString()
*/
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("{");
if (getRouteTableArn() != null)
sb.append("RouteTableArn: ").append(getRouteTableArn()).append(",");
if (getCoreNetworkSegmentEdge() != null)
sb.append("CoreNetworkSegmentEdge: ").append(getCoreNetworkSegmentEdge()).append(",");
if (getRouteTableType() != null)
sb.append("RouteTableType: ").append(getRouteTableType()).append(",");
if (getRouteTableTimestamp() != null)
sb.append("RouteTableTimestamp: ").append(getRouteTableTimestamp()).append(",");
if (getNetworkRoutes() != null)
sb.append("NetworkRoutes: ").append(getNetworkRoutes());
sb.append("}");
return sb.toString();
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (obj instanceof GetNetworkRoutesResult == false)
return false;
GetNetworkRoutesResult other = (GetNetworkRoutesResult) obj;
if (other.getRouteTableArn() == null ^ this.getRouteTableArn() == null)
return false;
if (other.getRouteTableArn() != null && other.getRouteTableArn().equals(this.getRouteTableArn()) == false)
return false;
if (other.getCoreNetworkSegmentEdge() == null ^ this.getCoreNetworkSegmentEdge() == null)
return false;
if (other.getCoreNetworkSegmentEdge() != null && other.getCoreNetworkSegmentEdge().equals(this.getCoreNetworkSegmentEdge()) == false)
return false;
if (other.getRouteTableType() == null ^ this.getRouteTableType() == null)
return false;
if (other.getRouteTableType() != null && other.getRouteTableType().equals(this.getRouteTableType()) == false)
return false;
if (other.getRouteTableTimestamp() == null ^ this.getRouteTableTimestamp() == null)
return false;
if (other.getRouteTableTimestamp() != null && other.getRouteTableTimestamp().equals(this.getRouteTableTimestamp()) == false)
return false;
if (other.getNetworkRoutes() == null ^ this.getNetworkRoutes() == null)
return false;
if (other.getNetworkRoutes() != null && other.getNetworkRoutes().equals(this.getNetworkRoutes()) == false)
return false;
return true;
}
@Override
public int hashCode() {
final int prime = 31;
int hashCode = 1;
hashCode = prime * hashCode + ((getRouteTableArn() == null) ? 0 : getRouteTableArn().hashCode());
hashCode = prime * hashCode + ((getCoreNetworkSegmentEdge() == null) ? 0 : getCoreNetworkSegmentEdge().hashCode());
hashCode = prime * hashCode + ((getRouteTableType() == null) ? 0 : getRouteTableType().hashCode());
hashCode = prime * hashCode + ((getRouteTableTimestamp() == null) ? 0 : getRouteTableTimestamp().hashCode());
hashCode = prime * hashCode + ((getNetworkRoutes() == null) ? 0 : getNetworkRoutes().hashCode());
return hashCode;
}
@Override
public GetNetworkRoutesResult clone() {
try {
return (GetNetworkRoutesResult) super.clone();
} catch (CloneNotSupportedException e) {
throw new IllegalStateException("Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e);
}
}
}