Show / Hide Table of Contents

Class ManagedDatabasePasswordCredential

User provides a password to be used to connect to the database.

Inheritance
object
ManagedDatabaseCredential
ManagedDatabasePasswordCredential
Inherited Members
ManagedDatabaseCredential.Username
ManagedDatabaseCredential.Role
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.DatabasemanagementService.Models
Assembly: OCI.DotNetSDK.Databasemanagement.dll
Syntax
public class ManagedDatabasePasswordCredential : ManagedDatabaseCredential

Properties

Password

Declaration
[Required(ErrorMessage = "Password is required.")]
[JsonProperty(PropertyName = "password")]
public string Password { get; set; }
Property Value
Type Description
string

The database user's password encoded using BASE64 scheme.

Remarks

Required

In this article
Back to top