Show / Hide Table of Contents

Class KeyTabSecretDetails

Secret details of keytabs in Vault.

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

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
[Required(ErrorMessage = "CurrentKeyTabSecretVersion is required.")]
[JsonProperty(PropertyName = "currentKeyTabSecretVersion")]
public int? CurrentKeyTabSecretVersion { get; set; }
Property Value
Type Description
int?

Version of the keytab secret in the Vault to use.

Remarks

Required

KeyTabSecretId

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

The OCID of the keytab secret in the Vault.

Remarks

Required

In this article
Back to top