DecryptionProfileSummary¶
-
class
oci.network_firewall.models.
DecryptionProfileSummary
(**kwargs)¶ Bases:
object
Decryption Profile used on the firewall policy rules.
Attributes
TYPE_SSL_FORWARD_PROXY
A constant which can be used with the type property of a DecryptionProfileSummary. TYPE_SSL_INBOUND_INSPECTION
A constant which can be used with the type property of a DecryptionProfileSummary. name
[Required] Gets the name of this DecryptionProfileSummary. parent_resource_id
[Required] Gets the parent_resource_id of this DecryptionProfileSummary. type
[Required] Gets the type of this DecryptionProfileSummary. Methods
__init__
(**kwargs)Initializes a new DecryptionProfileSummary object with values from keyword arguments. -
TYPE_SSL_FORWARD_PROXY
= 'SSL_FORWARD_PROXY'¶ A constant which can be used with the type property of a DecryptionProfileSummary. This constant has a value of “SSL_FORWARD_PROXY”
-
TYPE_SSL_INBOUND_INSPECTION
= 'SSL_INBOUND_INSPECTION'¶ A constant which can be used with the type property of a DecryptionProfileSummary. This constant has a value of “SSL_INBOUND_INSPECTION”
-
__init__
(**kwargs)¶ Initializes a new DecryptionProfileSummary object with values from keyword arguments. 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 DecryptionProfileSummary.
- type (str) – The value to assign to the type property of this DecryptionProfileSummary. Allowed values for this property are: “SSL_INBOUND_INSPECTION”, “SSL_FORWARD_PROXY”, ‘UNKNOWN_ENUM_VALUE’. Any unrecognized values returned by a service will be mapped to ‘UNKNOWN_ENUM_VALUE’.
- parent_resource_id (str) – The value to assign to the parent_resource_id property of this DecryptionProfileSummary.
-
name
¶ [Required] Gets the name of this DecryptionProfileSummary. Name of the secret.
Returns: The name of this DecryptionProfileSummary. Return type: str
-
parent_resource_id
¶ [Required] Gets the parent_resource_id of this DecryptionProfileSummary. OCID of the Network Firewall Policy this decryption profile belongs to.
Returns: The parent_resource_id of this DecryptionProfileSummary. Return type: str
-
type
¶ [Required] Gets the type of this DecryptionProfileSummary. Type of the secrets mapped based on the policy.
- SSL_INBOUND_INSPECTION: For Inbound inspection of SSL traffic.
- SSL_FORWARD_PROXY: For forward proxy certificates for SSL inspection.
Allowed values for this property are: “SSL_INBOUND_INSPECTION”, “SSL_FORWARD_PROXY”, ‘UNKNOWN_ENUM_VALUE’. Any unrecognized values returned by a service will be mapped to ‘UNKNOWN_ENUM_VALUE’.
Returns: The type of this DecryptionProfileSummary. Return type: str
-