MonoCloud Management SDK
    Preparing search index...

    Interface PkiTrustStore

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

    PkiTrustStore

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

    PkiTrustStore

    creation_time: number

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

    PkiTrustStore

    enabled: boolean

    Indicates whether the trust store is enabled.

    PkiTrustStore

    id: string

    The unique identifier of the trust store.

    PkiTrustStore

    is_default: boolean

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

    PkiTrustStore

    last_updated: number

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

    PkiTrustStore

    name: string

    Human-readable name for the trust store.

    PkiTrustStore

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

    PkiTrustStore

    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.

    PkiTrustStore