@Generated(value="OracleSDKGenerator", comments="API Version: 20160918") public final class UpdateSecurityRuleDetails extends com.oracle.bmc.http.client.internal.ExplicitlySetBmcModel
A rule for allowing inbound (direction
= INGRESS) or outbound (direction
= EGRESS)
IP packets.
Note: Objects should always be created or deserialized using the UpdateSecurityRuleDetails.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 UpdateSecurityRuleDetails.Builder
, which maintain a
set of all explicitly set fields called UpdateSecurityRuleDetails.Builder.__explicitlySet__
. The hashCode()
and equals(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
).
Modifier and Type | Class and Description |
---|---|
static class |
UpdateSecurityRuleDetails.Builder |
static class |
UpdateSecurityRuleDetails.DestinationType
Type of destination for the rule.
|
static class |
UpdateSecurityRuleDetails.Direction
Direction of the security rule.
|
static class |
UpdateSecurityRuleDetails.SourceType
Type of source for the rule.
|
EXPLICITLY_SET_FILTER_NAME, EXPLICITLY_SET_PROPERTY_NAME
Constructor and Description |
---|
UpdateSecurityRuleDetails(String description,
String destination,
UpdateSecurityRuleDetails.DestinationType destinationType,
UpdateSecurityRuleDetails.Direction direction,
IcmpOptions icmpOptions,
String id,
Boolean isStateless,
String protocol,
String source,
UpdateSecurityRuleDetails.SourceType sourceType,
TcpOptions tcpOptions,
UdpOptions udpOptions)
Deprecated.
|
Modifier and Type | Method and Description |
---|---|
static UpdateSecurityRuleDetails.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.
|
UpdateSecurityRuleDetails.DestinationType |
getDestinationType()
Type of destination for the rule.
|
UpdateSecurityRuleDetails.Direction |
getDirection()
Direction of the security rule.
|
IcmpOptions |
getIcmpOptions() |
String |
getId()
The Oracle-assigned ID of the security rule that you want to update.
|
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.
|
UpdateSecurityRuleDetails.SourceType |
getSourceType()
Type of source for the rule.
|
TcpOptions |
getTcpOptions() |
UdpOptions |
getUdpOptions() |
int |
hashCode() |
UpdateSecurityRuleDetails.Builder |
toBuilder() |
String |
toString() |
String |
toString(boolean includeByteArrayContents)
Return a string representation of the object.
|
markPropertyAsExplicitlySet, wasPropertyExplicitlySet
@Deprecated @ConstructorProperties(value={"description","destination","destinationType","direction","icmpOptions","id","isStateless","protocol","source","sourceType","tcpOptions","udpOptions"}) public UpdateSecurityRuleDetails(String description, String destination, UpdateSecurityRuleDetails.DestinationType destinationType, UpdateSecurityRuleDetails.Direction direction, IcmpOptions icmpOptions, String id, Boolean isStateless, String protocol, String source, UpdateSecurityRuleDetails.SourceType sourceType, TcpOptions tcpOptions, UdpOptions udpOptions)
public static UpdateSecurityRuleDetails.Builder builder()
Create a new builder.
public UpdateSecurityRuleDetails.Builder toBuilder()
public String getDescription()
An optional description of your choice for the rule. Avoid entering confidential information.
public String getDestination()
Conceptually, this is the range of IP addresses that a packet originating from the instance can go to.
Allowed values:
An 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 rule
for traffic destined for a particular Service
through a service gateway. For example:
oci-phx-objectstorage
.
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of
a NetworkSecurityGroup
in the same VCN. The value can be the NSG that the rule
belongs to if the rule's intent is to control traffic between VNICs in the same NSG.
public UpdateSecurityRuleDetails.DestinationType getDestinationType()
Type of destination for the rule. Required if direction
= EGRESS
.
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).
NETWORK_SECURITY_GROUP
: If the rule's destination
is the
[OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of a
NetworkSecurityGroup
.
public UpdateSecurityRuleDetails.Direction getDirection()
Direction of the security rule. Set to EGRESS
for rules to allow outbound IP packets,
or INGRESS
for rules to allow inbound IP packets.
public IcmpOptions getIcmpOptions()
public String getId()
The Oracle-assigned ID of the security rule that you want to update. You can’t change this value.
Example: 04ABEC
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”), 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:
An 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 rule
for traffic coming from a particular Service
through a service gateway. For example:
oci-phx-objectstorage
.
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of
a NetworkSecurityGroup
in the same VCN. The value can be the NSG that the rule
belongs to if the rule's intent is to control traffic between VNICs in the same NSG.
public UpdateSecurityRuleDetails.SourceType getSourceType()
Type of source for the rule. Required if direction
= INGRESS
.
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).
NETWORK_SECURITY_GROUP
: If the rule's source
is the
[OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of a
NetworkSecurityGroup
.
public TcpOptions getTcpOptions()
public UdpOptions getUdpOptions()
public String toString()
toString
in class com.oracle.bmc.http.client.internal.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 com.oracle.bmc.http.client.internal.ExplicitlySetBmcModel
public int hashCode()
hashCode
in class com.oracle.bmc.http.client.internal.ExplicitlySetBmcModel
Copyright © 2016–2024. All rights reserved.