Show / Hide Table of Contents

Class KerberosDetails

Details about the Kerberos principals.

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

Properties

KeytabFile

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

Location of the keytab file

Remarks

Required

PrincipalName

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

Name of the Kerberos principal.

Remarks

Required

In this article
Back to top