Show / Hide Table of Contents

Class SslCertsInsertResponse

SslCert insert response.

Inheritance
System.Object
SslCertsInsertResponse
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 SslCertsInsertResponse : IDirectResponseSchema

Properties

ClientCert

The new client certificate and private key.

Declaration
[JsonProperty("clientCert")]
public virtual SslCertDetail ClientCert { get; set; }
Property Value
Type Description
SslCertDetail

ETag

The ETag of the item.

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

Kind

This is always sql#sslCertsInsert.

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

Operation

The operation to track the ssl certs insert request.

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

ServerCaCert

The server Certificate Authority's certificate. If this is missing you can force a new one to be generated by calling resetSslConfig method on instances resource.

Declaration
[JsonProperty("serverCaCert")]
public virtual SslCert ServerCaCert { get; set; }
Property Value
Type Description
SslCert

Implements

IDirectResponseSchema
In This Article
Back to top