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/containeranalysis:v1.ts";

The status of the secret with a timestamp.

interface SecretStatus {
message?: string;
status?:
| "STATUS_UNSPECIFIED"
| "UNKNOWN"
| "VALID"
| "INVALID";
updateTime?: Date;
}

§Properties

§
message?: string
[src]

Optional. Optional message about the status code.

§
status?: "STATUS_UNSPECIFIED" | "UNKNOWN" | "VALID" | "INVALID"
[src]

Optional. The status of the secret.

§
updateTime?: Date
[src]

Optional. The time the secret status was last updated.