CreateTunnelInspectionRuleDetails

class oci.network_firewall.models.CreateTunnelInspectionRuleDetails(**kwargs)

Bases: object

Request for creating Tunnel Inspection Rule used in the firewall policy rules. Tunnel Inspection Rule determines whether tunnel inspection is applied on the traffic based on attributes such as Tunnel Inspection protocol, the source and destination IP address.

Attributes

ACTION_INSPECT A constant which can be used with the action property of a CreateTunnelInspectionRuleDetails.
ACTION_INSPECT_AND_CAPTURE_LOG A constant which can be used with the action property of a CreateTunnelInspectionRuleDetails.
PROTOCOL_VXLAN A constant which can be used with the protocol property of a CreateTunnelInspectionRuleDetails.
action Gets the action of this CreateTunnelInspectionRuleDetails.
name [Required] Gets the name of this CreateTunnelInspectionRuleDetails.
position Gets the position of this CreateTunnelInspectionRuleDetails.
protocol [Required] Gets the protocol of this CreateTunnelInspectionRuleDetails.

Methods

__init__(**kwargs) Initializes a new CreateTunnelInspectionRuleDetails object with values from keyword arguments.
get_subtype(object_dictionary) Given the hash representation of a subtype of this class, use the info in the hash to return the class of the subtype.
ACTION_INSPECT = 'INSPECT'

A constant which can be used with the action property of a CreateTunnelInspectionRuleDetails. This constant has a value of “INSPECT”

ACTION_INSPECT_AND_CAPTURE_LOG = 'INSPECT_AND_CAPTURE_LOG'

A constant which can be used with the action property of a CreateTunnelInspectionRuleDetails. This constant has a value of “INSPECT_AND_CAPTURE_LOG”

PROTOCOL_VXLAN = 'VXLAN'

A constant which can be used with the protocol property of a CreateTunnelInspectionRuleDetails. This constant has a value of “VXLAN”

__init__(**kwargs)

Initializes a new CreateTunnelInspectionRuleDetails object with values from keyword arguments. This class has the following subclasses and if you are using this class as input to a service operations then you should favor using a subclass over the base class:

The following keyword arguments are supported (corresponding to the getters/setters of this class):

Parameters:
  • name (str) – The value to assign to the name property of this CreateTunnelInspectionRuleDetails.
  • action (str) – The value to assign to the action property of this CreateTunnelInspectionRuleDetails. Allowed values for this property are: “INSPECT”, “INSPECT_AND_CAPTURE_LOG”
  • protocol (str) – The value to assign to the protocol property of this CreateTunnelInspectionRuleDetails. Allowed values for this property are: “VXLAN”
  • position (oci.network_firewall.models.RulePosition) – The value to assign to the position property of this CreateTunnelInspectionRuleDetails.
action

Gets the action of this CreateTunnelInspectionRuleDetails. Types of Inspect Action on the traffic flow.

  • INSPECT - Inspect the traffic.
  • INSPECT_AND_CAPTURE_LOG - Inspect and capture logs for the traffic.

Allowed values for this property are: “INSPECT”, “INSPECT_AND_CAPTURE_LOG”

Returns:The action of this CreateTunnelInspectionRuleDetails.
Return type:str
static get_subtype(object_dictionary)

Given the hash representation of a subtype of this class, use the info in the hash to return the class of the subtype.

name

[Required] Gets the name of this CreateTunnelInspectionRuleDetails. Name for the Tunnel Inspection Rule, must be unique within the policy.

Returns:The name of this CreateTunnelInspectionRuleDetails.
Return type:str
position

Gets the position of this CreateTunnelInspectionRuleDetails.

Returns:The position of this CreateTunnelInspectionRuleDetails.
Return type:oci.network_firewall.models.RulePosition
protocol

[Required] Gets the protocol of this CreateTunnelInspectionRuleDetails. Types of Tunnel Inspection Protocol to be applied on the traffic.

  • VXLAN - VXLAN Tunnel Inspection Protocol will be applied on the traffic.

Allowed values for this property are: “VXLAN”

Returns:The protocol of this CreateTunnelInspectionRuleDetails.
Return type:str