All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.amazonaws.services.ec2.model.PublicIpv4Pool Maven / Gradle / Ivy

Go to download

The AWS Java SDK for Amazon EC2 module holds the client classes that are used for communicating with Amazon EC2 Service

There is a newer version: 1.12.765
Show newest version
/*
 * Copyright 2014-2019 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;

/**
 * 

* Describes an address pool. *

* * @see AWS API * Documentation */ @Generated("com.amazonaws:aws-java-sdk-code-generator") public class PublicIpv4Pool implements Serializable, Cloneable { /** *

* The ID of the IPv4 address pool. *

*/ private String poolId; /** *

* A description of the address pool. *

*/ private String description; /** *

* The address ranges. *

*/ private com.amazonaws.internal.SdkInternalList poolAddressRanges; /** *

* The total number of addresses. *

*/ private Integer totalAddressCount; /** *

* The total number of available addresses. *

*/ private Integer totalAvailableAddressCount; /** *

* The ID of the IPv4 address pool. *

* * @param poolId * The ID of the IPv4 address pool. */ public void setPoolId(String poolId) { this.poolId = poolId; } /** *

* The ID of the IPv4 address pool. *

* * @return The ID of the IPv4 address pool. */ public String getPoolId() { return this.poolId; } /** *

* The ID of the IPv4 address pool. *

* * @param poolId * The ID of the IPv4 address pool. * @return Returns a reference to this object so that method calls can be chained together. */ public PublicIpv4Pool withPoolId(String poolId) { setPoolId(poolId); return this; } /** *

* A description of the address pool. *

* * @param description * A description of the address pool. */ public void setDescription(String description) { this.description = description; } /** *

* A description of the address pool. *

* * @return A description of the address pool. */ public String getDescription() { return this.description; } /** *

* A description of the address pool. *

* * @param description * A description of the address pool. * @return Returns a reference to this object so that method calls can be chained together. */ public PublicIpv4Pool withDescription(String description) { setDescription(description); return this; } /** *

* The address ranges. *

* * @return The address ranges. */ public java.util.List getPoolAddressRanges() { if (poolAddressRanges == null) { poolAddressRanges = new com.amazonaws.internal.SdkInternalList(); } return poolAddressRanges; } /** *

* The address ranges. *

* * @param poolAddressRanges * The address ranges. */ public void setPoolAddressRanges(java.util.Collection poolAddressRanges) { if (poolAddressRanges == null) { this.poolAddressRanges = null; return; } this.poolAddressRanges = new com.amazonaws.internal.SdkInternalList(poolAddressRanges); } /** *

* The address ranges. *

*

* NOTE: This method appends the values to the existing list (if any). Use * {@link #setPoolAddressRanges(java.util.Collection)} or {@link #withPoolAddressRanges(java.util.Collection)} if * you want to override the existing values. *

* * @param poolAddressRanges * The address ranges. * @return Returns a reference to this object so that method calls can be chained together. */ public PublicIpv4Pool withPoolAddressRanges(PublicIpv4PoolRange... poolAddressRanges) { if (this.poolAddressRanges == null) { setPoolAddressRanges(new com.amazonaws.internal.SdkInternalList(poolAddressRanges.length)); } for (PublicIpv4PoolRange ele : poolAddressRanges) { this.poolAddressRanges.add(ele); } return this; } /** *

* The address ranges. *

* * @param poolAddressRanges * The address ranges. * @return Returns a reference to this object so that method calls can be chained together. */ public PublicIpv4Pool withPoolAddressRanges(java.util.Collection poolAddressRanges) { setPoolAddressRanges(poolAddressRanges); return this; } /** *

* The total number of addresses. *

* * @param totalAddressCount * The total number of addresses. */ public void setTotalAddressCount(Integer totalAddressCount) { this.totalAddressCount = totalAddressCount; } /** *

* The total number of addresses. *

* * @return The total number of addresses. */ public Integer getTotalAddressCount() { return this.totalAddressCount; } /** *

* The total number of addresses. *

* * @param totalAddressCount * The total number of addresses. * @return Returns a reference to this object so that method calls can be chained together. */ public PublicIpv4Pool withTotalAddressCount(Integer totalAddressCount) { setTotalAddressCount(totalAddressCount); return this; } /** *

* The total number of available addresses. *

* * @param totalAvailableAddressCount * The total number of available addresses. */ public void setTotalAvailableAddressCount(Integer totalAvailableAddressCount) { this.totalAvailableAddressCount = totalAvailableAddressCount; } /** *

* The total number of available addresses. *

* * @return The total number of available addresses. */ public Integer getTotalAvailableAddressCount() { return this.totalAvailableAddressCount; } /** *

* The total number of available addresses. *

* * @param totalAvailableAddressCount * The total number of available addresses. * @return Returns a reference to this object so that method calls can be chained together. */ public PublicIpv4Pool withTotalAvailableAddressCount(Integer totalAvailableAddressCount) { setTotalAvailableAddressCount(totalAvailableAddressCount); 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 (getPoolId() != null) sb.append("PoolId: ").append(getPoolId()).append(","); if (getDescription() != null) sb.append("Description: ").append(getDescription()).append(","); if (getPoolAddressRanges() != null) sb.append("PoolAddressRanges: ").append(getPoolAddressRanges()).append(","); if (getTotalAddressCount() != null) sb.append("TotalAddressCount: ").append(getTotalAddressCount()).append(","); if (getTotalAvailableAddressCount() != null) sb.append("TotalAvailableAddressCount: ").append(getTotalAvailableAddressCount()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof PublicIpv4Pool == false) return false; PublicIpv4Pool other = (PublicIpv4Pool) obj; if (other.getPoolId() == null ^ this.getPoolId() == null) return false; if (other.getPoolId() != null && other.getPoolId().equals(this.getPoolId()) == false) return false; if (other.getDescription() == null ^ this.getDescription() == null) return false; if (other.getDescription() != null && other.getDescription().equals(this.getDescription()) == false) return false; if (other.getPoolAddressRanges() == null ^ this.getPoolAddressRanges() == null) return false; if (other.getPoolAddressRanges() != null && other.getPoolAddressRanges().equals(this.getPoolAddressRanges()) == false) return false; if (other.getTotalAddressCount() == null ^ this.getTotalAddressCount() == null) return false; if (other.getTotalAddressCount() != null && other.getTotalAddressCount().equals(this.getTotalAddressCount()) == false) return false; if (other.getTotalAvailableAddressCount() == null ^ this.getTotalAvailableAddressCount() == null) return false; if (other.getTotalAvailableAddressCount() != null && other.getTotalAvailableAddressCount().equals(this.getTotalAvailableAddressCount()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getPoolId() == null) ? 0 : getPoolId().hashCode()); hashCode = prime * hashCode + ((getDescription() == null) ? 0 : getDescription().hashCode()); hashCode = prime * hashCode + ((getPoolAddressRanges() == null) ? 0 : getPoolAddressRanges().hashCode()); hashCode = prime * hashCode + ((getTotalAddressCount() == null) ? 0 : getTotalAddressCount().hashCode()); hashCode = prime * hashCode + ((getTotalAvailableAddressCount() == null) ? 0 : getTotalAvailableAddressCount().hashCode()); return hashCode; } @Override public PublicIpv4Pool clone() { try { return (PublicIpv4Pool) super.clone(); } catch (CloneNotSupportedException e) { throw new IllegalStateException("Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e); } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy