Show / Hide Table of Contents

Class LocalFileTlsCertificate

TLS certificate from the filesystem.

Inheritance
object
TlsCertificate
LocalFileTlsCertificate
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 LocalFileTlsCertificate : TlsCertificate

Properties

SecretName

Declaration
[JsonProperty(PropertyName = "secretName")]
public string SecretName { get; set; }
Property Value
Type Description
string

Name of the secret. For Kubernetes this is the name of the Kubernetes secret of type tls. For other platforms the secrets must be mounted at: /etc/oci/secrets/${secretName}/tls.{key,crt}

In this article
Back to top