DesktopVirtualizationExtensions.GetScalingPlans Method

Definition

Overloads

GetScalingPlans(ResourceGroupResource)

Gets a collection of ScalingPlanResources in the ResourceGroupResource. MockingTo mock this method, please mock GetScalingPlans() instead.

GetScalingPlans(SubscriptionResource, Nullable<Int32>, Nullable<Boolean>, Nullable<Int32>, CancellationToken)

List scaling plans in subscription.

  • Request Path: /subscriptions/{subscriptionId}/providers/Microsoft.DesktopVirtualization/scalingPlans
  • Operation Id: ScalingPlans_ListBySubscription

GetScalingPlans(ResourceGroupResource)

Source:
DesktopVirtualizationExtensions.cs

Gets a collection of ScalingPlanResources in the ResourceGroupResource. MockingTo mock this method, please mock GetScalingPlans() instead.

public static Azure.ResourceManager.DesktopVirtualization.ScalingPlanCollection GetScalingPlans (this Azure.ResourceManager.Resources.ResourceGroupResource resourceGroupResource);
static member GetScalingPlans : Azure.ResourceManager.Resources.ResourceGroupResource -> Azure.ResourceManager.DesktopVirtualization.ScalingPlanCollection
<Extension()>
Public Function GetScalingPlans (resourceGroupResource As ResourceGroupResource) As ScalingPlanCollection

Parameters

resourceGroupResource
ResourceGroupResource

The ResourceGroupResource instance the method will execute against.

Returns

An object representing collection of ScalingPlanResources and their operations over a ScalingPlanResource.

Exceptions

resourceGroupResource is null.

Applies to

GetScalingPlans(SubscriptionResource, Nullable<Int32>, Nullable<Boolean>, Nullable<Int32>, CancellationToken)

Source:
DesktopVirtualizationExtensions.cs

List scaling plans in subscription.

  • Request Path: /subscriptions/{subscriptionId}/providers/Microsoft.DesktopVirtualization/scalingPlans
  • Operation Id: ScalingPlans_ListBySubscription
public static Azure.Pageable<Azure.ResourceManager.DesktopVirtualization.ScalingPlanResource> GetScalingPlans (this Azure.ResourceManager.Resources.SubscriptionResource subscriptionResource, int? pageSize = default, bool? isDescending = default, int? initialSkip = default, System.Threading.CancellationToken cancellationToken = default);
static member GetScalingPlans : Azure.ResourceManager.Resources.SubscriptionResource * Nullable<int> * Nullable<bool> * Nullable<int> * System.Threading.CancellationToken -> Azure.Pageable<Azure.ResourceManager.DesktopVirtualization.ScalingPlanResource>
<Extension()>
Public Function GetScalingPlans (subscriptionResource As SubscriptionResource, Optional pageSize As Nullable(Of Integer) = Nothing, Optional isDescending As Nullable(Of Boolean) = Nothing, Optional initialSkip As Nullable(Of Integer) = Nothing, Optional cancellationToken As CancellationToken = Nothing) As Pageable(Of ScalingPlanResource)

Parameters

subscriptionResource
SubscriptionResource

The SubscriptionResource instance the method will execute against.

pageSize
Nullable<Int32>

Number of items per page.

isDescending
Nullable<Boolean>

Indicates whether the collection is descending.

initialSkip
Nullable<Int32>

Initial number of items to skip.

cancellationToken
CancellationToken

The cancellation token to use.

Returns

A collection of ScalingPlanResource that may take multiple service requests to iterate over.

Exceptions

subscriptionResource is null.

Applies to