Skip to content

Latest commit

 

History

History
114 lines (83 loc) · 3.56 KB

Set-AzBatchPool.md

File metadata and controls

114 lines (83 loc) · 3.56 KB
external help file Module Name ms.assetid online version schema
Microsoft.Azure.PowerShell.Cmdlets.Batch.dll-Help.xml
Az.Batch
23893EAE-47F3-45AA-AEB2-354FB8316C25
2.0.0

Set-AzBatchPool

SYNOPSIS

Updates the properties of a pool.

SYNTAX

Set-AzBatchPool [-Pool] <PSCloudPool> -BatchContext <BatchAccountContext>
 [-DefaultProfile <IAzureContextContainer>] [<CommonParameters>]

DESCRIPTION

The Set-AzBatchPool cmdlet updates the properties of a pool in the Azure Batch service. Use the Get-AzBatchPool cmdlet to get a PSCloudPool object. Modify the properties of that object, and then use the current cmdlet to commit your changes to the Batch service.

EXAMPLES

Example 1: Update a pool

$Pool = Get-AzBatchPool "ContosoPool" -BatchContext $Context
$StartTask = New-Object Microsoft.Azure.Commands.Batch.Models.PSStartTask
$StartTask.CommandLine = "cmd /c echo example"
$Pool.StartTask = $StartTask
Set-AzBatchPool -Pool $Pool -BatchContext $Context

The first command gets a pool by using Get-AzBatchPool, and then stores it in the $Pool variable. The next three commands modify the start task specification on the $Pool object. The final command updates the Batch service to match the local object in $Pool.

PARAMETERS

-BatchContext

Specifies the BatchAccountContext instance that this cmdlet uses to interact with the Batch service. If you use the Get-AzBatchAccount cmdlet to get your BatchAccountContext, then Microsoft Entra authentication will be used when interacting with the Batch service. To use shared key authentication instead, use the Get-AzBatchAccountKey cmdlet to get a BatchAccountContext object with its access keys populated. When using shared key authentication, the primary access key is used by default. To change the key to use, set the BatchAccountContext.KeyInUse property.

Type: Microsoft.Azure.Commands.Batch.BatchAccountContext
Parameter Sets: (All)
Aliases:

Required: True
Position: Named
Default value: None
Accept pipeline input: True (ByValue)
Accept wildcard characters: False

-DefaultProfile

The credentials, account, tenant, and subscription used for communication with azure.

Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer
Parameter Sets: (All)
Aliases: AzContext, AzureRmContext, AzureCredential

Required: False
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False

-Pool

Specifies the PSCloudPool to which this cmdlet updates the Batch service.

Type: Microsoft.Azure.Commands.Batch.Models.PSCloudPool
Parameter Sets: (All)
Aliases:

Required: True
Position: 0
Default value: None
Accept pipeline input: True (ByValue)
Accept wildcard characters: False

CommonParameters

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.

INPUTS

Microsoft.Azure.Commands.Batch.Models.PSCloudPool

Microsoft.Azure.Commands.Batch.BatchAccountContext

OUTPUTS

System.Void

NOTES

RELATED LINKS

Get-AzBatchPool

Get-AzBatchAccountKey

New-AzBatchPool

Remove-AzBatchPool

Azure Batch Cmdlets