Class EgressSecurityRule.Builder
- java.lang.Object
- 
- com.oracle.bmc.vnmonitoring.model.EgressSecurityRule.Builder
 
- 
- Enclosing class:
- EgressSecurityRule
 
 public static class EgressSecurityRule.Builder extends Object 
- 
- 
Constructor SummaryConstructors Constructor Description Builder()
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description EgressSecurityRulebuild()EgressSecurityRule.Buildercopy(EgressSecurityRule model)EgressSecurityRule.Builderdescription(String description)An optional description of your choice for the rule.EgressSecurityRule.Builderdestination(String destination)Conceptually, this is the range of IP addresses that a packet originating from the instance can go to.EgressSecurityRule.BuilderdestinationType(EgressSecurityRule.DestinationType destinationType)Type of destination for the rule.EgressSecurityRule.BuildericmpOptions(IcmpOptions icmpOptions)EgressSecurityRule.BuilderisStateless(Boolean isStateless)A stateless rule allows traffic in one direction.EgressSecurityRule.Builderprotocol(String protocol)The transport protocol.EgressSecurityRule.BuildertcpOptions(TcpOptions tcpOptions)EgressSecurityRule.BuilderudpOptions(UdpOptions udpOptions)
 
- 
- 
- 
Method Detail- 
destinationpublic EgressSecurityRule.Builder destination(String destination) 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.- Parameters:
- destination- the value to set
- Returns:
- this builder
 
 - 
destinationTypepublic EgressSecurityRule.Builder destinationType(EgressSecurityRule.DestinationType destinationType) 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).- Parameters:
- destinationType- the value to set
- Returns:
- this builder
 
 - 
icmpOptionspublic EgressSecurityRule.Builder icmpOptions(IcmpOptions icmpOptions) 
 - 
isStatelesspublic EgressSecurityRule.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 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. - Parameters:
- isStateless- the value to set
- Returns:
- this builder
 
 - 
protocolpublic EgressSecurityRule.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
 
 - 
tcpOptionspublic EgressSecurityRule.Builder tcpOptions(TcpOptions tcpOptions) 
 - 
udpOptionspublic EgressSecurityRule.Builder udpOptions(UdpOptions udpOptions) 
 - 
descriptionpublic EgressSecurityRule.Builder description(String description) An optional description of your choice for the rule.- Parameters:
- description- the value to set
- Returns:
- this builder
 
 - 
buildpublic EgressSecurityRule build() 
 - 
copypublic EgressSecurityRule.Builder copy(EgressSecurityRule model) 
 
- 
 
-