Show / Hide Table of Contents

Class BasicPreferredCredential

The details of the 'BASIC' preferred credential.

Inheritance
object
PreferredCredential
BasicPreferredCredential
Inherited Members
PreferredCredential.CredentialName
PreferredCredential.Status
PreferredCredential.IsAccessible
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 BasicPreferredCredential : PreferredCredential

Properties

PasswordSecretId

Declaration
[JsonProperty(PropertyName = "passwordSecretId")]
public string PasswordSecretId { get; set; }
Property Value
Type Description
string

The OCID of the Vault service secret that contains the database user password.

Role

Declaration
[JsonProperty(PropertyName = "role")]
[JsonConverter(typeof(ResponseEnumConverter))]
public Role? Role { get; set; }
Property Value
Type Description
Role?

The role of the database user.

UserName

Declaration
[JsonProperty(PropertyName = "userName")]
public string UserName { get; set; }
Property Value
Type Description
string

The user name used to connect to the database.

In this article
Back to top