Show / Hide Table of Contents

Class GoogleCloudAiplatformV1beta1PythonPackageSpec

The spec of a Python packaged code.

Inheritance
object
GoogleCloudAiplatformV1beta1PythonPackageSpec
Implements
IDirectResponseSchema
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Google.Apis.Aiplatform.v1beta1.Data
Assembly: Google.Apis.Aiplatform.v1beta1.dll
Syntax
public class GoogleCloudAiplatformV1beta1PythonPackageSpec : IDirectResponseSchema

Properties

Args

Command line arguments to be passed to the Python task.

Declaration
[JsonProperty("args")]
public virtual IList<string> Args { get; set; }
Property Value
Type Description
IList<string>

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
string

Env

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

Declaration
[JsonProperty("env")]
public virtual IList<GoogleCloudAiplatformV1beta1EnvVar> Env { get; set; }
Property Value
Type Description
IList<GoogleCloudAiplatformV1beta1EnvVar>

ExecutorImageUri

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.

Declaration
[JsonProperty("executorImageUri")]
public virtual string ExecutorImageUri { get; set; }
Property Value
Type Description
string

PackageUris

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.

Declaration
[JsonProperty("packageUris")]
public virtual IList<string> PackageUris { get; set; }
Property Value
Type Description
IList<string>

PythonModule

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

Declaration
[JsonProperty("pythonModule")]
public virtual string PythonModule { get; set; }
Property Value
Type Description
string

Implements

IDirectResponseSchema
In this article
Back to top Generated by DocFX