PoolOperations.ListComputeNodeExtensions Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
- 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
Azure SDK for .NET