Show / Hide Table of Contents

Class AppCertificates

Each value of this attribute represent a certificate that this App uses when it acts as an OAuthClient.

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

Properties

CertAlias

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

Certificate alias
SCIM++ Properties:

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

Required

Kid

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

Certificate kid
SCIM++ Properties:

  • caseExact: false
  • idcsSearchable: false
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: default
  • type: string
  • uniqueness: none

Sha1Thumbprint

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

sha1Thumbprint
SCIM++ Properties:

  • caseExact: false
  • idcsSearchable: false
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: default
  • type: string
  • uniqueness: none

X509Base64Certificate

Declaration
[JsonProperty(PropertyName = "x509Base64Certificate")]
public object X509Base64Certificate { get; set; }
Property Value
Type Description
object

Base-64-encoded certificate.
SCIM++ Properties:

  • caseExact: false
  • idcsSearchable: false
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: default
  • type: binary
  • uniqueness: none

X5t

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

Certificate x5t
SCIM++ Properties:

  • caseExact: false
  • idcsSearchable: false
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: default
  • type: string
  • uniqueness: none
In this article
Back to top