CloudPool.GetComputeNodeAsync Method (String, DetailLevel, IEnumerable<BatchClientBehavior>)

 

Gets the specified compute node from this pool.

Namespace:   Microsoft.Azure.Batch
Assembly:  Microsoft.Azure.Batch (in Microsoft.Azure.Batch.dll)

Syntax

public Task<ComputeNode> GetComputeNodeAsync(
    string computeNodeId,
    DetailLevel detailLevel = null,
    IEnumerable<BatchClientBehavior> additionalBehaviors = null
)
public:
Task<ComputeNode^>^ GetComputeNodeAsync(
    String^ computeNodeId,
    DetailLevel^ detailLevel = null,
    IEnumerable<BatchClientBehavior^>^ additionalBehaviors = null
)
member GetComputeNodeAsync : 
        computeNodeId:string *
        detailLevel:DetailLevel = null *
        additionalBehaviors:IEnumerable<BatchClientBehavior> = null -> Task<ComputeNode>
Public Function GetComputeNodeAsync (
    computeNodeId As String,
    detailLevel As DetailLevel,
    additionalBehaviors As IEnumerable(Of BatchClientBehavior)
) As Task(Of ComputeNode)

Parameters

  • computeNodeId
    Type: System.String

    The id of the compute node to get from the pool.

Return Value

Type: System.Threading.Tasks.Task<ComputeNode>

A ComputeNode containing information about the specified compute node.

Remarks

The get node operation runs asynchronously.

See Also

CloudPool Class
Microsoft.Azure.Batch Namespace

Return to top