Class CreateMySqlDbSystemReplicationUserDetails
The credentials for the HeatWave MySQL DB System replication user, containing the username and the OCID of the Vault secret that stores the password.
Inherited Members
Namespace: Oci.DisasterrecoveryService.Models
Assembly: OCI.DotNetSDK.Disasterrecovery.dll
Syntax
public class CreateMySqlDbSystemReplicationUserDetails
Properties
PasswordVaultSecretId
Declaration
[Required(ErrorMessage = "PasswordVaultSecretId is required.")]
[JsonProperty(PropertyName = "passwordVaultSecretId")]
public string PasswordVaultSecretId { get; set; }
Property Value
Type | Description |
---|---|
string | The OCID of the vault secret where the HeatWave MySQL DB System password is stored.
|
Remarks
Required
Username
Declaration
[Required(ErrorMessage = "Username is required.")]
[JsonProperty(PropertyName = "username")]
public string Username { get; set; }
Property Value
Type | Description |
---|---|
string | The user name for connecting to the HeatWave MySQL DB System node.
|
Remarks
Required