Class AgentContainer
Container runnable representation on the agent side.
Implements
Inherited Members
Namespace: Google.Apis.Batch.v1.Data
Assembly: Google.Apis.Batch.v1.dll
Syntax
public class AgentContainer : IDirectResponseSchema
Properties
Commands
Overrides the CMD
specified in the container. If there is an ENTRYPOINT (either in the container image or
with the entrypoint field below) then commands are appended as arguments to the ENTRYPOINT.
Declaration
[JsonProperty("commands")]
public virtual IList<string> Commands { 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 |
Entrypoint
Overrides the ENTRYPOINT
specified in the container.
Declaration
[JsonProperty("entrypoint")]
public virtual string Entrypoint { get; set; }
Property Value
Type | Description |
---|---|
string |
ImageUri
The URI to pull the container image from.
Declaration
[JsonProperty("imageUri")]
public virtual string ImageUri { get; set; }
Property Value
Type | Description |
---|---|
string |
Options
Arbitrary additional options to include in the "docker run" command when running this container, e.g. "--network host".
Declaration
[JsonProperty("options")]
public virtual string Options { get; set; }
Property Value
Type | Description |
---|---|
string |
Volumes
Volumes to mount (bind mount) from the host machine files or directories into the container, formatted to match docker run's --volume option, e.g. /foo:/bar, or /foo:/bar:ro
Declaration
[JsonProperty("volumes")]
public virtual IList<string> Volumes { get; set; }
Property Value
Type | Description |
---|---|
IList<string> |