MonoCloud Management SDK
    Preparing search index...

    Interface BannedCertificate

    Banned Certificate Response: Represents a certificate that has been explicitly banned within a trust store.

    BannedCertificate

    interface BannedCertificate {
        creation_time: number;
        id: string;
        reason?: string | null;
        type: BannedCertificateType;
        value: string;
    }
    Index

    Properties

    creation_time: number

    Specifies the time at which the certificate was banned (in Epoch).

    BannedCertificate

    id: string

    The unique identifier of the banned certificate entry.

    BannedCertificate

    reason?: string | null

    The reason explaining why the certificate was banned.

    BannedCertificate

    Specifies the identifier type used to ban the certificate.

    BannedCertificate

    value: string

    The certificate identifier value used for banning.

    BannedCertificate