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

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

Go to download

The AWS SDK for Java with support for OSGi. The AWS SDK for Java provides Java APIs for building software on AWS' cost-effective, scalable, and reliable infrastructure products. The AWS Java SDK allows developers to code against APIs for all of Amazon's infrastructure web services (Amazon S3, Amazon EC2, Amazon SQS, Amazon Relational Database Service, Amazon AutoScaling, etc).

There is a newer version: 1.11.60
Show newest version
/*
 * Copyright 2011-2016 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;

/**
 * 

* Describes a security group *

*/ public class SecurityGroup implements Serializable, Cloneable { /** *

* The AWS account ID of the owner of the security group. *

*/ private String ownerId; /** *

* The name of the security group. *

*/ private String groupName; /** *

* The ID of the security group. *

*/ private String groupId; /** *

* A description of the security group. *

*/ private String description; /** *

* One or more inbound rules associated with the security group. *

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

* [EC2-VPC] One or more outbound rules associated with the security group. *

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

* [EC2-VPC] The ID of the VPC for the security group. *

*/ private String vpcId; /** *

* Any tags assigned to the security group. *

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

* The AWS account ID of the owner of the security group. *

* * @param ownerId * The AWS account ID of the owner of the security group. */ public void setOwnerId(String ownerId) { this.ownerId = ownerId; } /** *

* The AWS account ID of the owner of the security group. *

* * @return The AWS account ID of the owner of the security group. */ public String getOwnerId() { return this.ownerId; } /** *

* The AWS account ID of the owner of the security group. *

* * @param ownerId * The AWS account ID of the owner of the security group. * @return Returns a reference to this object so that method calls can be * chained together. */ public SecurityGroup withOwnerId(String ownerId) { setOwnerId(ownerId); return this; } /** *

* The name of the security group. *

* * @param groupName * The name of the security group. */ public void setGroupName(String groupName) { this.groupName = groupName; } /** *

* The name of the security group. *

* * @return The name of the security group. */ public String getGroupName() { return this.groupName; } /** *

* The name of the security group. *

* * @param groupName * The name of the security group. * @return Returns a reference to this object so that method calls can be * chained together. */ public SecurityGroup withGroupName(String groupName) { setGroupName(groupName); return this; } /** *

* The ID of the security group. *

* * @param groupId * The ID of the security group. */ public void setGroupId(String groupId) { this.groupId = groupId; } /** *

* The ID of the security group. *

* * @return The ID of the security group. */ public String getGroupId() { return this.groupId; } /** *

* The ID of the security group. *

* * @param groupId * The ID of the security group. * @return Returns a reference to this object so that method calls can be * chained together. */ public SecurityGroup withGroupId(String groupId) { setGroupId(groupId); return this; } /** *

* A description of the security group. *

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

* A description of the security group. *

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

* A description of the security group. *

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

* One or more inbound rules associated with the security group. *

* * @return One or more inbound rules associated with the security group. */ public java.util.List getIpPermissions() { if (ipPermissions == null) { ipPermissions = new com.amazonaws.internal.SdkInternalList(); } return ipPermissions; } /** *

* One or more inbound rules associated with the security group. *

* * @param ipPermissions * One or more inbound rules associated with the security group. */ public void setIpPermissions( java.util.Collection ipPermissions) { if (ipPermissions == null) { this.ipPermissions = null; return; } this.ipPermissions = new com.amazonaws.internal.SdkInternalList( ipPermissions); } /** *

* One or more inbound rules associated with the security group. *

*

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

* * @param ipPermissions * One or more inbound rules associated with the security group. * @return Returns a reference to this object so that method calls can be * chained together. */ public SecurityGroup withIpPermissions(IpPermission... ipPermissions) { if (this.ipPermissions == null) { setIpPermissions(new com.amazonaws.internal.SdkInternalList( ipPermissions.length)); } for (IpPermission ele : ipPermissions) { this.ipPermissions.add(ele); } return this; } /** *

* One or more inbound rules associated with the security group. *

* * @param ipPermissions * One or more inbound rules associated with the security group. * @return Returns a reference to this object so that method calls can be * chained together. */ public SecurityGroup withIpPermissions( java.util.Collection ipPermissions) { setIpPermissions(ipPermissions); return this; } /** *

* [EC2-VPC] One or more outbound rules associated with the security group. *

* * @return [EC2-VPC] One or more outbound rules associated with the security * group. */ public java.util.List getIpPermissionsEgress() { if (ipPermissionsEgress == null) { ipPermissionsEgress = new com.amazonaws.internal.SdkInternalList(); } return ipPermissionsEgress; } /** *

* [EC2-VPC] One or more outbound rules associated with the security group. *

* * @param ipPermissionsEgress * [EC2-VPC] One or more outbound rules associated with the security * group. */ public void setIpPermissionsEgress( java.util.Collection ipPermissionsEgress) { if (ipPermissionsEgress == null) { this.ipPermissionsEgress = null; return; } this.ipPermissionsEgress = new com.amazonaws.internal.SdkInternalList( ipPermissionsEgress); } /** *

* [EC2-VPC] One or more outbound rules associated with the security group. *

*

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

* * @param ipPermissionsEgress * [EC2-VPC] One or more outbound rules associated with the security * group. * @return Returns a reference to this object so that method calls can be * chained together. */ public SecurityGroup withIpPermissionsEgress( IpPermission... ipPermissionsEgress) { if (this.ipPermissionsEgress == null) { setIpPermissionsEgress(new com.amazonaws.internal.SdkInternalList( ipPermissionsEgress.length)); } for (IpPermission ele : ipPermissionsEgress) { this.ipPermissionsEgress.add(ele); } return this; } /** *

* [EC2-VPC] One or more outbound rules associated with the security group. *

* * @param ipPermissionsEgress * [EC2-VPC] One or more outbound rules associated with the security * group. * @return Returns a reference to this object so that method calls can be * chained together. */ public SecurityGroup withIpPermissionsEgress( java.util.Collection ipPermissionsEgress) { setIpPermissionsEgress(ipPermissionsEgress); return this; } /** *

* [EC2-VPC] The ID of the VPC for the security group. *

* * @param vpcId * [EC2-VPC] The ID of the VPC for the security group. */ public void setVpcId(String vpcId) { this.vpcId = vpcId; } /** *

* [EC2-VPC] The ID of the VPC for the security group. *

* * @return [EC2-VPC] The ID of the VPC for the security group. */ public String getVpcId() { return this.vpcId; } /** *

* [EC2-VPC] The ID of the VPC for the security group. *

* * @param vpcId * [EC2-VPC] The ID of the VPC for the security group. * @return Returns a reference to this object so that method calls can be * chained together. */ public SecurityGroup withVpcId(String vpcId) { setVpcId(vpcId); return this; } /** *

* Any tags assigned to the security group. *

* * @return Any tags assigned to the security group. */ public java.util.List getTags() { if (tags == null) { tags = new com.amazonaws.internal.SdkInternalList(); } return tags; } /** *

* Any tags assigned to the security group. *

* * @param tags * Any tags assigned to the security group. */ public void setTags(java.util.Collection tags) { if (tags == null) { this.tags = null; return; } this.tags = new com.amazonaws.internal.SdkInternalList(tags); } /** *

* Any tags assigned to the security group. *

*

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

* * @param tags * Any tags assigned to the security group. * @return Returns a reference to this object so that method calls can be * chained together. */ public SecurityGroup withTags(Tag... tags) { if (this.tags == null) { setTags(new com.amazonaws.internal.SdkInternalList(tags.length)); } for (Tag ele : tags) { this.tags.add(ele); } return this; } /** *

* Any tags assigned to the security group. *

* * @param tags * Any tags assigned to the security group. * @return Returns a reference to this object so that method calls can be * chained together. */ public SecurityGroup withTags(java.util.Collection tags) { setTags(tags); 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 (getOwnerId() != null) sb.append("OwnerId: " + getOwnerId() + ","); if (getGroupName() != null) sb.append("GroupName: " + getGroupName() + ","); if (getGroupId() != null) sb.append("GroupId: " + getGroupId() + ","); if (getDescription() != null) sb.append("Description: " + getDescription() + ","); if (getIpPermissions() != null) sb.append("IpPermissions: " + getIpPermissions() + ","); if (getIpPermissionsEgress() != null) sb.append("IpPermissionsEgress: " + getIpPermissionsEgress() + ","); if (getVpcId() != null) sb.append("VpcId: " + getVpcId() + ","); if (getTags() != null) sb.append("Tags: " + getTags()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof SecurityGroup == false) return false; SecurityGroup other = (SecurityGroup) obj; if (other.getOwnerId() == null ^ this.getOwnerId() == null) return false; if (other.getOwnerId() != null && other.getOwnerId().equals(this.getOwnerId()) == false) return false; if (other.getGroupName() == null ^ this.getGroupName() == null) return false; if (other.getGroupName() != null && other.getGroupName().equals(this.getGroupName()) == false) return false; if (other.getGroupId() == null ^ this.getGroupId() == null) return false; if (other.getGroupId() != null && other.getGroupId().equals(this.getGroupId()) == 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.getIpPermissions() == null ^ this.getIpPermissions() == null) return false; if (other.getIpPermissions() != null && other.getIpPermissions().equals(this.getIpPermissions()) == false) return false; if (other.getIpPermissionsEgress() == null ^ this.getIpPermissionsEgress() == null) return false; if (other.getIpPermissionsEgress() != null && other.getIpPermissionsEgress().equals( this.getIpPermissionsEgress()) == false) return false; if (other.getVpcId() == null ^ this.getVpcId() == null) return false; if (other.getVpcId() != null && other.getVpcId().equals(this.getVpcId()) == false) return false; if (other.getTags() == null ^ this.getTags() == null) return false; if (other.getTags() != null && other.getTags().equals(this.getTags()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getOwnerId() == null) ? 0 : getOwnerId().hashCode()); hashCode = prime * hashCode + ((getGroupName() == null) ? 0 : getGroupName().hashCode()); hashCode = prime * hashCode + ((getGroupId() == null) ? 0 : getGroupId().hashCode()); hashCode = prime * hashCode + ((getDescription() == null) ? 0 : getDescription().hashCode()); hashCode = prime * hashCode + ((getIpPermissions() == null) ? 0 : getIpPermissions() .hashCode()); hashCode = prime * hashCode + ((getIpPermissionsEgress() == null) ? 0 : getIpPermissionsEgress().hashCode()); hashCode = prime * hashCode + ((getVpcId() == null) ? 0 : getVpcId().hashCode()); hashCode = prime * hashCode + ((getTags() == null) ? 0 : getTags().hashCode()); return hashCode; } @Override public SecurityGroup clone() { try { return (SecurityGroup) super.clone(); } catch (CloneNotSupportedException e) { throw new IllegalStateException( "Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e); } } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy