Class OnPremisesConfiguration
On-premises instance configuration.
Implements
Inherited Members
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 |
---|---|
string |
ClientCertificate
PEM representation of the replica's x509 certificate.
Declaration
[JsonProperty("clientCertificate")]
public virtual string ClientCertificate { get; set; }
Property Value
Type | Description |
---|---|
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 |
---|---|
string |
DumpFilePath
The dump file to create the Cloud SQL replica.
Declaration
[JsonProperty("dumpFilePath")]
public virtual string DumpFilePath { get; set; }
Property Value
Type | Description |
---|---|
string |
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
Type | Description |
---|---|
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 |
---|---|
string |
Kind
This is always sql#onPremisesConfiguration
.
Declaration
[JsonProperty("kind")]
public virtual string Kind { get; set; }
Property Value
Type | Description |
---|---|
string |
Password
The password for connecting to on-premises instance.
Declaration
[JsonProperty("password")]
public virtual string Password { get; set; }
Property Value
Type | Description |
---|---|
string |
SelectedObjects
Optional. A list of objects that the user selects for replication from an external source instance.
Declaration
[JsonProperty("selectedObjects")]
public virtual IList<SelectedObjects> SelectedObjects { get; set; }
Property Value
Type | Description |
---|---|
IList<SelectedObjects> |
SourceInstance
The reference to Cloud SQL instance if the source is Cloud SQL.
Declaration
[JsonProperty("sourceInstance")]
public virtual InstanceReference SourceInstance { get; set; }
Property Value
Type | Description |
---|---|
InstanceReference |
SslOption
Optional. SslOption for replica connection to the on-premises source.
Declaration
[JsonProperty("sslOption")]
public virtual string SslOption { get; set; }
Property Value
Type | Description |
---|---|
string |
Username
The username for connecting to on-premises instance.
Declaration
[JsonProperty("username")]
public virtual string Username { get; set; }
Property Value
Type | Description |
---|---|
string |