Show / Hide Table of Contents

Class ValidateKeyTabsResponseDetails

Validate keytabs response details.

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

Properties

BackupKerberosKeytabEntries

Declaration
[JsonProperty(PropertyName = "backupKerberosKeytabEntries")]
public List<KerberosKeytabEntry> BackupKerberosKeytabEntries { get; set; }
Property Value
Type Description
List<KerberosKeytabEntry>

An array of keytab entries (principal, encryptionType, keyVersionNumber).

CurrentKerberosKeytabEntries

Declaration
[Required(ErrorMessage = "CurrentKerberosKeytabEntries is required.")]
[JsonProperty(PropertyName = "currentKerberosKeytabEntries")]
public List<KerberosKeytabEntry> CurrentKerberosKeytabEntries { get; set; }
Property Value
Type Description
List<KerberosKeytabEntry>

An array of keytab entries (principal, encryptionType, keyVersionNumber).

Remarks

Required

In this article
Back to top