Class GoogleCloudAiplatformV1PythonPackageSpec
The spec of a Python packaged code.
Implements
Inherited Members
Namespace: Google.Apis.Aiplatform.v1.Data
Assembly: Google.Apis.Aiplatform.v1.dll
Syntax
public class GoogleCloudAiplatformV1PythonPackageSpec : 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<GoogleCloudAiplatformV1EnvVar> Env { get; set; }
Property Value
Type | Description |
---|---|
IList<GoogleCloudAiplatformV1EnvVar> |
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 |