Show / Hide Table of Contents

Class MeshMutualTransportLayerSecurity

Sets a minimum level of mTLS authentication for all virtual services within the mesh.

Inheritance
object
MeshMutualTransportLayerSecurity
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 MeshMutualTransportLayerSecurity

Properties

Minimum

Declaration
[Required(ErrorMessage = "Minimum is required.")]
[JsonProperty(PropertyName = "minimum")]
[JsonConverter(typeof(StringEnumConverter))]
public MutualTransportLayerSecurity.ModeEnum? Minimum { get; set; }
Property Value
Type Description
MutualTransportLayerSecurity.ModeEnum?

DISABLED: No minimum virtual services within this mesh can use any mTLS authentication mode. PERMISSIVE: Virtual services within this mesh can use either PERMISSIVE or STRICT modes. STRICT: All virtual services within this mesh must use STRICT mode.

Remarks

Required

In this article
Back to top