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

SecretStatus

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

The status of the secret.

interface SecretStatus {
lastUpdatedTime?: Date;
validity?:
| "SECRET_VALIDITY_UNSPECIFIED"
| "SECRET_VALIDITY_UNSUPPORTED"
| "SECRET_VALIDITY_FAILED"
| "SECRET_VALIDITY_INVALID"
| "SECRET_VALIDITY_VALID";
}

§Properties

§
lastUpdatedTime?: Date
[src]

Time that the secret was found.

§
validity?: "SECRET_VALIDITY_UNSPECIFIED" | "SECRET_VALIDITY_UNSUPPORTED" | "SECRET_VALIDITY_FAILED" | "SECRET_VALIDITY_INVALID" | "SECRET_VALIDITY_VALID"
[src]

The validity of the secret.