Class EnabledKerberosAuthDetails
Enable or Update Existing Kerberos Authentication for the database system.
Inherited Members
Namespace: Oci.PsqlService.Models
Assembly: OCI.DotNetSDK.Psql.dll
Syntax
public class EnabledKerberosAuthDetails : KerberosAuthDetails
Properties
BackupCredentials
Declaration
[JsonProperty(PropertyName = "backupCredentials")]
public List<KerberosCredential> BackupCredentials { get; set; }
Property Value
| Type | Description |
|---|---|
| List<KerberosCredential> | Optional. List of Kerberos Credentials previously configured for the dbsystem. Currently supports only one entry. |
Credentials
Declaration
[Required(ErrorMessage = "Credentials is required.")]
[JsonProperty(PropertyName = "credentials")]
public List<KerberosCredential> Credentials { get; set; }
Property Value
| Type | Description |
|---|---|
| List<KerberosCredential> | List of Kerberos Credentials to be configured for the dbsystem. Currently supports only one entry. |
Remarks
Required