Show / Hide Table of Contents

Class TlsValidationContext

[Deprecated] Defines the mechanism to obtain the Certificate Authority certificate to validate the client/server certificate. validate the client/server certificate.

Inheritance
System.Object
TlsValidationContext
Implements
Google.Apis.Requests.IDirectResponseSchema
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Google.Apis.Compute.alpha.Data
Assembly: Google.Apis.Compute.alpha.dll
Syntax
public class TlsValidationContext : IDirectResponseSchema

Properties

CertificatePath

The path to the file holding the CA certificate to validate the client or server certificate.

Declaration
[JsonProperty("certificatePath")]
public virtual string CertificatePath { get; set; }
Property Value
Type Description
System.String

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
System.String

SdsConfig

Specifies the config to retrieve certificates through SDS. This field is applicable only if tlsCertificateSource is set to USE_SDS.

Declaration
[JsonProperty("sdsConfig")]
public virtual SdsConfig SdsConfig { get; set; }
Property Value
Type Description
SdsConfig

ValidationSource

Defines how TLS certificates are obtained.

Declaration
[JsonProperty("validationSource")]
public virtual string ValidationSource { get; set; }
Property Value
Type Description
System.String

Implements

Google.Apis.Requests.IDirectResponseSchema
In This Article
Back to top