Show / Hide Table of Contents

Class SslCert

SslCerts Resource

Inheritance
System.Object
SslCert
Implements
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.SQLAdmin.v1beta4.Data
Assembly: Google.Apis.SQLAdmin.v1beta4.dll
Syntax
public class SslCert : IDirectResponseSchema

Properties

Cert

PEM representation.

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

CertSerialNumber

Serial number, as extracted from the certificate.

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

CommonName

User supplied name. Constrained to [a-zA-Z.-_ ]+.

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

CreateTime

The time when the certificate was created in RFC 3339 format, for example 2012-11-15T16:19:00.094Z

Declaration
[JsonProperty("createTime")]
public virtual object CreateTime { get; set; }
Property Value
Type Description
System.Object

ETag

The ETag of the item.

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

ExpirationTime

The time when the certificate expires in RFC 3339 format, for example 2012-11-15T16:19:00.094Z.

Declaration
[JsonProperty("expirationTime")]
public virtual object ExpirationTime { get; set; }
Property Value
Type Description
System.Object

Instance

Name of the database instance.

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

Kind

This is always sql#sslCert.

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

SelfLink

The URI of this resource.

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

Sha1Fingerprint

Sha1 Fingerprint.

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

Implements

IDirectResponseSchema
In This Article
Back to top