Show / Hide Table of Contents

Class DbCredentialsDetail

DB credentials for ADB connection.

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

Properties

SecretId

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

Vault secret OCID containing the corresponding user password.

Remarks

Required

UserName

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

Username for ADB to be created or updated.

Remarks

Required

UserType

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

Type of the user. Allowed values are "ADMIN" or "CUSTOM" or "GGCS".

Remarks

Required

In this article
Back to top