Show / Hide Table of Contents

Class IngressListenerClientValidationConfig

Resource representing the TLS configuration used for validating client certificates.

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

Properties

SubjectAlternateNames

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

A list of alternate names to verify the subject identity in the certificate presented by the client.

TrustedCaBundle

Declaration
[JsonProperty(PropertyName = "trustedCaBundle")]
public CaBundle TrustedCaBundle { get; set; }
Property Value
Type Description
CaBundle
In this article
Back to top