Class EgressSecurityRule
- java.lang.Object
-
- com.oracle.bmc.http.client.internal.ExplicitlySetBmcModel
-
- com.oracle.bmc.vnmonitoring.model.EgressSecurityRule
-
@Generated(value="OracleSDKGenerator", comments="API Version: 20160918") public final class EgressSecurityRule extends com.oracle.bmc.http.client.internal.ExplicitlySetBmcModel
A rule for allowing outbound IP packets.
Note: Objects should always be created or deserialized using theEgressSecurityRule.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 theEgressSecurityRule.Builder
, which maintain a set of all explicitly set fields calledEgressSecurityRule.Builder.__explicitlySet__
. ThehashCode()
andequals(Object)
methods are implemented to take the explicitly set fields into account. The constructor, on the other hand, does not take the explicitly set fields into account (since the constructor cannot distinguish explicit null from unset null).
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
EgressSecurityRule.Builder
static class
EgressSecurityRule.DestinationType
Type of destination for the rule.
-
Constructor Summary
Constructors Constructor Description EgressSecurityRule(String destination, EgressSecurityRule.DestinationType destinationType, IcmpOptions icmpOptions, Boolean isStateless, String protocol, TcpOptions tcpOptions, UdpOptions udpOptions, String description)
Deprecated.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static EgressSecurityRule.Builder
builder()
Create a new builder.boolean
equals(Object o)
String
getDescription()
An optional description of your choice for the rule.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()
Boolean
getIsStateless()
A stateless rule allows traffic in one direction.String
getProtocol()
The transport protocol.TcpOptions
getTcpOptions()
UdpOptions
getUdpOptions()
int
hashCode()
EgressSecurityRule.Builder
toBuilder()
String
toString()
String
toString(boolean includeByteArrayContents)
Return a string representation of the object.
-
-
-
Constructor Detail
-
EgressSecurityRule
@Deprecated @ConstructorProperties({"destination","destinationType","icmpOptions","isStateless","protocol","tcpOptions","udpOptions","description"}) public EgressSecurityRule(String destination, EgressSecurityRule.DestinationType destinationType, IcmpOptions icmpOptions, Boolean isStateless, String protocol, TcpOptions tcpOptions, UdpOptions udpOptions, String description)
Deprecated.
-
-
Method Detail
-
builder
public static EgressSecurityRule.Builder builder()
Create a new builder.
-
toBuilder
public EgressSecurityRule.Builder toBuilder()
-
getDestination
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 or 2001:0db8:0123:45::/56 Note that IPv6 addressing is currently supported only in certain regions. See [IPv6 Addresses](https://docs.oracle.com/iaas/Content/Network/Concepts/ipv6.htm).
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.- Returns:
- the value
-
getDestinationType
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).- Returns:
- the value
-
getIcmpOptions
public IcmpOptions getIcmpOptions()
-
getIsStateless
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.
- Returns:
- the value
-
getProtocol
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”), UDP (“17”), and ICMPv6 (“58”).
- Returns:
- the value
-
getTcpOptions
public TcpOptions getTcpOptions()
-
getUdpOptions
public UdpOptions getUdpOptions()
-
getDescription
public String getDescription()
An optional description of your choice for the rule.- Returns:
- the value
-
toString
public String toString()
- Overrides:
toString
in classcom.oracle.bmc.http.client.internal.ExplicitlySetBmcModel
-
toString
public String toString(boolean includeByteArrayContents)
Return a string representation of the object.- Parameters:
includeByteArrayContents
- true to include the full contents of byte arrays- Returns:
- string representation
-
equals
public boolean equals(Object o)
- Overrides:
equals
in classcom.oracle.bmc.http.client.internal.ExplicitlySetBmcModel
-
hashCode
public int hashCode()
- Overrides:
hashCode
in classcom.oracle.bmc.http.client.internal.ExplicitlySetBmcModel
-
-