MonoCloud Management SDK
    Preparing search index...

    Trust Store Response: Represents a trust store configuration used for mTLS authentication.

    TrustStore

    interface TrustStore {
        cert_chain: string;
        creation_time: number;
        enabled: boolean;
        id: string;
        is_default: boolean;
        last_updated: number;
        name: string;
        options: TrustStoreOptions;
        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.

    TrustStore

    creation_time: number

    Specifies the creation time of the trust store (in Epoch).

    TrustStore

    enabled: boolean

    Indicates whether the trust store is enabled.

    TrustStore

    id: string

    The unique identifier of the trust store.

    TrustStore

    is_default: boolean

    Indicates whether this trust store is configured as the default store for the mTLS endpoint.

    TrustStore

    last_updated: number

    Specifies the last update time of the trust store (in Epoch).

    TrustStore

    name: string

    Human-readable name for the trust store.

    TrustStore

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

    TrustStore

    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.

    TrustStore