你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn。
Enable-AzBatchComputeNodeScheduling
在指定的计算节点上启用任务计划。
语法
Enable-AzBatchComputeNodeScheduling
[-PoolId] <String>
[-Id] <String>
-BatchContext <BatchAccountContext>
[-DefaultProfile <IAzureContextContainer>]
[<CommonParameters>]
Enable-AzBatchComputeNodeScheduling
[[-ComputeNode] <PSComputeNode>]
-BatchContext <BatchAccountContext>
[-DefaultProfile <IAzureContextContainer>]
[<CommonParameters>]
说明
Enable-AzBatchComputeNodeScheduling cmdlet 在指定的计算节点上启用任务计划。 计算节点是专用于特定应用程序工作负荷的 Azure 虚拟机。
示例
示例 1:在计算节点上启用任务计划
$Context = Get-AzBatchAccountKey -AccountName "contosobatchaccount"
Enable-AzBatchComputeNodeScheduling -PoolId "myPool" -Id "tvm-1783593343_34-20151117t222514z" -BatchContext $Context
这些命令在计算节点 tvm-1783593343_34-20151117t222514z 上启用任务计划。 为此,示例中的第一个命令将创建一个对象引用,其中包含批处理帐户 contosobatchaccount 的帐户密钥。 此对象引用存储在名为$context的变量中。 然后,第二个命令使用此对象引用和 Enable-AzBatchComputeNodeScheduling cmdlet 连接到池 myPool,并在 tvm-1783593343_34-20151117t222514z 上启用任务计划。
示例 2:在池中的计算节点上启用任务计划
$Context = Get-AzBatchAccountKey -AccountName "contosobatchaccount"
Get-AzBatchComputeNode -PoolId "Pool06" -BatchContext $Context | Enable-AzBatchComputeNodeScheduling -BatchContext $Context
这些命令在池池06 中找到的所有计算节点上启用任务计划。 若要执行此任务,示例中的第一个命令将创建一个对象引用,其中包含批处理帐户 contosobatchaccount 的帐户密钥。 此对象引用存储在名为$context的变量中。 然后,示例中的第二个命令使用此对象引用和 Get-AzBatchComputeNode 返回 Pool06 中找到的所有计算节点的集合。 然后,该集合通过管道传递给 Enable-AzBatchComputeNodeScheduling cmdlet,该 cmdlet 可在集合中的每个计算节点上启用任务计划。
参数
-BatchContext
指定 此 cmdlet 用于与 Batch 服务交互的 BatchAccountContext 实例。 如果使用 Get-AzBatchAccount cmdlet 获取 BatchAccountContext,Microsoft 则在与 Batch 服务交互时将使用 entra 身份验证。 若要改用共享密钥身份验证,请使用 Get-AzBatchAccountKey cmdlet 获取填充其访问密钥的 BatchAccountContext 对象。 使用共享密钥身份验证时,默认使用主访问密钥。 若要更改要使用的密钥,请设置 BatchAccountContext.KeyInUse 属性。
类型: | BatchAccountContext |
Position: | Named |
默认值: | None |
必需: | True |
接受管道输入: | True |
接受通配符: | False |
-ComputeNode
指定对启用任务计划计算节点的对象引用。 此对象引用是使用 Get-AzBatchComputeNode cmdlet 创建的,并将返回的计算节点对象存储在变量中。
类型: | PSComputeNode |
Position: | 0 |
默认值: | None |
必需: | False |
接受管道输入: | True |
接受通配符: | False |
-DefaultProfile
用于与 Azure 通信的凭据、帐户、租户和订阅。
类型: | IAzureContextContainer |
别名: | AzContext, AzureRmContext, AzureCredential |
Position: | Named |
默认值: | None |
必需: | False |
接受管道输入: | False |
接受通配符: | False |
-Id
指定启用任务计划的计算节点的 ID。
类型: | String |
Position: | 1 |
默认值: | None |
必需: | True |
接受管道输入: | False |
接受通配符: | False |
-PoolId
指定包含启用任务计划的计算节点的批处理池的 ID。
类型: | String |
Position: | 0 |
默认值: | None |
必需: | True |
接受管道输入: | False |
接受通配符: | False |