MonoCloud Management SDK
    Preparing search index...

    Interface CertificateRevocation

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

    CertificateRevocation

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

    Properties

    base_revocation_id?: string | null

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

    CertificateRevocation

    creation_time: number

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

    CertificateRevocation

    crl_number?: number | null

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

    CertificateRevocation

    delta_crl_number?: number | null

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

    CertificateRevocation

    id: string

    The unique identifier of the revocation entry.

    CertificateRevocation

    issued_at: number

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

    CertificateRevocation

    issuer_thumbprint: string

    The thumbprint of the CA certificate that issued this CRL.

    CertificateRevocation

    next_update?: number | null

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

    CertificateRevocation

    type: string

    Indicates the type of revocation list (base or delta).

    CertificateRevocation

    value: string

    The certificate revocation list (CRL) in PEM format.

    CertificateRevocation