public class SecurityGroup extends Object
Modifier and Type | Class and Description |
---|---|
static class |
SecurityGroup.Builder<T extends SecurityGroup.Builder<T>> |
Modifier and Type | Field and Description |
---|---|
protected String |
description |
protected Set<EC2SecurityGroup> |
ec2SecurityGroups |
protected Set<IPRange> |
ipRanges |
protected String |
name |
protected String |
ownerId |
protected com.google.common.base.Optional<String> |
vpcId |
Modifier | Constructor and Description |
---|---|
protected |
SecurityGroup(String name,
String description,
Iterable<EC2SecurityGroup> ec2SecurityGroups,
Iterable<IPRange> ipRanges,
String ownerId,
com.google.common.base.Optional<String> vpcId) |
Modifier and Type | Method and Description |
---|---|
static SecurityGroup.Builder<?> |
builder() |
boolean |
equals(Object obj) |
String |
getDescription()
Provides the description of the DB Security Group.
|
Set<EC2SecurityGroup> |
getEC2SecurityGroups()
Contains a list of EC2SecurityGroup elements.
|
Set<IPRange> |
getIPRanges()
Contains a list of IPRange elements.
|
String |
getName()
Specifies the name of the DB Security Group.
|
String |
getOwnerId()
Provides the AWS ID of the owner of a specific DB Security Group..
|
com.google.common.base.Optional<String> |
getVpcId()
Provides the VpcId of the DB Security Group.
|
int |
hashCode() |
protected com.google.common.base.Objects.ToStringHelper |
string() |
SecurityGroup.Builder<?> |
toBuilder() |
String |
toString() |
protected final String name
protected final String description
protected final Set<EC2SecurityGroup> ec2SecurityGroups
protected final String ownerId
protected final com.google.common.base.Optional<String> vpcId
public static SecurityGroup.Builder<?> builder()
public SecurityGroup.Builder<?> toBuilder()
public String getName()
public String getDescription()
public Set<EC2SecurityGroup> getEC2SecurityGroups()
public String getOwnerId()
public com.google.common.base.Optional<String> getVpcId()
protected com.google.common.base.Objects.ToStringHelper string()
Copyright © 2009-2013 jclouds. All Rights Reserved.