Show / Hide Table of Contents

Class EnabledKerberosAuthDetails

Enable or Update Existing Kerberos Authentication for the database system.

Inheritance
object
KerberosAuthDetails
EnabledKerberosAuthDetails
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 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

In this article
Back to top