你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn

CloudPool.CommitChangesAsync 方法

定义

将对此CloudPool的所有挂起更改提交到Azure Batch服务。

public System.Threading.Tasks.Task CommitChangesAsync (System.Collections.Generic.IEnumerable<Microsoft.Azure.Batch.BatchClientBehavior> additionalBehaviors = default, System.Threading.CancellationToken cancellationToken = default);
member this.CommitChangesAsync : seq<Microsoft.Azure.Batch.BatchClientBehavior> * System.Threading.CancellationToken -> System.Threading.Tasks.Task
Public Function CommitChangesAsync (Optional additionalBehaviors As IEnumerable(Of BatchClientBehavior) = Nothing, Optional cancellationToken As CancellationToken = Nothing) As Task

参数

additionalBehaviors
IEnumerable<BatchClientBehavior>

在 之后应用于 Batch 服务请求的实例集合BatchClientBehaviorCustomBehaviors

cancellationToken
CancellationToken

一个 CancellationToken ,用于控制异步操作的生存期。

返回

表示异步操作的 Task

注解

汇报 Batch 服务上现有的 CloudPool ,方法是将其属性替换为已更改的 属性CloudPool。 忽略未更改的属性。 应用自上次从 Batch 服务检索此实体以来的所有更改, (通过 Refresh(DetailLevel, IEnumerable<BatchClientBehavior>)GetPool(String, DetailLevel, IEnumerable<BatchClientBehavior>)ListPools(DetailLevel, IEnumerable<BatchClientBehavior>)) 。 显式设置为 null 的属性将导致异常,因为 Batch 服务不支持将属性设置为 null 的部分更新。 如果需要将属性设置为 null,请使用 Commit(IEnumerable<BatchClientBehavior>)

此操作以异步方式运行。

适用于