Class ContainerOverride
Per container override specification.
Implements
Inherited Members
Namespace: Google.Apis.CloudRun.v1.Data
Assembly: Google.Apis.CloudRun.v1.dll
Syntax
public class ContainerOverride : IDirectResponseSchema
Properties
Args
Arguments to the entrypoint. The specified arguments replace and override any existing entrypoint arguments.
Must be empty if clear_args is set to true.
Declaration
[JsonProperty("args")]
public virtual IList<string> Args { get; set; }
Property Value
| Type | Description |
|---|---|
| IList<string> |
ClearArgs
Optional. Set to True to clear all existing arguments.
Declaration
[JsonProperty("clearArgs")]
public virtual bool? ClearArgs { get; set; }
Property Value
| Type | Description |
|---|---|
| bool? |
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
Env
List of environment variables to set in the container. All specified environment variables are merged with existing environment variables. When the specified environment variables exist, these values override any existing values.
Declaration
[JsonProperty("env")]
public virtual IList<EnvVar> Env { get; set; }
Property Value
| Type | Description |
|---|---|
| IList<EnvVar> |
Name
The name of the container specified as a DNS_LABEL.
Declaration
[JsonProperty("name")]
public virtual string Name { get; set; }
Property Value
| Type | Description |
|---|---|
| string |