Show / Hide Table of Contents

Class OnPremisesConfiguration

On-premises instance configuration.

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

Properties

CaCertificate

PEM representation of the trusted CA's x509 certificate.

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

ClientCertificate

PEM representation of the replica's x509 certificate.

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

ClientKey

PEM representation of the replica's private key. The corresponsing public key is encoded in the client's certificate.

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

DumpFilePath

The dump file to create the Cloud SQL replica.

Declaration
[JsonProperty("dumpFilePath")]
public virtual string DumpFilePath { 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

HostPort

The host and port of the on-premises instance in host:port format

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

Kind

This is always sql#onPremisesConfiguration.

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

Password

The password for connecting to on-premises instance.

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

Username

The username for connecting to on-premises instance.

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

Implements

IDirectResponseSchema
In This Article
Back to top