Show / Hide Table of Contents

Class MutualTlsDetails

Properties used to configure client mTLS verification when API Consumer makes connection to the gateway.

Inheritance
object
MutualTlsDetails
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.ApigatewayService.Models
Assembly: OCI.DotNetSDK.Apigateway.dll
Syntax
public class MutualTlsDetails

Properties

AllowedSans

Declaration
[JsonProperty(PropertyName = "allowedSans")]
public List<string> AllowedSans { get; set; }
Property Value
Type Description
List<string>

Allowed list of CN or SAN which will be used for verification of certificate.

IsVerifiedCertificateRequired

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

Determines whether to enable client verification when API Consumer makes connection to the gateway.

In this article
Back to top