MonoCloud Management SDK
    Preparing search index...

    Interface BaseCertificateRevocation

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

    BaseCertificateRevocation

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

    Properties

    creation_time: number

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

    BaseCertificateRevocation

    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.

    BaseCertificateRevocation

    id: string

    The unique identifier of the revocation entry.

    BaseCertificateRevocation

    issued_at: number

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

    BaseCertificateRevocation

    issuer_thumbprint: string

    The thumbprint of the CA certificate that issued this CRL.

    BaseCertificateRevocation

    next_update?: number | null

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

    BaseCertificateRevocation

    type: string

    BaseCertificateRevocation

    value: string

    The certificate revocation list (CRL) in PEM format.

    BaseCertificateRevocation