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

GoogleCloudAiplatformV1ContainerSpec

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

The spec of a Container.

interface GoogleCloudAiplatformV1ContainerSpec {
args?: string[];
command?: string[];
imageUri?: string;
}

§Properties

§
args?: string[]
[src]

The arguments to be passed when starting the container.

§
command?: string[]
[src]

The command to be invoked when the container is started. It overrides the entrypoint instruction in Dockerfile when provided.

§

Environment variables to be passed to the container. Maximum limit is 100.

§
imageUri?: string
[src]

Required. The URI of a container image in the Container Registry that is to be run on each worker replica.