Show / Hide Table of Contents

Class GetPoolStartTaskArgs

Inheritance
System.Object
InputArgs
InvokeArgs
GetPoolStartTaskArgs
Inherited Members
InvokeArgs.Empty
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 GetPoolStartTaskArgs : InvokeArgs

Constructors

View Source

GetPoolStartTaskArgs()

Declaration
public GetPoolStartTaskArgs()

Properties

View Source

CommandLine

The command line executed by the start task.

Declaration
public string CommandLine { get; set; }
Property Value
Type Description
System.String
View Source

Environment

A map of strings (key,value) that represents the environment variables to set in the start task.

Declaration
public Dictionary<string, string> Environment { get; set; }
Property Value
Type Description
System.Collections.Generic.Dictionary<System.String, System.String>
View Source

MaxTaskRetryCount

The number of retry count.

Declaration
public int? MaxTaskRetryCount { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>
View Source

ResourceFiles

One or more resource_file blocks that describe the files to be downloaded to a compute node.

Declaration
public List<GetPoolStartTaskResourceFileArgs> ResourceFiles { get; set; }
Property Value
Type Description
System.Collections.Generic.List<GetPoolStartTaskResourceFileArgs>
View Source

UserIdentities

A user_identity block that describes the user identity under which the start task runs.

Declaration
public List<GetPoolStartTaskUserIdentityArgs> UserIdentities { get; set; }
Property Value
Type Description
System.Collections.Generic.List<GetPoolStartTaskUserIdentityArgs>
View Source

WaitForSuccess

A flag that indicates if the Batch pool should wait for the start task to be completed.

Declaration
public bool? WaitForSuccess { get; set; }
Property Value
Type Description
System.Nullable<System.Boolean>
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.