Show / Hide Table of Contents

Class CreateKerberosDetails

Kerberos details needed to create configuration.

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

Properties

BackupKeyTabSecretVersion

Declaration
[JsonProperty(PropertyName = "backupKeyTabSecretVersion")]
public int? BackupKeyTabSecretVersion { get; set; }
Property Value
Type Description
int?

Version of the keytab Secret in the Vault to use as a backup.

CurrentKeyTabSecretVersion

Declaration
[JsonProperty(PropertyName = "currentKeyTabSecretVersion")]
public int? CurrentKeyTabSecretVersion { get; set; }
Property Value
Type Description
int?

Version of the keytab Secret in the Vault to use.

IsKerberosEnabled

Declaration
[JsonProperty(PropertyName = "isKerberosEnabled")]
public bool? IsKerberosEnabled { get; set; }
Property Value
Type Description
bool?

Specifies whether to enable or disable Kerberos.

KerberosRealm

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

The Kerberos realm that the mount target will join.

Remarks

Required

KeyTabSecretId

Declaration
[JsonProperty(PropertyName = "keyTabSecretId")]
public string KeyTabSecretId { get; set; }
Property Value
Type Description
string

The OCID of the keytab Secret in the Vault.

In this article
Back to top