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

com.amazonaws.services.vpclattice.model.ServiceNetworkSummary Maven / Gradle / Ivy

Go to download

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

There is a newer version: 1.12.772
Show newest version
/*
 * Copyright 2019-2024 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.vpclattice.model;

import java.io.Serializable;
import javax.annotation.Generated;
import com.amazonaws.protocol.StructuredPojo;
import com.amazonaws.protocol.ProtocolMarshaller;

/**
 * 

* Summary information about a service network. *

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

* The Amazon Resource Name (ARN) of the service network. *

*/ private String arn; /** *

* The date and time that the service network was created, specified in ISO-8601 format. *

*/ private java.util.Date createdAt; /** *

* The ID of the service network. *

*/ private String id; /** *

* The date and time that the service network was last updated, specified in ISO-8601 format. *

*/ private java.util.Date lastUpdatedAt; /** *

* The name of the service network. *

*/ private String name; /** *

* The number of services associated with the service network. *

*/ private Long numberOfAssociatedServices; /** *

* The number of VPCs associated with the service network. *

*/ private Long numberOfAssociatedVPCs; /** *

* The Amazon Resource Name (ARN) of the service network. *

* * @param arn * The Amazon Resource Name (ARN) of the service network. */ public void setArn(String arn) { this.arn = arn; } /** *

* The Amazon Resource Name (ARN) of the service network. *

* * @return The Amazon Resource Name (ARN) of the service network. */ public String getArn() { return this.arn; } /** *

* The Amazon Resource Name (ARN) of the service network. *

* * @param arn * The Amazon Resource Name (ARN) of the service network. * @return Returns a reference to this object so that method calls can be chained together. */ public ServiceNetworkSummary withArn(String arn) { setArn(arn); return this; } /** *

* The date and time that the service network was created, specified in ISO-8601 format. *

* * @param createdAt * The date and time that the service network was created, specified in ISO-8601 format. */ public void setCreatedAt(java.util.Date createdAt) { this.createdAt = createdAt; } /** *

* The date and time that the service network was created, specified in ISO-8601 format. *

* * @return The date and time that the service network was created, specified in ISO-8601 format. */ public java.util.Date getCreatedAt() { return this.createdAt; } /** *

* The date and time that the service network was created, specified in ISO-8601 format. *

* * @param createdAt * The date and time that the service network was created, specified in ISO-8601 format. * @return Returns a reference to this object so that method calls can be chained together. */ public ServiceNetworkSummary withCreatedAt(java.util.Date createdAt) { setCreatedAt(createdAt); return this; } /** *

* The ID of the service network. *

* * @param id * The ID of the service network. */ public void setId(String id) { this.id = id; } /** *

* The ID of the service network. *

* * @return The ID of the service network. */ public String getId() { return this.id; } /** *

* The ID of the service network. *

* * @param id * The ID of the service network. * @return Returns a reference to this object so that method calls can be chained together. */ public ServiceNetworkSummary withId(String id) { setId(id); return this; } /** *

* The date and time that the service network was last updated, specified in ISO-8601 format. *

* * @param lastUpdatedAt * The date and time that the service network was last updated, specified in ISO-8601 format. */ public void setLastUpdatedAt(java.util.Date lastUpdatedAt) { this.lastUpdatedAt = lastUpdatedAt; } /** *

* The date and time that the service network was last updated, specified in ISO-8601 format. *

* * @return The date and time that the service network was last updated, specified in ISO-8601 format. */ public java.util.Date getLastUpdatedAt() { return this.lastUpdatedAt; } /** *

* The date and time that the service network was last updated, specified in ISO-8601 format. *

* * @param lastUpdatedAt * The date and time that the service network was last updated, specified in ISO-8601 format. * @return Returns a reference to this object so that method calls can be chained together. */ public ServiceNetworkSummary withLastUpdatedAt(java.util.Date lastUpdatedAt) { setLastUpdatedAt(lastUpdatedAt); return this; } /** *

* The name of the service network. *

* * @param name * The name of the service network. */ public void setName(String name) { this.name = name; } /** *

* The name of the service network. *

* * @return The name of the service network. */ public String getName() { return this.name; } /** *

* The name of the service network. *

* * @param name * The name of the service network. * @return Returns a reference to this object so that method calls can be chained together. */ public ServiceNetworkSummary withName(String name) { setName(name); return this; } /** *

* The number of services associated with the service network. *

* * @param numberOfAssociatedServices * The number of services associated with the service network. */ public void setNumberOfAssociatedServices(Long numberOfAssociatedServices) { this.numberOfAssociatedServices = numberOfAssociatedServices; } /** *

* The number of services associated with the service network. *

* * @return The number of services associated with the service network. */ public Long getNumberOfAssociatedServices() { return this.numberOfAssociatedServices; } /** *

* The number of services associated with the service network. *

* * @param numberOfAssociatedServices * The number of services associated with the service network. * @return Returns a reference to this object so that method calls can be chained together. */ public ServiceNetworkSummary withNumberOfAssociatedServices(Long numberOfAssociatedServices) { setNumberOfAssociatedServices(numberOfAssociatedServices); return this; } /** *

* The number of VPCs associated with the service network. *

* * @param numberOfAssociatedVPCs * The number of VPCs associated with the service network. */ public void setNumberOfAssociatedVPCs(Long numberOfAssociatedVPCs) { this.numberOfAssociatedVPCs = numberOfAssociatedVPCs; } /** *

* The number of VPCs associated with the service network. *

* * @return The number of VPCs associated with the service network. */ public Long getNumberOfAssociatedVPCs() { return this.numberOfAssociatedVPCs; } /** *

* The number of VPCs associated with the service network. *

* * @param numberOfAssociatedVPCs * The number of VPCs associated with the service network. * @return Returns a reference to this object so that method calls can be chained together. */ public ServiceNetworkSummary withNumberOfAssociatedVPCs(Long numberOfAssociatedVPCs) { setNumberOfAssociatedVPCs(numberOfAssociatedVPCs); 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 (getArn() != null) sb.append("Arn: ").append(getArn()).append(","); if (getCreatedAt() != null) sb.append("CreatedAt: ").append(getCreatedAt()).append(","); if (getId() != null) sb.append("Id: ").append(getId()).append(","); if (getLastUpdatedAt() != null) sb.append("LastUpdatedAt: ").append(getLastUpdatedAt()).append(","); if (getName() != null) sb.append("Name: ").append(getName()).append(","); if (getNumberOfAssociatedServices() != null) sb.append("NumberOfAssociatedServices: ").append(getNumberOfAssociatedServices()).append(","); if (getNumberOfAssociatedVPCs() != null) sb.append("NumberOfAssociatedVPCs: ").append(getNumberOfAssociatedVPCs()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof ServiceNetworkSummary == false) return false; ServiceNetworkSummary other = (ServiceNetworkSummary) obj; if (other.getArn() == null ^ this.getArn() == null) return false; if (other.getArn() != null && other.getArn().equals(this.getArn()) == false) return false; if (other.getCreatedAt() == null ^ this.getCreatedAt() == null) return false; if (other.getCreatedAt() != null && other.getCreatedAt().equals(this.getCreatedAt()) == false) return false; if (other.getId() == null ^ this.getId() == null) return false; if (other.getId() != null && other.getId().equals(this.getId()) == false) return false; if (other.getLastUpdatedAt() == null ^ this.getLastUpdatedAt() == null) return false; if (other.getLastUpdatedAt() != null && other.getLastUpdatedAt().equals(this.getLastUpdatedAt()) == false) return false; if (other.getName() == null ^ this.getName() == null) return false; if (other.getName() != null && other.getName().equals(this.getName()) == false) return false; if (other.getNumberOfAssociatedServices() == null ^ this.getNumberOfAssociatedServices() == null) return false; if (other.getNumberOfAssociatedServices() != null && other.getNumberOfAssociatedServices().equals(this.getNumberOfAssociatedServices()) == false) return false; if (other.getNumberOfAssociatedVPCs() == null ^ this.getNumberOfAssociatedVPCs() == null) return false; if (other.getNumberOfAssociatedVPCs() != null && other.getNumberOfAssociatedVPCs().equals(this.getNumberOfAssociatedVPCs()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getArn() == null) ? 0 : getArn().hashCode()); hashCode = prime * hashCode + ((getCreatedAt() == null) ? 0 : getCreatedAt().hashCode()); hashCode = prime * hashCode + ((getId() == null) ? 0 : getId().hashCode()); hashCode = prime * hashCode + ((getLastUpdatedAt() == null) ? 0 : getLastUpdatedAt().hashCode()); hashCode = prime * hashCode + ((getName() == null) ? 0 : getName().hashCode()); hashCode = prime * hashCode + ((getNumberOfAssociatedServices() == null) ? 0 : getNumberOfAssociatedServices().hashCode()); hashCode = prime * hashCode + ((getNumberOfAssociatedVPCs() == null) ? 0 : getNumberOfAssociatedVPCs().hashCode()); return hashCode; } @Override public ServiceNetworkSummary clone() { try { return (ServiceNetworkSummary) super.clone(); } catch (CloneNotSupportedException e) { throw new IllegalStateException("Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e); } } @com.amazonaws.annotation.SdkInternalApi @Override public void marshall(ProtocolMarshaller protocolMarshaller) { com.amazonaws.services.vpclattice.model.transform.ServiceNetworkSummaryMarshaller.getInstance().marshall(this, protocolMarshaller); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy