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

GoogleCloudAiplatformV1PythonPackageSpec

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

The spec of a Python packaged code.

interface GoogleCloudAiplatformV1PythonPackageSpec {
args?: string[];
executorImageUri?: string;
packageUris?: string[];
pythonModule?: string;
}

§Properties

§
args?: string[]
[src]

Command line arguments to be passed to the Python task.

§

Environment variables to be passed to the python module. Maximum limit is 100.

§
executorImageUri?: string
[src]

Required. The URI of a container image in Artifact Registry that will run the provided Python package. Vertex AI provides a wide range of executor images with pre-installed packages to meet users' various use cases. See the list of pre-built containers for training. You must use an image from this list.

§
packageUris?: string[]
[src]

Required. The Google Cloud Storage location of the Python package files which are the training program and its dependent packages. The maximum number of package URIs is 100.

§
pythonModule?: string
[src]

Required. The Python module name to run after installing the packages.