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
Inherited Members
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.
|
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.
|
Remarks
Required