Show / Hide Table of Contents

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.

Inheritance
object
CreateMySqlDbSystemReplicationUserDetails
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
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.
Example: ocid1.vaultsecret.oc1..uniqueID

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.
Example: user

Remarks

Required

In this article
Back to top