DevTestLabsExtensions.GetDevTestLabGlobalSchedules 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
GetDevTestLabGlobalSchedules(ResourceGroupResource) |
Gets a collection of DevTestLabGlobalScheduleResources in the ResourceGroupResource. MockingTo mock this method, please mock GetDevTestLabGlobalSchedules() instead. |
GetDevTestLabGlobalSchedules(SubscriptionResource, String, String, Nullable<Int32>, String, CancellationToken) |
List schedules in a subscription.
|
GetDevTestLabGlobalSchedules(ResourceGroupResource)
- Source:
- DevTestLabsExtensions.cs
- Source:
- DevTestLabsExtensions.cs
Gets a collection of DevTestLabGlobalScheduleResources in the ResourceGroupResource. MockingTo mock this method, please mock GetDevTestLabGlobalSchedules() instead.
public static Azure.ResourceManager.DevTestLabs.DevTestLabGlobalScheduleCollection GetDevTestLabGlobalSchedules (this Azure.ResourceManager.Resources.ResourceGroupResource resourceGroupResource);
static member GetDevTestLabGlobalSchedules : Azure.ResourceManager.Resources.ResourceGroupResource -> Azure.ResourceManager.DevTestLabs.DevTestLabGlobalScheduleCollection
<Extension()>
Public Function GetDevTestLabGlobalSchedules (resourceGroupResource As ResourceGroupResource) As DevTestLabGlobalScheduleCollection
Parameters
- resourceGroupResource
- ResourceGroupResource
The ResourceGroupResource instance the method will execute against.
Returns
An object representing collection of DevTestLabGlobalScheduleResources and their operations over a DevTestLabGlobalScheduleResource.
Exceptions
resourceGroupResource
is null.
Applies to
GetDevTestLabGlobalSchedules(SubscriptionResource, String, String, Nullable<Int32>, String, CancellationToken)
- Source:
- DevTestLabsExtensions.cs
- Source:
- DevTestLabsExtensions.cs
List schedules in a subscription.
- Request Path: /subscriptions/{subscriptionId}/providers/Microsoft.DevTestLab/schedules
- Operation Id: GlobalSchedules_ListBySubscription
public static Azure.Pageable<Azure.ResourceManager.DevTestLabs.DevTestLabGlobalScheduleResource> GetDevTestLabGlobalSchedules (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 GetDevTestLabGlobalSchedules : Azure.ResourceManager.Resources.SubscriptionResource * string * string * Nullable<int> * string * System.Threading.CancellationToken -> Azure.Pageable<Azure.ResourceManager.DevTestLabs.DevTestLabGlobalScheduleResource>
<Extension()>
Public Function GetDevTestLabGlobalSchedules (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 Pageable(Of DevTestLabGlobalScheduleResource)
Parameters
- subscriptionResource
- SubscriptionResource
The SubscriptionResource instance the method will execute against.
- expand
- String
Specify the $expand query. Example: 'properties($select=status)'.
- filter
- String
The filter to apply to the operation. Example: '$filter=contains(name,'myName').
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
A collection of DevTestLabGlobalScheduleResource that may take multiple service requests to iterate over.
Exceptions
subscriptionResource
is null.
Applies to
Azure SDK for .NET