MonoCloud Management SDK
    Preparing search index...

    Interface PatchTrustStoreRequest

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

    PatchTrustStoreRequest

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

    PatchTrustStoreRequest

    enabled?: boolean

    Indicates whether the trust store is enabled.

    PatchTrustStoreRequest

    name?: string

    Human-readable name for the trust store.

    PatchTrustStoreRequest

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

    PatchTrustStoreRequest

    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.

    PatchTrustStoreRequest