MonoCloud Management SDK
    Preparing search index...

    Interface RevocationGroupedDelta

    Revocation Grouped Delta Response: Represents a delta certificate revocation list (delta CRL) associated with a base CRL.

    RevocationGroupedDelta

    interface RevocationGroupedDelta {
        base_revocation_id: string;
        creation_time: number;
        crl_number: number;
        delta_crl_number: number;
        id: string;
        issued_at: number;
        issuer_thumbprint: string;
        next_update?: number | null;
        value: string;
    }
    Index

    Properties

    base_revocation_id: string

    The unique identifier of the base (full) revocation entry to which this delta CRL applies.

    RevocationGroupedDelta

    creation_time: number

    Specifies the time at which this revocation entry was created (in Epoch).

    RevocationGroupedDelta

    crl_number: number

    The base CRL number, as defined in the X.509 CRL extensions, identifying the full CRL on which this delta CRL is based.

    RevocationGroupedDelta

    delta_crl_number: number

    The delta CRL number, as defined in the X.509 CRL extensions, identifying the sequence number of this delta update.

    RevocationGroupedDelta

    id: string

    The unique identifier of the delta revocation entry.

    RevocationGroupedDelta

    issued_at: number

    Specifies the time at which the CRL was issued (in Epoch).

    RevocationGroupedDelta

    issuer_thumbprint: string

    The thumbprint of the CA certificate that issued this CRL.

    RevocationGroupedDelta

    next_update?: number | null

    Specifies the time at which the next CRL update is expected (in Epoch).

    RevocationGroupedDelta

    value: string

    The certificate revocation list (CRL) in PEM format.

    RevocationGroupedDelta