Show / Hide Table of Contents

Class Credentials

Initial database system credentials that the database system will be provisioned with. The password details are not visible on any subsequent operation, such as GET /dbSystems/{dbSystemId}.

Inheritance
object
Credentials
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.PsqlService.Models
Assembly: OCI.DotNetSDK.Psql.dll
Syntax
public class Credentials

Properties

PasswordDetails

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

Required

Username

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

The database system administrator username.

Remarks

Required

In this article
Back to top