Show / Hide Table of Contents

Class UpdateKerberosDetails

Kerberos details needed to update configuration.

Inheritance
object
UpdateKerberosDetails
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 UpdateKerberosDetails

Properties

BackupKeyTabSecretVersion

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

Version of the keytab secert 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
[JsonProperty(PropertyName = "kerberosRealm")]
public string KerberosRealm { get; set; }
Property Value
Type Description
string

Kerberos realm that this mount target will join.

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