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

UserWorkloadsSecret

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

User workloads Secret used by Airflow tasks that run with Kubernetes executor or KubernetesPodOperator.

interface UserWorkloadsSecret {
data?: {
[key: string]: string;
}
;
name?: string;
}

§Properties

§
data?: {
[key: string]: string;
}
[src]

Optional. The "data" field of Kubernetes Secret, organized in key-value pairs, which can contain sensitive values such as a password, a token, or a key. The values for all keys have to be base64-encoded strings. For details see: https://kubernetes.io/docs/concepts/configuration/secret/

§
name?: string
[src]

Identifier. The resource name of the Secret, in the form: "projects/{projectId}/locations/{locationId}/environments/{environmentId}/userWorkloadsSecrets/{userWorkloadsSecretId}"