@Generated(value="OracleSDKGenerator", comments="API Version: 20160918") public final class IngressSecurityRule extends ExplicitlySetBmcModel
A rule for allowing inbound IP packets.
Note: Objects should always be created or deserialized using the IngressSecurityRule.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 IngressSecurityRule.Builder
, which maintain a set of all explicitly set fields called
ExplicitlySetBmcModel.__explicitlySet__
. The hashCode()
and equals(Object)
methods are implemented to take
ExplicitlySetBmcModel.__explicitlySet__
into account. The constructor, on the other hand, does not set ExplicitlySetBmcModel.__explicitlySet__
(since the constructor cannot distinguish explicit null
from unset null
).
Modifier and Type | Class and Description |
---|---|
static class |
IngressSecurityRule.Builder |
static class |
IngressSecurityRule.SourceType
Type of source for the rule.
|
Constructor and Description |
---|
IngressSecurityRule(IcmpOptions icmpOptions,
Boolean isStateless,
String protocol,
String source,
IngressSecurityRule.SourceType sourceType,
TcpOptions tcpOptions,
UdpOptions udpOptions)
Deprecated.
|
Modifier and Type | Method and Description |
---|---|
static IngressSecurityRule.Builder |
builder()
Create a new builder.
|
boolean |
equals(Object o) |
IcmpOptions |
getIcmpOptions() |
Boolean |
getIsStateless()
A stateless rule allows traffic in one direction.
|
String |
getProtocol()
The transport protocol.
|
String |
getSource()
Conceptually, this is the range of IP addresses that a packet coming into the instance
can come from.
|
IngressSecurityRule.SourceType |
getSourceType()
Type of source for the rule.
|
TcpOptions |
getTcpOptions() |
UdpOptions |
getUdpOptions() |
int |
hashCode() |
IngressSecurityRule.Builder |
toBuilder() |
String |
toString() |
String |
toString(boolean includeByteArrayContents)
Return a string representation of the object.
|
markPropertyAsExplicitlySet, wasPropertyExplicitlySet
@Deprecated @ConstructorProperties(value={"icmpOptions","isStateless","protocol","source","sourceType","tcpOptions","udpOptions"}) public IngressSecurityRule(IcmpOptions icmpOptions, Boolean isStateless, String protocol, String source, IngressSecurityRule.SourceType sourceType, TcpOptions tcpOptions, UdpOptions udpOptions)
public static IngressSecurityRule.Builder builder()
Create a new builder.
public IngressSecurityRule.Builder toBuilder()
public IcmpOptions getIcmpOptions()
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 ingress traffic allows TCP destination port 80, there should be an egress 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”), UDP (“17”), and ICMPv6 (“58”).
public String getSource()
Conceptually, this is the range of IP addresses that a packet coming into the instance can come from.
Allowed values:
IP address range in CIDR notation. For example: 192.168.1.0/24
or 2001:0db8:0123:45::/56
.
IPv6 addressing is supported for all commercial and government regions. See
[IPv6 Addresses](https://docs.cloud.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 coming from a particular Service
through
a service gateway. For example: oci-phx-objectstorage
.
public IngressSecurityRule.SourceType getSourceType()
Type of source for the rule. The default is CIDR_BLOCK
.
CIDR_BLOCK
: If the rule's source
is an IP address range in CIDR notation.
SERVICE_CIDR_BLOCK
: If the rule's source
is the cidrBlock
value for a
Service
(the rule is for traffic coming from a
particular Service
through a service gateway).
public TcpOptions getTcpOptions()
public UdpOptions getUdpOptions()
public String toString()
toString
in class ExplicitlySetBmcModel
public String toString(boolean includeByteArrayContents)
Return a string representation of the object.
includeByteArrayContents
- true to include the full contents of byte arrayspublic boolean equals(Object o)
equals
in class ExplicitlySetBmcModel
public int hashCode()
hashCode
in class ExplicitlySetBmcModel
Copyright © 2016–2023. All rights reserved.