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

NodeRemoveParameter 构造函数

定义

重载

NodeRemoveParameter()

初始化 NodeRemoveParameter 类的新实例。

NodeRemoveParameter(IList<String>, Nullable<TimeSpan>, Nullable<ComputeNodeDeallocationOption>)

初始化 NodeRemoveParameter 类的新实例。

NodeRemoveParameter()

Source:
NodeRemoveParameter.cs

初始化 NodeRemoveParameter 类的新实例。

public NodeRemoveParameter ();
Public Sub New ()

适用于

NodeRemoveParameter(IList<String>, Nullable<TimeSpan>, Nullable<ComputeNodeDeallocationOption>)

Source:
NodeRemoveParameter.cs

初始化 NodeRemoveParameter 类的新实例。

public NodeRemoveParameter (System.Collections.Generic.IList<string> nodeList, TimeSpan? resizeTimeout = default, Microsoft.Azure.Batch.Protocol.Models.ComputeNodeDeallocationOption? nodeDeallocationOption = default);
new Microsoft.Azure.Batch.Protocol.Models.NodeRemoveParameter : System.Collections.Generic.IList<string> * Nullable<TimeSpan> * Nullable<Microsoft.Azure.Batch.Protocol.Models.ComputeNodeDeallocationOption> -> Microsoft.Azure.Batch.Protocol.Models.NodeRemoveParameter
Public Sub New (nodeList As IList(Of String), Optional resizeTimeout As Nullable(Of TimeSpan) = Nothing, Optional nodeDeallocationOption As Nullable(Of ComputeNodeDeallocationOption) = Nothing)

参数

nodeList
IList<String>

包含要从指定池中删除的计算节点的 ID 的列表。

resizeTimeout
Nullable<TimeSpan>

将计算节点删除到池的超时。

nodeDeallocationOption
Nullable<ComputeNodeDeallocationOption>

确定计算节点及其正在运行的任务在选择解除分配后 () 执行的操作。

适用于