MockableAppServiceSubscriptionResource.GetRecommendations Method

Definition

Description for List all recommendations for a subscription.

  • Request Path: /subscriptions/{subscriptionId}/providers/Microsoft.Web/recommendations
  • Operation Id: Recommendations_List
  • Default Api Version: 2023-12-01
public virtual Azure.Pageable<Azure.ResourceManager.AppService.Models.AppServiceRecommendation> GetRecommendations (bool? featured = default, string filter = default, System.Threading.CancellationToken cancellationToken = default);
abstract member GetRecommendations : Nullable<bool> * string * System.Threading.CancellationToken -> Azure.Pageable<Azure.ResourceManager.AppService.Models.AppServiceRecommendation>
override this.GetRecommendations : Nullable<bool> * string * System.Threading.CancellationToken -> Azure.Pageable<Azure.ResourceManager.AppService.Models.AppServiceRecommendation>
Public Overridable Function GetRecommendations (Optional featured As Nullable(Of Boolean) = Nothing, Optional filter As String = Nothing, Optional cancellationToken As CancellationToken = Nothing) As Pageable(Of AppServiceRecommendation)

Parameters

featured
Nullable<Boolean>

Specify <code>true</code> to return only the most critical recommendations. The default is <code>false</code>, which returns all recommendations.

filter
String

Filter is specified by using OData syntax. Example: $filter=channel eq 'Api' or channel eq 'Notification' and startTime eq 2014-01-01T00:00:00Z and endTime eq 2014-12-31T23:59:59Z and timeGrain eq duration'[PT1H|PT1M|P1D].

cancellationToken
CancellationToken

The cancellation token to use.

Returns

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

Applies to