MonoCloud Management SDK
    Preparing search index...

    Key Material Response: Represents a cryptographic key managed by the platform.

    KeyMaterial

    interface KeyMaterial {
        creation_time: number;
        id: string;
        is_current: boolean;
        revocation_date?: number | null;
        rotation_date?: number | null;
        signing_algorithm: SigningAlgorithms;
        use: KeyMaterialUses;
        valid_from: number;
        valid_to?: number | null;
    }
    Index

    Properties

    creation_time: number

    Specifies the creation time of the key (in Epoch).

    KeyMaterial

    id: string

    The unique identifier of the key material.

    KeyMaterial

    is_current: boolean

    Indicates whether this key is the current default key used for signing operations.

    KeyMaterial

    revocation_date?: number | null

    Specifies the time at which the key material was revoked (in Epoch).

    KeyMaterial

    rotation_date?: number | null

    Specifies the time at which the key material was rotated (in Epoch).

    KeyMaterial

    signing_algorithm: SigningAlgorithms

    Specifies the cryptographic algorithm of the key material used for signing operations.

    KeyMaterial

    Specifies the operational use of the key, defining whether it is currently permitted for token signing or limited to signature validation only.

    KeyMaterial

    valid_from: number

    Specifies the time from which the key material is considered valid (in Epoch).

    KeyMaterial

    valid_to?: number | null

    Specifies the time until which the key material remains valid (in Epoch).

    KeyMaterial