MonoCloud Management SDK
    Preparing search index...

    Interface TrustStoreSummary

    Trust Store Summary Response: A lightweight representation of a trust store used for mTLS authentication, returned in list operations.

    TrustStoreSummary

    interface TrustStoreSummary {
        banned_certificates_count: number;
        certificate_count: number;
        creation_time: number;
        enabled: boolean;
        id: string;
        is_default: boolean;
        last_updated: number;
        name: string;
    }
    Index

    Properties

    banned_certificates_count: number

    The total number of certificates explicitly marked as banned in the trust store.

    TrustStoreSummary

    certificate_count: number

    The total number of certificates contained in the trust store.

    TrustStoreSummary

    creation_time: number

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

    TrustStoreSummary

    enabled: boolean

    Indicates whether the trust store is enabled.

    TrustStoreSummary

    id: string

    The unique identifier of the trust store.

    TrustStoreSummary

    is_default: boolean

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

    TrustStoreSummary

    last_updated: number

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

    TrustStoreSummary

    name: string

    Human-readable name for the trust store.

    TrustStoreSummary