Class MySqlConnectionProfile
Specifies connection parameters required specifically for MySQL databases.
Implements
Inherited Members
Namespace: Google.Apis.DatabaseMigrationService.v1.Data
Assembly: Google.Apis.DatabaseMigrationService.v1.dll
Syntax
public class MySqlConnectionProfile : IDirectResponseSchema
Properties
CloudSqlId
If the source is a Cloud SQL database, use this field to provide the Cloud SQL instance ID of the source.
Declaration
[JsonProperty("cloudSqlId")]
public virtual string CloudSqlId { 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 |
Host
Required. The IP or hostname of the source MySQL database.
Declaration
[JsonProperty("host")]
public virtual string Host { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
Password
Required. Input only. The password for the user that Database Migration Service will be using to connect to the database. This field is not returned on request, and the value is encrypted when stored in Database Migration Service.
Declaration
[JsonProperty("password")]
public virtual string Password { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
PasswordSet
Output only. Indicates If this connection profile password is stored.
Declaration
[JsonProperty("passwordSet")]
public virtual bool? PasswordSet { get; set; }
Property Value
| Type | Description |
|---|---|
| bool? |
Port
Required. The network port of the source MySQL database.
Declaration
[JsonProperty("port")]
public virtual int? Port { get; set; }
Property Value
| Type | Description |
|---|---|
| int? |
Ssl
SSL configuration for the destination to connect to the source database.
Declaration
[JsonProperty("ssl")]
public virtual SslConfig Ssl { get; set; }
Property Value
| Type | Description |
|---|---|
| SslConfig |
Username
Required. The username that Database Migration Service will use to connect to the database. The value is encrypted when stored in Database Migration Service.
Declaration
[JsonProperty("username")]
public virtual string Username { get; set; }
Property Value
| Type | Description |
|---|---|
| string |