DataStream v1 API - Class MysqlProfile (2.10.0)

public sealed class MysqlProfile : IMessage<MysqlProfile>, IEquatable<MysqlProfile>, IDeepCloneable<MysqlProfile>, IBufferMessage, IMessage

Reference documentation and code samples for the DataStream v1 API class MysqlProfile.

MySQL database profile.

Inheritance

object > MysqlProfile

Namespace

Google.Cloud.Datastream.V1

Assembly

Google.Cloud.Datastream.V1.dll

Constructors

MysqlProfile()

public MysqlProfile()

MysqlProfile(MysqlProfile)

public MysqlProfile(MysqlProfile other)
Parameter
Name Description
other MysqlProfile

Properties

Hostname

public string Hostname { get; set; }

Required. Hostname for the MySQL connection.

Property Value
Type Description
string

Password

public string Password { get; set; }

Optional. Input only. Password for the MySQL connection. Mutually exclusive with the secret_manager_stored_password field.

Property Value
Type Description
string

Port

public int Port { get; set; }

Port for the MySQL connection, default value is 3306.

Property Value
Type Description
int

SecretManagerStoredPassword

public string SecretManagerStoredPassword { get; set; }

Optional. A reference to a Secret Manager resource name storing the MySQL connection password. Mutually exclusive with the password field.

Property Value
Type Description
string

SslConfig

public MysqlSslConfig SslConfig { get; set; }

SSL configuration for the MySQL connection.

Property Value
Type Description
MysqlSslConfig

Username

public string Username { get; set; }

Required. Username for the MySQL connection.

Property Value
Type Description
string