PoolOperations.ListComputeNodeExtensions Method

Definition

Enumerates the extensions of the specified ComputeNode.

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

Parameters

poolId
String

The Id of the pool to which the extension belongs.

nodeId
String

The Id of the ComputeNode of the returned extensions.

additionalBehaviors
IEnumerable<BatchClientBehavior>

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

Returns

An IPagedEnumerable<T> that can be used to enumerate certificates asynchronously or synchronously.

Remarks

This method returns immediately; the certificates are retrieved from the Batch service only when the collection is enumerated. Retrieval is non-atomic; certificates are retrieved in pages during enumeration of the collection.

Applies to