DevTestLabsExtensions.GetDevTestLabsAsync Method

Definition

List labs in a subscription.

  • Request Path: /subscriptions/{subscriptionId}/providers/Microsoft.DevTestLab/labs
  • Operation Id: Labs_ListBySubscription
public static Azure.AsyncPageable<Azure.ResourceManager.DevTestLabs.DevTestLabResource> GetDevTestLabsAsync (this Azure.ResourceManager.Resources.SubscriptionResource subscriptionResource, string expand = default, string filter = default, int? top = default, string orderby = default, System.Threading.CancellationToken cancellationToken = default);
static member GetDevTestLabsAsync : Azure.ResourceManager.Resources.SubscriptionResource * string * string * Nullable<int> * string * System.Threading.CancellationToken -> Azure.AsyncPageable<Azure.ResourceManager.DevTestLabs.DevTestLabResource>
<Extension()>
Public Function GetDevTestLabsAsync (subscriptionResource As SubscriptionResource, Optional expand As String = Nothing, Optional filter As String = Nothing, Optional top As Nullable(Of Integer) = Nothing, Optional orderby As String = Nothing, Optional cancellationToken As CancellationToken = Nothing) As AsyncPageable(Of DevTestLabResource)

Parameters

subscriptionResource
SubscriptionResource

The SubscriptionResource instance the method will execute against.

expand
String

Specify the $expand query. Example: 'properties($select=defaultStorageAccount)'.

filter
String

The filter to apply to the operation. Example: '$filter=contains(name,'myName').

top
Nullable<Int32>

The maximum number of resources to return from the operation. Example: '$top=10'.

orderby
String

The ordering expression for the results, using OData notation. Example: '$orderby=name desc'.

cancellationToken
CancellationToken

The cancellation token to use.

Returns

An async collection of DevTestLabResource that may take multiple service requests to iterate over.

Exceptions

subscriptionResource is null.

Applies to