Class GoogleCloudAiplatformV1beta1ContainerSpec
The spec of a Container.
Implements
Inherited Members
Namespace: Google.Apis.Aiplatform.v1beta1.Data
Assembly: Google.Apis.Aiplatform.v1beta1.dll
Syntax
public class GoogleCloudAiplatformV1beta1ContainerSpec : IDirectResponseSchema
Properties
Args
The arguments to be passed when starting the container.
Declaration
[JsonProperty("args")]
public virtual IList<string> Args { get; set; }
Property Value
Type | Description |
---|---|
IList<string> |
Command
The command to be invoked when the container is started. It overrides the entrypoint instruction in Dockerfile when provided.
Declaration
[JsonProperty("command")]
public virtual IList<string> Command { 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 container. Maximum limit is 100.
Declaration
[JsonProperty("env")]
public virtual IList<GoogleCloudAiplatformV1beta1EnvVar> Env { get; set; }
Property Value
Type | Description |
---|---|
IList<GoogleCloudAiplatformV1beta1EnvVar> |
ImageUri
Required. The URI of a container image in the Container Registry that is to be run on each worker replica.
Declaration
[JsonProperty("imageUri")]
public virtual string ImageUri { get; set; }
Property Value
Type | Description |
---|---|
string |