PoolOperations.GetPool Method

Definition

Gets the specified CloudPool.

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

Parameters

poolId
String

The id of the pool to get.

detailLevel
DetailLevel

A DetailLevel used for controlling which properties are retrieved from the service.

additionalBehaviors
IEnumerable<BatchClientBehavior>

A collection of BatchClientBehavior instances that are applied to the Batch service request after the CustomBehaviors and detailLevel.

Returns

A CloudPool containing information about the specified Azure Batch pool.

Remarks

This is a blocking operation. For a non-blocking equivalent, see GetPoolAsync(String, DetailLevel, IEnumerable<BatchClientBehavior>, CancellationToken).

Applies to