Class PoolStartTaskArgs
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Pulumi.Azure.Batch.Inputs
Assembly: Pulumi.Azure.dll
Syntax
public sealed class PoolStartTaskArgs : ResourceArgs
Constructors
View SourcePoolStartTaskArgs()
Declaration
public PoolStartTaskArgs()
Properties
View SourceCommandLine
The command line executed by the start task.
Declaration
public Input<string> CommandLine { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |
Environment
A map of strings (key,value) that represents the environment variables to set in the start task.
Declaration
public InputMap<string> Environment { get; set; }
Property Value
| Type | Description |
|---|---|
| InputMap<System.String> |
MaxTaskRetryCount
The number of retry count. Defaults to 1.
Declaration
public Input<int> MaxTaskRetryCount { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.Int32> |
ResourceFiles
One or more resource_file blocks that describe the files to be downloaded to a compute node.
Declaration
public InputList<PoolStartTaskResourceFileArgs> ResourceFiles { get; set; }
Property Value
| Type | Description |
|---|---|
| InputList<PoolStartTaskResourceFileArgs> |
UserIdentity
A user_identity block that describes the user identity under which the start task runs.
Declaration
public Input<PoolStartTaskUserIdentityArgs> UserIdentity { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<PoolStartTaskUserIdentityArgs> |
WaitForSuccess
A flag that indicates if the Batch pool should wait for the start task to be completed. Default to false.
Declaration
public Input<bool> WaitForSuccess { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.Boolean> |