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;
}