MonoCloud Management SDK
    Preparing search index...

    Hierarchy

    Index

    Constructors

    Properties

    fetcher: Fetcher

    Methods

    • Parameters

      • trustStoreId: string

        The unique identifier of the trust store.

      Returns Promise<MonoCloudResponse<null>>

      The trust store was deleted successfully

      Permanently deletes the specified trust store.

      This operation is irreversible. Any client applications relying on this trust store for mTLS authentication will immediately fail certificate validation.

      TrustStoresClient

    • Parameters

      • trustStoreId: string

        The unique identifier of the trust store.

      • Optionalpage: number

        The page number to retrieve.

      • Optionalsize: number

        The number of revocations to return per page.

      • Optionalsort: string

        Sort expression in the format field:direction, where direction is 1 for ascending or -1 for descending. Supported fields include - creation_time

      Returns Promise<MonoCloudPageResponse<RevocationGrouped[]>>

      RevocationGrouped[] - The certificate revocations were retrieved successfully

      Retrieves a paginated list of certificate revocations (offline CRLs) configured for the specified trust store. Optional query parameters allow sorting of the results.

      TrustStoresClient

    • Parameters

      • Optionalpage: number

        The page number to retrieve.

      • Optionalsize: number

        The number of trust stores to return per page.

      • Optionalsort: string

        Sort expression in the format field:direction, where direction is 1 for ascending or -1 for descending. Supported fields include - name, creation_time and last_updated

      Returns Promise<MonoCloudPageResponse<TrustStoreSummary[]>>

      TrustStoreSummary[] - The trust stores were retrieved successfully

      Retrieves a paginated list of trust stores. Optional query parameters allow sorting of the results.

      TrustStoresClient

    • Parameters

      • trustStoreId: string

        The unique identifier of the trust store.

      • revocationId: string

        The unique identifier of the certificate revocation.

      Returns Promise<MonoCloudResponse<null>>

      The certificate revocation was deleted successfully

      Permanently removes the specified certificate revocation (CRL) from the trust store.

      This operation is irreversible. Revocation checks will no longer include this CRL.

      TrustStoresClient

    • Parameters

      • trustStoreId: string

        The unique identifier of the trust store.

      • banId: string

        The unique identifier of the banned certificate entry.

      Returns Promise<MonoCloudResponse<null>>

      The certificate ban was removed successfully

      Removes a banned-certificate entry from the trust store, allowing matching certificates to be trusted again.

      TrustStoresClient