Sdílet prostřednictvím


StartTask Konstruktory

Definice

Přetížení

StartTask()

Inicializuje novou instanci StartTask třídy.

StartTask(String, IList<ResourceFile>, IList<EnvironmentSetting>, UserIdentity, Nullable<Int32>, Nullable<Boolean>, TaskContainerSettings)

Inicializuje novou instanci StartTask třídy.

StartTask()

Inicializuje novou instanci StartTask třídy.

public StartTask ();
Public Sub New ()

Platí pro

StartTask(String, IList<ResourceFile>, IList<EnvironmentSetting>, UserIdentity, Nullable<Int32>, Nullable<Boolean>, TaskContainerSettings)

Inicializuje novou instanci StartTask třídy.

public StartTask (string commandLine = default, System.Collections.Generic.IList<Microsoft.Azure.Management.Batch.Models.ResourceFile> resourceFiles = default, System.Collections.Generic.IList<Microsoft.Azure.Management.Batch.Models.EnvironmentSetting> environmentSettings = default, Microsoft.Azure.Management.Batch.Models.UserIdentity userIdentity = default, int? maxTaskRetryCount = default, bool? waitForSuccess = default, Microsoft.Azure.Management.Batch.Models.TaskContainerSettings containerSettings = default);
new Microsoft.Azure.Management.Batch.Models.StartTask : string * System.Collections.Generic.IList<Microsoft.Azure.Management.Batch.Models.ResourceFile> * System.Collections.Generic.IList<Microsoft.Azure.Management.Batch.Models.EnvironmentSetting> * Microsoft.Azure.Management.Batch.Models.UserIdentity * Nullable<int> * Nullable<bool> * Microsoft.Azure.Management.Batch.Models.TaskContainerSettings -> Microsoft.Azure.Management.Batch.Models.StartTask
Public Sub New (Optional commandLine As String = Nothing, Optional resourceFiles As IList(Of ResourceFile) = Nothing, Optional environmentSettings As IList(Of EnvironmentSetting) = Nothing, Optional userIdentity As UserIdentity = Nothing, Optional maxTaskRetryCount As Nullable(Of Integer) = Nothing, Optional waitForSuccess As Nullable(Of Boolean) = Nothing, Optional containerSettings As TaskContainerSettings = Nothing)

Parametry

commandLine
String

Příkazový řádek spouštěcího úkolu.

resourceFiles
IList<ResourceFile>

Seznam souborů, které služba Batch stáhne do výpočetního uzlu před spuštěním příkazového řádku.

environmentSettings
IList<EnvironmentSetting>

Seznam nastavení proměnných prostředí pro spouštěcí úlohu.

userIdentity
UserIdentity

Identita uživatele, pod kterou se spouští spouštěcí úloha.

maxTaskRetryCount
Nullable<Int32>

Maximální počet pokusů o opakování úkolu

waitForSuccess
Nullable<Boolean>

Jestli má služba Batch čekat na úspěšné dokončení spouštěcího úkolu (tj. na ukončení s ukončovacím kódem 0) před plánováním úkolů na výpočetním uzlu.

containerSettings
TaskContainerSettings

Nastavení kontejneru, pod kterým se spouští spouštěcí úloha.

Platí pro