MonoCloud Management SDK
    Preparing search index...

    Hierarchy

    Index

    Constructors

    Properties

    fetcher: Fetcher

    Methods

    • Parameters

      • Optionalpage: number

        The page number to retrieve.

      • Optionalsize: number

        The number of keys to return per page.

      Returns Promise<MonoCloudPageResponse<KeyMaterial[]>>

      KeyMaterial[] - The key materials were retrieved successfully

      Retrieves a paginated list of active cryptographic key materials managed by the tenant. These keys may be used for signing, encryption, token issuance, or other security-related operations.

      KeysClient

    • Parameters

      • keyId: string

        The unique identifier of the key.

      Returns Promise<MonoCloudResponse<null>>

      The key was revoked successfully

      Revokes the specified cryptographic key, marking it as untrusted and immediately preventing it from being used for token signing or validation.

      This operation is irreversible. Previously issued tokens that rely on this key may no longer be considered valid, depending on the validation strategy.

      KeysClient

    • Parameters

      • keyId: string

        The unique identifier of the key.

      Returns Promise<MonoCloudResponse<null>>

      The key was rotated successfully

      Rotates the specified cryptographic key by generating a new key version and promoting it as the active signing key. The previous key is retained for validation to ensure continuity for previously issued tokens.

      This operation is irreversible.

      KeysClient