Show / Hide Table of Contents

Class IdentityPropagationTrustKeytab

The keytab stored in the tenancy's Vault. This is required if the identity propagation type is 'SPNEGO'.
SCIM++ Properties:

  • idcsCompositeKey: [secretOcid]
  • idcsSearchable: false
  • multiValued: false
  • mutability: readWrite
  • required: false
  • returned: default
  • type: complex
  • uniqueness: none
Inheritance
object
IdentityPropagationTrustKeytab
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 IdentityPropagationTrustKeytab

Properties

SecretOcid

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

The OCID of the secret. The secret content corresponding to the OCID is expected to be in Base64 encoded content type.
SCIM++ Properties:

  • caseExact: true
  • idcsSearchable: false
  • multiValued: false
  • mutability: readWrite
  • required: true
  • returned: default
  • type: string
  • uniqueness: none
Remarks

Required

SecretVersion

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

The version of the secret. When the version is not specified, then the latest secret version is used during runtime.
SCIM++ Properties:

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