Class FirewallOptions
- java.lang.Object
-
- org.jclouds.googlecomputeengine.options.FirewallOptions
-
-
Constructor Summary
Constructors Constructor Description FirewallOptions()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description FirewallOptions
addAllowedRule(Firewall.Rule allowedRule)
FirewallOptions
addSourceRange(String sourceRange)
FirewallOptions
addSourceTag(String sourceTag)
FirewallOptions
addTargetTag(String targetTag)
FirewallOptions
allowedRules(List<Firewall.Rule> allowedRules)
String
description()
FirewallOptions
description(String description)
List<Firewall.Rule>
getAllowed()
String
name()
FirewallOptions
name(String name)
URI
network()
FirewallOptions
network(URI network)
List<String>
sourceRanges()
FirewallOptions
sourceRanges(Iterable<String> sourceRanges)
List<String>
sourceTags()
FirewallOptions
sourceTags(Iterable<String> sourceTags)
List<String>
targetTags()
FirewallOptions
targetTags(List<String> targetTags)
-
-
-
Method Detail
-
getAllowed
public List<Firewall.Rule> getAllowed()
- See Also:
Firewall.allowed()
-
addAllowedRule
public FirewallOptions addAllowedRule(Firewall.Rule allowedRule)
- See Also:
Firewall.allowed()
-
allowedRules
public FirewallOptions allowedRules(List<Firewall.Rule> allowedRules)
- See Also:
Firewall.allowed()
-
name
public FirewallOptions name(String name)
- See Also:
Firewall.name()
-
name
public String name()
- See Also:
Firewall.name()
-
description
public FirewallOptions description(String description)
- See Also:
Firewall.description()
-
description
public String description()
- See Also:
Firewall.description()
-
network
public FirewallOptions network(URI network)
- See Also:
Firewall.network()
-
network
public URI network()
- See Also:
Firewall.network()
-
sourceRanges
public List<String> sourceRanges()
- See Also:
Firewall.sourceRanges()
-
addSourceRange
public FirewallOptions addSourceRange(String sourceRange)
- See Also:
Firewall.sourceRanges()
-
sourceRanges
public FirewallOptions sourceRanges(Iterable<String> sourceRanges)
- See Also:
Firewall.sourceRanges()
-
sourceTags
public List<String> sourceTags()
- See Also:
Firewall.sourceTags()
-
addSourceTag
public FirewallOptions addSourceTag(String sourceTag)
- See Also:
Firewall.sourceTags()
-
sourceTags
public FirewallOptions sourceTags(Iterable<String> sourceTags)
- See Also:
Firewall.sourceTags()
-
targetTags
public List<String> targetTags()
- See Also:
Firewall.targetTags()
-
addTargetTag
public FirewallOptions addTargetTag(String targetTag)
- See Also:
Firewall.targetTags()
-
targetTags
public FirewallOptions targetTags(List<String> targetTags)
- See Also:
Firewall.targetTags()
-
-