JobUpdateParameter Konstruktoren
Definition
Wichtig
Einige Informationen beziehen sich auf Vorabversionen, die vor dem Release ggf. grundlegend überarbeitet werden. Microsoft übernimmt hinsichtlich der hier bereitgestellten Informationen keine Gewährleistungen, seien sie ausdrücklich oder konkludent.
Überlädt
JobUpdateParameter() |
Initialisiert eine neue instance der JobUpdateParameter-Klasse. |
JobUpdateParameter(PoolInformation, Nullable<Int32>, Nullable<Int32>, Nullable<Boolean>, JobConstraints, IList<MetadataItem>, Nullable<OnAllTasksComplete>) |
Initialisiert eine neue instance der JobUpdateParameter-Klasse. |
JobUpdateParameter()
- Quelle:
- JobUpdateParameter.cs
Initialisiert eine neue instance der JobUpdateParameter-Klasse.
public JobUpdateParameter ();
Public Sub New ()
Gilt für:
JobUpdateParameter(PoolInformation, Nullable<Int32>, Nullable<Int32>, Nullable<Boolean>, JobConstraints, IList<MetadataItem>, Nullable<OnAllTasksComplete>)
- Quelle:
- JobUpdateParameter.cs
Initialisiert eine neue instance der JobUpdateParameter-Klasse.
public JobUpdateParameter (Microsoft.Azure.Batch.Protocol.Models.PoolInformation poolInfo, int? priority = default, int? maxParallelTasks = default, bool? allowTaskPreemption = default, Microsoft.Azure.Batch.Protocol.Models.JobConstraints constraints = default, System.Collections.Generic.IList<Microsoft.Azure.Batch.Protocol.Models.MetadataItem> metadata = default, Microsoft.Azure.Batch.Protocol.Models.OnAllTasksComplete? onAllTasksComplete = default);
new Microsoft.Azure.Batch.Protocol.Models.JobUpdateParameter : Microsoft.Azure.Batch.Protocol.Models.PoolInformation * Nullable<int> * Nullable<int> * Nullable<bool> * Microsoft.Azure.Batch.Protocol.Models.JobConstraints * System.Collections.Generic.IList<Microsoft.Azure.Batch.Protocol.Models.MetadataItem> * Nullable<Microsoft.Azure.Batch.Protocol.Models.OnAllTasksComplete> -> Microsoft.Azure.Batch.Protocol.Models.JobUpdateParameter
Public Sub New (poolInfo As PoolInformation, Optional priority As Nullable(Of Integer) = Nothing, Optional maxParallelTasks As Nullable(Of Integer) = Nothing, Optional allowTaskPreemption As Nullable(Of Boolean) = Nothing, Optional constraints As JobConstraints = Nothing, Optional metadata As IList(Of MetadataItem) = Nothing, Optional onAllTasksComplete As Nullable(Of OnAllTasksComplete) = Nothing)
Parameter
- poolInfo
- PoolInformation
Der Pool, in dem der Batch-Dienst die Aufgaben des Auftrags ausführt.
Die maximale Anzahl von Aufgaben, die parallel für den Auftrag ausgeführt werden können.
Ob Aufgaben in diesem Auftrag von anderen Aufträgen mit hoher Priorität vorbelastet werden können
- constraints
- JobConstraints
Die Ausführungseinschränkungen für den Auftrag.
- metadata
- IList<MetadataItem>
Eine Liste von Name-Wert-Paaren, die dem Auftrag als Metadaten zugeordnet sind.
- onAllTasksComplete
- Nullable<OnAllTasksComplete>
Die Aktion, die der Batch-Dienst ausführen soll, wenn sich alle Aufgaben im Auftrag im Status abgeschlossen befinden.
Gilt für:
Azure SDK for .NET