Class IngressSecurityRule.Builder
- java.lang.Object
-
- com.oracle.bmc.vnmonitoring.model.IngressSecurityRule.Builder
-
- Enclosing class:
- IngressSecurityRule
public static class IngressSecurityRule.Builder extends Object
-
-
Constructor Summary
Constructors Constructor Description Builder()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description IngressSecurityRule
build()
IngressSecurityRule.Builder
copy(IngressSecurityRule model)
IngressSecurityRule.Builder
description(String description)
An optional description of your choice for the rule.IngressSecurityRule.Builder
icmpOptions(IcmpOptions icmpOptions)
IngressSecurityRule.Builder
isStateless(Boolean isStateless)
A stateless rule allows traffic in one direction.IngressSecurityRule.Builder
protocol(String protocol)
The transport protocol.IngressSecurityRule.Builder
source(String source)
Conceptually, this is the range of IP addresses that a packet coming into the instance can come from.IngressSecurityRule.Builder
sourceType(IngressSecurityRule.SourceType sourceType)
Type of source for the rule.IngressSecurityRule.Builder
tcpOptions(TcpOptions tcpOptions)
IngressSecurityRule.Builder
udpOptions(UdpOptions udpOptions)
-
-
-
Method Detail
-
icmpOptions
public IngressSecurityRule.Builder icmpOptions(IcmpOptions icmpOptions)
-
isStateless
public IngressSecurityRule.Builder isStateless(Boolean isStateless)
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.
- Parameters:
isStateless
- the value to set- Returns:
- this builder
-
protocol
public IngressSecurityRule.Builder protocol(String protocol)
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”).
- Parameters:
protocol
- the value to set- Returns:
- this builder
-
source
public IngressSecurityRule.Builder source(String source)
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.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.- Parameters:
source
- the value to set- Returns:
- this builder
-
sourceType
public IngressSecurityRule.Builder sourceType(IngressSecurityRule.SourceType sourceType)
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).- Parameters:
sourceType
- the value to set- Returns:
- this builder
-
tcpOptions
public IngressSecurityRule.Builder tcpOptions(TcpOptions tcpOptions)
-
udpOptions
public IngressSecurityRule.Builder udpOptions(UdpOptions udpOptions)
-
description
public IngressSecurityRule.Builder description(String description)
An optional description of your choice for the rule.- Parameters:
description
- the value to set- Returns:
- this builder
-
build
public IngressSecurityRule build()
-
copy
public IngressSecurityRule.Builder copy(IngressSecurityRule model)
-
-