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

ContaineranalysisGoogleDevtoolsCloudbuildV1Secret

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

Pairs a set of secret environment variables containing encrypted values with the Cloud KMS key to use to decrypt the value. Note: Use kmsKeyName with available_secrets instead of using kmsKeyName with secret. For instructions see: https://cloud.google.com/cloud-build/docs/securing-builds/use-encrypted-credentials.

interface ContaineranalysisGoogleDevtoolsCloudbuildV1Secret {
kmsKeyName?: string;
secretEnv?: {
[key: string]: Uint8Array;
}
;
}

§Properties

§
kmsKeyName?: string
[src]

Cloud KMS key name to use to decrypt these envs.

§
secretEnv?: {
[key: string]: Uint8Array;
}
[src]

Map of environment variable name to its encrypted value. Secret environment variables must be unique across all of a build's secrets, and must be used by at least one build step. Values can be at most 64 KB in size. There can be at most 100 secret values across all of a build's secrets.