Show / Hide Table of Contents

Class AppExtensionKerberosRealmApp

Kerberos Realm

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

Properties

DefaultEncryptionSaltType

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

The type of salt that the system will use to encrypt Kerberos-specific artifacts of this App unless another type of salt is specified.
SCIM++ Properties:

  • idcsSearchable: false
  • multiValued: false
  • mutability: readWrite
  • required: false
  • returned: request
  • type: string
  • uniqueness: none

MasterKey

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

The primary key that the system should use to encrypt artifacts that are specific to this Kerberos realm -- for example, to encrypt the Principal Key in each KerberosRealmUser.
SCIM++ Properties:

  • idcsSearchable: false
  • idcsSensitive: none
  • multiValued: false
  • mutability: readWrite
  • required: false
  • returned: request
  • type: string
  • uniqueness: none

MaxRenewableAge

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

Max Renewable Age in seconds
SCIM++ Properties:

  • idcsSearchable: false
  • multiValued: false
  • mutability: readWrite
  • required: false
  • returned: request
  • type: integer
  • uniqueness: none

MaxTicketLife

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

Max Ticket Life in seconds
SCIM++ Properties:

  • idcsSearchable: false
  • multiValued: false
  • mutability: readWrite
  • required: false
  • returned: request
  • type: integer
  • uniqueness: none

RealmName

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

The name of the Kerberos Realm that this App uses for authentication.
SCIM++ Properties:

  • idcsSearchable: true
  • multiValued: false
  • mutability: readWrite
  • required: false
  • returned: request
  • type: string
  • uniqueness: none

SupportedEncryptionSaltTypes

Declaration
[JsonProperty(PropertyName = "supportedEncryptionSaltTypes")]
public List<string> SupportedEncryptionSaltTypes { get; set; }
Property Value
Type Description
List<string>

The types of salt that are available for the system to use when encrypting Kerberos-specific artifacts for this App.
SCIM++ Properties:

  • idcsSearchable: false
  • multiValued: true
  • mutability: readWrite
  • required: false
  • returned: request
  • type: string
  • uniqueness: none

TicketFlags

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

Ticket Flags
SCIM++ Properties:

  • idcsSearchable: false
  • multiValued: false
  • mutability: readWrite
  • required: false
  • returned: request
  • type: integer
  • uniqueness: none
In this article
Back to top