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

GoogleCloudAiplatformV1EnvVar

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

Represents an environment variable present in a Container or Python Module.

interface GoogleCloudAiplatformV1EnvVar {
name?: string;
value?: string;
}

§Properties

§
name?: string
[src]

Required. Name of the environment variable. Must be a valid C identifier.

§
value?: string
[src]

Required. Variables that reference a $(VAR_NAME) are expanded using the previous defined environment variables in the container and any service environment variables. If a variable cannot be resolved, the reference in the input string will be unchanged. The $(VAR_NAME) syntax can be escaped with a double $$, ie: $$(VAR_NAME). Escaped references will never be expanded, regardless of whether the variable exists or not.