Class DbCredentialsDetail
DB credentials for ADB connection.
Inherited Members
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