AppServiceEnvironmentResource.GetHistoryForHostingEnvironmentRecommendations 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.Pageable<Azure.ResourceManager.AppService.Models.AppServiceRecommendation> GetHistoryForHostingEnvironmentRecommendations (bool? expiredOnly = default, string filter = default, System.Threading.CancellationToken cancellationToken = default);
abstract member GetHistoryForHostingEnvironmentRecommendations : Nullable<bool> * string * System.Threading.CancellationToken -> Azure.Pageable<Azure.ResourceManager.AppService.Models.AppServiceRecommendation>
override this.GetHistoryForHostingEnvironmentRecommendations : Nullable<bool> * string * System.Threading.CancellationToken -> Azure.Pageable<Azure.ResourceManager.AppService.Models.AppServiceRecommendation>
Public Overridable Function GetHistoryForHostingEnvironmentRecommendations (Optional expiredOnly As Nullable(Of Boolean) = Nothing, Optional filter As String = Nothing, Optional cancellationToken As CancellationToken = Nothing) As Pageable(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

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

Applies to