AppServiceEnvironmentResource.GetHistoryForHostingEnvironmentRecommendationsAsync Method

Definition

Description for Get past recommendations for an app, optionally specified by the time range.

  • Request Path: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/hostingEnvironments/{hostingEnvironmentName}/recommendationHistory
  • Operation Id: Recommendations_ListHistoryForHostingEnvironment
  • Default Api Version: 2021-02-01
public virtual Azure.AsyncPageable<Azure.ResourceManager.AppService.Models.AppServiceRecommendation> GetHistoryForHostingEnvironmentRecommendationsAsync (bool? expiredOnly = default, string filter = default, System.Threading.CancellationToken cancellationToken = default);
abstract member GetHistoryForHostingEnvironmentRecommendationsAsync : Nullable<bool> * string * System.Threading.CancellationToken -> Azure.AsyncPageable<Azure.ResourceManager.AppService.Models.AppServiceRecommendation>
override this.GetHistoryForHostingEnvironmentRecommendationsAsync : Nullable<bool> * string * System.Threading.CancellationToken -> Azure.AsyncPageable<Azure.ResourceManager.AppService.Models.AppServiceRecommendation>
Public Overridable Function GetHistoryForHostingEnvironmentRecommendationsAsync (Optional expiredOnly As Nullable(Of Boolean) = Nothing, Optional filter As String = Nothing, Optional cancellationToken As CancellationToken = Nothing) As AsyncPageable(Of AppServiceRecommendation)

Parameters

expiredOnly
Nullable<Boolean>

Specify <code>false</code> to return all recommendations. The default is <code>true</code>, which returns only expired 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

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

Applies to