Show / Hide Table of Contents

Class IdentityPropagationTrustCaCertChain

Certificate trust store. This is required if identity propagation type is X509.
Added In: 2508041610
SCIM++ Properties:

  • caseExact: true
  • type: complex
  • multiValued: false
  • required: false
  • mutability: readWrite
  • returned: default
  • uniqueness: none
Inheritance
object
IdentityPropagationTrustCaCertChain
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 IdentityPropagationTrustCaCertChain

Properties

IntermediateCAs

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

A list of PEM-encoded intermediate CA certificates.
Added In: 2508041610
SCIM++ Properties:

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

RootCAs

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

A list of PEM-encoded root CA certificates.
Added In: 2508041610
SCIM++ Properties:

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

Required

In this article
Back to top