@Generated(value="OracleSDKGenerator", comments="API Version: 20160918") public final class EgressSecurityRule extends Object
A rule for allowing outbound IP packets.
Note: Objects should always be created or deserialized using the EgressSecurityRule.Builder
. This model distinguishes fields that are null
because they are unset from fields that are explicitly set to null
. This is done in the setter methods of the EgressSecurityRule.Builder
, which maintain a set of all explicitly set fields called __explicitlySet__
. The hashCode()
and equals(Object)
methods are implemented to take __explicitlySet__
into account. The constructor, on the other hand, does not set __explicitlySet__
(since the constructor cannot distinguish explicit null
from unset null
).
Modifier and Type | Class and Description |
---|---|
static class |
EgressSecurityRule.Builder |
static class |
EgressSecurityRule.DestinationType
Type of destination for the rule.
|
Constructor and Description |
---|
EgressSecurityRule(String destination,
EgressSecurityRule.DestinationType destinationType,
IcmpOptions icmpOptions,
Boolean isStateless,
String protocol,
TcpOptions tcpOptions,
UdpOptions udpOptions)
Deprecated.
|
Modifier and Type | Method and Description |
---|---|
static EgressSecurityRule.Builder |
builder()
Create a new builder.
|
boolean |
equals(Object o) |
Set<String> |
get__explicitlySet__() |
String |
getDestination()
Conceptually, this is the range of IP addresses that a packet originating from the instance can go to.
|
EgressSecurityRule.DestinationType |
getDestinationType()
Type of destination for the rule.
|
IcmpOptions |
getIcmpOptions()
Optional and valid only for ICMP.
|
Boolean |
getIsStateless()
A stateless rule allows traffic in one direction.
|
String |
getProtocol()
The transport protocol.
|
TcpOptions |
getTcpOptions()
Optional and valid only for TCP.
|
UdpOptions |
getUdpOptions()
Optional and valid only for UDP.
|
int |
hashCode() |
String |
toString() |
@ConstructorProperties(value={"destination","destinationType","icmpOptions","isStateless","protocol","tcpOptions","udpOptions"}) @Deprecated public EgressSecurityRule(String destination, EgressSecurityRule.DestinationType destinationType, IcmpOptions icmpOptions, Boolean isStateless, String protocol, TcpOptions tcpOptions, UdpOptions udpOptions)
public static EgressSecurityRule.Builder builder()
Create a new builder.
public String getDestination()
Conceptually, this is the range of IP addresses that a packet originating from the instance can go to.
Allowed values:
IP address range in CIDR notation. For example: 192.168.1.0/24
The cidrBlock
value for a Service
, if you’re setting up a security list rule for traffic destined for a particular Service
through a service gateway. For example: oci-phx-objectstorage
.
public EgressSecurityRule.DestinationType getDestinationType()
Type of destination for the rule. The default is CIDR_BLOCK
.
Allowed values:
CIDR_BLOCK
: If the rule’s destination
is an IP address range in CIDR notation.
SERVICE_CIDR_BLOCK
: If the rule’s destination
is the cidrBlock
value for a Service
(the rule is for traffic destined for a particular Service
through a service gateway).
public IcmpOptions getIcmpOptions()
Optional and valid only for ICMP. Use to specify a particular ICMP type and code as defined in ICMP Parameters. If you specify ICMP as the protocol but omit this object, then all ICMP types and codes are allowed. If you do provide this object, the type is required and the code is optional. To enable MTU negotiation for ingress internet traffic, make sure to allow type 3 ("Destination Unreachable") code 4 ("Fragmentation Needed and Don’t Fragment was Set"). If you need to specify multiple codes for a single type, create a separate security list rule for each.
public Boolean getIsStateless()
A stateless rule allows traffic in one direction. Remember to add a corresponding stateless rule in the other direction if you need to support bidirectional traffic. For example, if egress traffic allows TCP destination port 80, there should be an ingress rule to allow TCP source port 80. Defaults to false, which means the rule is stateful and a corresponding rule is not necessary for bidirectional traffic.
public String getProtocol()
The transport protocol. Specify either all
or an IPv4 protocol number as defined in Protocol Numbers. Options are supported only for ICMP ("1"), TCP ("6"), and UDP ("17").
public TcpOptions getTcpOptions()
Optional and valid only for TCP. Use to specify particular destination ports for TCP rules. If you specify TCP as the protocol but omit this object, then all destination ports are allowed.
public UdpOptions getUdpOptions()
Optional and valid only for UDP. Use to specify particular destination ports for UDP rules. If you specify UDP as the protocol but omit this object, then all destination ports are allowed.
Copyright © 2016–2019. All rights reserved.