@@ -16,8 +16,8 @@ Creates a pool in the Batch service.
1616### CloudServiceAndTargetDedicated (Default)
1717```
1818New-AzBatchPool [-Id] <String> -VirtualMachineSize <String> [-DisplayName <String>] [-ResizeTimeout <TimeSpan>]
19- [-TargetDedicatedComputeNodes <Int32>] [-TargetLowPriorityComputeNodes <Int32>]
20- [-MaxTasksPerComputeNode <Int32>] [- TaskSchedulingPolicy <PSTaskSchedulingPolicy>] [-Metadata <IDictionary>]
19+ [-TargetDedicatedComputeNodes <Int32>] [-TargetLowPriorityComputeNodes <Int32>] [-TaskSlotsPerNode <Int32>]
20+ [-TaskSchedulingPolicy <PSTaskSchedulingPolicy>] [-Metadata <IDictionary>]
2121 [-InterComputeNodeCommunicationEnabled] [-StartTask <PSStartTask>]
2222 [-CertificateReferences <PSCertificateReference[]>]
2323 [-ApplicationPackageReferences <PSApplicationPackageReference[]>]
@@ -31,8 +31,8 @@ New-AzBatchPool [-Id] <String> -VirtualMachineSize <String> [-DisplayName <Strin
3131### VirtualMachineAndTargetDedicated
3232```
3333New-AzBatchPool [-Id] <String> -VirtualMachineSize <String> [-DisplayName <String>] [-ResizeTimeout <TimeSpan>]
34- [-TargetDedicatedComputeNodes <Int32>] [-TargetLowPriorityComputeNodes <Int32>]
35- [-MaxTasksPerComputeNode <Int32>] [- TaskSchedulingPolicy <PSTaskSchedulingPolicy>] [-Metadata <IDictionary>]
34+ [-TargetDedicatedComputeNodes <Int32>] [-TargetLowPriorityComputeNodes <Int32>] [-TaskSlotsPerNode <Int32>]
35+ [-TaskSchedulingPolicy <PSTaskSchedulingPolicy>] [-Metadata <IDictionary>]
3636 [-InterComputeNodeCommunicationEnabled] [-StartTask <PSStartTask>]
3737 [-CertificateReferences <PSCertificateReference[]>]
3838 [-ApplicationPackageReferences <PSApplicationPackageReference[]>]
@@ -46,7 +46,7 @@ New-AzBatchPool [-Id] <String> -VirtualMachineSize <String> [-DisplayName <Strin
4646### CloudServiceAndAutoScale
4747```
4848New-AzBatchPool [-Id] <String> -VirtualMachineSize <String> [-DisplayName <String>]
49- [-AutoScaleEvaluationInterval <TimeSpan>] [-AutoScaleFormula <String>] [-MaxTasksPerComputeNode <Int32>]
49+ [-AutoScaleEvaluationInterval <TimeSpan>] [-AutoScaleFormula <String>] [-TaskSlotsPerNode <Int32>]
5050 [-TaskSchedulingPolicy <PSTaskSchedulingPolicy>] [-Metadata <IDictionary>]
5151 [-InterComputeNodeCommunicationEnabled] [-StartTask <PSStartTask>]
5252 [-CertificateReferences <PSCertificateReference[]>]
@@ -61,7 +61,7 @@ New-AzBatchPool [-Id] <String> -VirtualMachineSize <String> [-DisplayName <Strin
6161### VirtualMachineAndAutoScale
6262```
6363New-AzBatchPool [-Id] <String> -VirtualMachineSize <String> [-DisplayName <String>]
64- [-AutoScaleEvaluationInterval <TimeSpan>] [-AutoScaleFormula <String>] [-MaxTasksPerComputeNode <Int32>]
64+ [-AutoScaleEvaluationInterval <TimeSpan>] [-AutoScaleFormula <String>] [-TaskSlotsPerNode <Int32>]
6565 [-TaskSchedulingPolicy <PSTaskSchedulingPolicy>] [-Metadata <IDictionary>]
6666 [-InterComputeNodeCommunicationEnabled] [-StartTask <PSStartTask>]
6767 [-CertificateReferences <PSCertificateReference[]>]
@@ -292,21 +292,6 @@ Accept pipeline input: False
292292Accept wildcard characters : False
293293` ` `
294294
295- ### -MaxTasksPerComputeNode
296- Specifies the maximum number of tasks that can run on a single compute node.
297-
298- ` ` ` yaml
299- Type : System.Nullable`1[System.Int32]
300- Parameter Sets : (All)
301- Aliases :
302-
303- Required : False
304- Position : Named
305- Default value : None
306- Accept pipeline input : False
307- Accept wildcard characters : False
308- ` ` `
309-
310295### -Metadata
311296Specifies the metadata, as key/value pairs, to add to the new pool.
312297The key is the metadata name.
@@ -430,6 +415,21 @@ Accept pipeline input: False
430415Accept wildcard characters : False
431416` ` `
432417
418+ ### -TaskSlotsPerNode
419+ {{ Fill TaskSlotsPerNode Description }}
420+
421+ ` ` ` yaml
422+ Type : System.Nullable`1[System.Int32]
423+ Parameter Sets : (All)
424+ Aliases :
425+
426+ Required : False
427+ Position : Named
428+ Default value : None
429+ Accept pipeline input : False
430+ Accept wildcard characters : False
431+ ` ` `
432+
433433### -UserAccount
434434The list of user accounts to be created on each node in the pool.
435435
0 commit comments