MonoCloud Management SDK
    Preparing search index...

    Interface DeltaCertificateRevocation

    Delta Certificate Revocation Response: Represents a delta certificate revocation list (CRL) configured for offline revocation checking within a trust store.

    DeltaCertificateRevocation

    interface DeltaCertificateRevocation {
        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;
        type: string;
        value: string;
    }
    Index

    Properties

    base_revocation_id: string

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

    DeltaCertificateRevocation

    creation_time: number

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

    DeltaCertificateRevocation

    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.

    DeltaCertificateRevocation

    delta_crl_number: number

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

    DeltaCertificateRevocation

    id: string

    The unique identifier of the delta revocation entry.

    DeltaCertificateRevocation

    issued_at: number

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

    DeltaCertificateRevocation

    issuer_thumbprint: string

    The thumbprint of the CA certificate that issued this CRL.

    DeltaCertificateRevocation

    next_update?: number | null

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

    DeltaCertificateRevocation

    type: string

    DeltaCertificateRevocation

    value: string

    The certificate revocation list (CRL) in PEM format.

    DeltaCertificateRevocation