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

PoolOperations.EvaluateAutoScale 方法

定义

获取在指定池上计算自动缩放公式的结果。 这主要用于验证自动缩放公式,因为它只是返回结果,而不将公式应用于池。

public Microsoft.Azure.Batch.AutoScaleRun EvaluateAutoScale (string poolId, string autoscaleFormula, System.Collections.Generic.IEnumerable<Microsoft.Azure.Batch.BatchClientBehavior> additionalBehaviors = default);
member this.EvaluateAutoScale : string * string * seq<Microsoft.Azure.Batch.BatchClientBehavior> -> Microsoft.Azure.Batch.AutoScaleRun
Public Function EvaluateAutoScale (poolId As String, autoscaleFormula As String, Optional additionalBehaviors As IEnumerable(Of BatchClientBehavior) = Nothing) As AutoScaleRun

参数

poolId
String

池的 id。

autoscaleFormula
String

要对池进行评估的公式。

additionalBehaviors
IEnumerable<BatchClientBehavior>

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

返回

计算 autoscaleFormula 指定池上的 的结果。

注解

公式经过验证并计算其结果,但不应用于池。 若要将公式应用于池,请使用 EnableAutoScale(String, String, Nullable<TimeSpan>, IEnumerable<BatchClientBehavior>)

此方法不会更改池的任何状态,并且不会影响 LastModifiedETag

这是一个阻止操作。 有关非阻塞等效项,请参阅 EvaluateAutoScaleAsync(String, String, IEnumerable<BatchClientBehavior>, CancellationToken)

适用于