MonoCloud Management SDK
    Preparing search index...

    Interface RevocationGrouped

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

    RevocationGrouped

    interface RevocationGrouped {
        creation_time: number;
        crl_number?: number | null;
        deltas: RevocationGroupedDelta[];
        id: string;
        issued_at: number;
        issuer_thumbprint: string;
        next_update?: number | null;
        value: string;
    }
    Index

    Properties

    creation_time: number

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

    RevocationGrouped

    crl_number?: number | null

    The CRL number, as defined in the X.509 CRL extensions, used to identify the version or sequence of the certificate revocation list.

    RevocationGrouped

    Delta CRLs that provide incremental revocation updates for this base CRL.

    RevocationGrouped

    id: string

    The unique identifier of the revocation entry.

    RevocationGrouped

    issued_at: number

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

    RevocationGrouped

    issuer_thumbprint: string

    The thumbprint of the CA certificate that issued this CRL.

    RevocationGrouped

    next_update?: number | null

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

    RevocationGrouped

    value: string

    The certificate revocation list (CRL) in PEM format.

    RevocationGrouped