Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

Certificate

import type { Certificate } from "https://googleapis.deno.dev/v1/managedidentities:v1.ts";

Certificate used to configure LDAPS.

interface Certificate {
expireTime?: Date;
issuingCertificate?: Certificate;
subject?: string;
subjectAlternativeName?: string[];
thumbprint?: string;
}

§Properties

§
expireTime?: Date
[src]

The certificate expire time.

§
issuingCertificate?: Certificate
[src]

The issuer of this certificate.

§
subject?: string
[src]

The certificate subject.

§
subjectAlternativeName?: string[]
[src]

The additional hostnames for the domain.

§
thumbprint?: string
[src]

The certificate thumbprint which uniquely identifies the certificate.