LabServicesExtensions.GetLabs 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.
Overloads
GetLabs(SubscriptionResource, String, CancellationToken) |
Returns a list of all labs for a subscription.
|
GetLabs(ResourceGroupResource) |
Gets a collection of LabResources in the ResourceGroupResource. MockingTo mock this method, please mock GetLabs() instead. |
GetLabs(SubscriptionResource, String, CancellationToken)
- Source:
- LabServicesExtensions.cs
- Source:
- LabServicesExtensions.cs
Returns a list of all labs for a subscription.
- Request Path: /subscriptions/{subscriptionId}/providers/Microsoft.LabServices/labs
- Operation Id: Labs_ListBySubscription
public static Azure.Pageable<Azure.ResourceManager.LabServices.LabResource> GetLabs (this Azure.ResourceManager.Resources.SubscriptionResource subscriptionResource, string filter = default, System.Threading.CancellationToken cancellationToken = default);
static member GetLabs : Azure.ResourceManager.Resources.SubscriptionResource * string * System.Threading.CancellationToken -> Azure.Pageable<Azure.ResourceManager.LabServices.LabResource>
<Extension()>
Public Function GetLabs (subscriptionResource As SubscriptionResource, Optional filter As String = Nothing, Optional cancellationToken As CancellationToken = Nothing) As Pageable(Of LabResource)
Parameters
- subscriptionResource
- SubscriptionResource
The SubscriptionResource instance the method will execute against.
- filter
- String
The filter to apply to the operation.
- cancellationToken
- CancellationToken
The cancellation token to use.
Returns
A collection of LabResource that may take multiple service requests to iterate over.
Exceptions
subscriptionResource
is null.
Applies to
GetLabs(ResourceGroupResource)
- Source:
- LabServicesExtensions.cs
- Source:
- LabServicesExtensions.cs
Gets a collection of LabResources in the ResourceGroupResource. MockingTo mock this method, please mock GetLabs() instead.
public static Azure.ResourceManager.LabServices.LabCollection GetLabs (this Azure.ResourceManager.Resources.ResourceGroupResource resourceGroupResource);
static member GetLabs : Azure.ResourceManager.Resources.ResourceGroupResource -> Azure.ResourceManager.LabServices.LabCollection
<Extension()>
Public Function GetLabs (resourceGroupResource As ResourceGroupResource) As LabCollection
Parameters
- resourceGroupResource
- ResourceGroupResource
The ResourceGroupResource instance the method will execute against.
Returns
An object representing collection of LabResources and their operations over a LabResource.
Exceptions
resourceGroupResource
is null.
Applies to
Azure SDK for .NET