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

GoogleAppsCloudidentityDevicesV1CertificateAttributes

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

Stores information about a certificate.

interface GoogleAppsCloudidentityDevicesV1CertificateAttributes {
fingerprint?: string;
issuer?: string;
serialNumber?: string;
subject?: string;
thumbprint?: string;
readonly validationState?: "CERTIFICATE_VALIDATION_STATE_UNSPECIFIED" | "VALIDATION_SUCCESSFUL" | "VALIDATION_FAILED";
validityExpirationTime?: Date;
validityStartTime?: Date;
}

§Properties

§

The X.509 extension for CertificateTemplate.

§
fingerprint?: string
[src]

The encoded certificate fingerprint.

§
issuer?: string
[src]

The name of the issuer of this certificate.

§
serialNumber?: string
[src]

Serial number of the certificate, Example: "123456789".

§
subject?: string
[src]

The subject name of this certificate.

§
thumbprint?: string
[src]

The certificate thumbprint.

§
readonly validationState?: "CERTIFICATE_VALIDATION_STATE_UNSPECIFIED" | "VALIDATION_SUCCESSFUL" | "VALIDATION_FAILED"
[src]

Output only. Validation state of this certificate.

§
validityExpirationTime?: Date
[src]

Certificate not valid at or after this timestamp.

§
validityStartTime?: Date
[src]

Certificate not valid before this timestamp.