MonoCloud Management SDK
    Preparing search index...

    Interface CreateTrustStoreRequest

    Create Trust Store Request: Creates a trust store used to manage trusted certificate authorities for mTLS authentication.

    CreateTrustStoreRequest

    interface CreateTrustStoreRequest {
        cert_chain: string;
        name: string;
        options: CreateTrustStoreOptionsRequest;
        show_in_discovery_document?: boolean;
    }
    Index

    Properties

    cert_chain: string

    PEM-encoded certificate chain (concatenated), used as the trust anchor and intermediates for mTLS validation.

    CreateTrustStoreRequest

    name: string

    Human-readable name for the trust store.

    CreateTrustStoreRequest

    Trust store validation settings (certificate type, revocation, caching, and related policies).

    CreateTrustStoreRequest

    show_in_discovery_document?: boolean

    Specifies whether this trust store’s mTLS endpoint aliases are published under mtls_additional_endpoint_aliases in the OpenID Connect discovery document.

    CreateTrustStoreRequest