File manager - Edit - /usr/lib/mysqlsh/lib/python3.9/site-packages/oci/network_firewall/models/create_tunnel_inspection_rule_details.py
Back
# coding: utf-8 # Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230501 from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 from oci.decorators import init_model_state_from_kwargs @init_model_state_from_kwargs class CreateTunnelInspectionRuleDetails(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. """ #: A constant which can be used with the action property of a CreateTunnelInspectionRuleDetails. #: This constant has a value of "INSPECT" ACTION_INSPECT = "INSPECT" #: A constant which can be used with the action property of a CreateTunnelInspectionRuleDetails. #: This constant has a value of "INSPECT_AND_CAPTURE_LOG" ACTION_INSPECT_AND_CAPTURE_LOG = "INSPECT_AND_CAPTURE_LOG" #: A constant which can be used with the protocol property of a CreateTunnelInspectionRuleDetails. #: This constant has a value of "VXLAN" PROTOCOL_VXLAN = "VXLAN" def __init__(self, **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: * :class:`~oci.network_firewall.models.CreateVxlanInspectionRuleDetails` The following keyword arguments are supported (corresponding to the getters/setters of this class): :param name: The value to assign to the name property of this CreateTunnelInspectionRuleDetails. :type name: str :param action: The value to assign to the action property of this CreateTunnelInspectionRuleDetails. Allowed values for this property are: "INSPECT", "INSPECT_AND_CAPTURE_LOG" :type action: str :param protocol: The value to assign to the protocol property of this CreateTunnelInspectionRuleDetails. Allowed values for this property are: "VXLAN" :type protocol: str :param position: The value to assign to the position property of this CreateTunnelInspectionRuleDetails. :type position: oci.network_firewall.models.RulePosition :param description: The value to assign to the description property of this CreateTunnelInspectionRuleDetails. :type description: str """ self.swagger_types = { 'name': 'str', 'action': 'str', 'protocol': 'str', 'position': 'RulePosition', 'description': 'str' } self.attribute_map = { 'name': 'name', 'action': 'action', 'protocol': 'protocol', 'position': 'position', 'description': 'description' } self._name = None self._action = None self._protocol = None self._position = None self._description = None @staticmethod def 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. """ type = object_dictionary['protocol'] if type == 'VXLAN': return 'CreateVxlanInspectionRuleDetails' else: return 'CreateTunnelInspectionRuleDetails' @property def name(self): """ **[Required]** Gets the name of this CreateTunnelInspectionRuleDetails. Name for the Tunnel Inspection Rule, must be unique within the policy. :return: The name of this CreateTunnelInspectionRuleDetails. :rtype: str """ return self._name @name.setter def name(self, name): """ Sets the name of this CreateTunnelInspectionRuleDetails. Name for the Tunnel Inspection Rule, must be unique within the policy. :param name: The name of this CreateTunnelInspectionRuleDetails. :type: str """ self._name = name @property def action(self): """ 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" :return: The action of this CreateTunnelInspectionRuleDetails. :rtype: str """ return self._action @action.setter def action(self, action): """ Sets 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. :param action: The action of this CreateTunnelInspectionRuleDetails. :type: str """ allowed_values = ["INSPECT", "INSPECT_AND_CAPTURE_LOG"] if not value_allowed_none_or_none_sentinel(action, allowed_values): raise ValueError( f"Invalid value for `action`, must be None or one of {allowed_values}" ) self._action = action @property def protocol(self): """ **[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" :return: The protocol of this CreateTunnelInspectionRuleDetails. :rtype: str """ return self._protocol @protocol.setter def protocol(self, protocol): """ Sets 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. :param protocol: The protocol of this CreateTunnelInspectionRuleDetails. :type: str """ allowed_values = ["VXLAN"] if not value_allowed_none_or_none_sentinel(protocol, allowed_values): raise ValueError( f"Invalid value for `protocol`, must be None or one of {allowed_values}" ) self._protocol = protocol @property def position(self): """ Gets the position of this CreateTunnelInspectionRuleDetails. :return: The position of this CreateTunnelInspectionRuleDetails. :rtype: oci.network_firewall.models.RulePosition """ return self._position @position.setter def position(self, position): """ Sets the position of this CreateTunnelInspectionRuleDetails. :param position: The position of this CreateTunnelInspectionRuleDetails. :type: oci.network_firewall.models.RulePosition """ self._position = position @property def description(self): """ Gets the description of this CreateTunnelInspectionRuleDetails. The description of the tunnel inspect rule. This field can be used to add additional info. :return: The description of this CreateTunnelInspectionRuleDetails. :rtype: str """ return self._description @description.setter def description(self, description): """ Sets the description of this CreateTunnelInspectionRuleDetails. The description of the tunnel inspect rule. This field can be used to add additional info. :param description: The description of this CreateTunnelInspectionRuleDetails. :type: str """ self._description = description def __repr__(self): return formatted_flat_dict(self) def __eq__(self, other): if other is None: return False return self.__dict__ == other.__dict__ def __ne__(self, other): return not self == other
| ver. 1.4 |
Github
|
.
| PHP 8.2.32 | Generation time: 0.07 |
proxy
|
phpinfo
|
Settings