Show / Hide Table of Contents

Class UpdateSslInboundInspectionProfileDetails

Update Request for SSLInboundInspection used on the firewall policy rules.

Inheritance
object
UpdateDecryptionProfileDetails
UpdateSslInboundInspectionProfileDetails
Inherited Members
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 UpdateSslInboundInspectionProfileDetails : UpdateDecryptionProfileDetails

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