Show / Hide Table of Contents

Class CreateSslInboundInspectionProfileDetails

Request for creating SSLInboundInspection used on the firewall policy rules.

Inheritance
object
CreateDecryptionProfileDetails
CreateSslInboundInspectionProfileDetails
Inherited Members
CreateDecryptionProfileDetails.Name
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.NetworkfirewallService.Models
Assembly: OCI.DotNetSDK.Networkfirewall.dll
Syntax
public class CreateSslInboundInspectionProfileDetails : CreateDecryptionProfileDetails

Properties

IsOutOfCapacityBlocked

Declaration
[JsonProperty(PropertyName = "isOutOfCapacityBlocked")]
public bool? IsOutOfCapacityBlocked { get; set; }
Property Value
Type Description
bool?

Whether to block sessions if the firewall is temporarily unable to decrypt their traffic.

IsUnsupportedCipherBlocked

Declaration
[JsonProperty(PropertyName = "isUnsupportedCipherBlocked")]
public bool? IsUnsupportedCipherBlocked { get; set; }
Property Value
Type Description
bool?

Whether to block sessions if SSL cipher suite is not supported.

IsUnsupportedVersionBlocked

Declaration
[JsonProperty(PropertyName = "isUnsupportedVersionBlocked")]
public bool? IsUnsupportedVersionBlocked { get; set; }
Property Value
Type Description
bool?

Whether to block sessions if SSL version is not supported.

In this article
Back to top