MonoCloud Management SDK
    Preparing search index...

    Interface PatchPkiTrustStoreRequest

    Patch PKI Trust Store Request: Used to update one or more properties of an existing PKI trust store.

    PatchPkiTrustStoreRequest

    interface PatchPkiTrustStoreRequest {
        cert_chain?: string;
        enabled?: boolean;
        name?: string;
        options?: PatchPkiTrustStoreOptionsRequest;
        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.

    PatchPkiTrustStoreRequest

    enabled?: boolean

    Indicates whether the trust store is enabled.

    PatchPkiTrustStoreRequest

    name?: string

    Human-readable name for the trust store.

    PatchPkiTrustStoreRequest

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

    PatchPkiTrustStoreRequest

    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.

    PatchPkiTrustStoreRequest