WebSiteResource.GetHistoryForWebAppRecommendationsAsync 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.
Description for Get past recommendations for an app, optionally specified by the time range.
- Request Path: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{siteName}/recommendationHistory
- Operation Id: Recommendations_ListHistoryForWebApp
- Default Api Version: 2023-12-01
public virtual Azure.AsyncPageable<Azure.ResourceManager.AppService.Models.AppServiceRecommendation> GetHistoryForWebAppRecommendationsAsync (bool? expiredOnly = default, string filter = default, System.Threading.CancellationToken cancellationToken = default);
abstract member GetHistoryForWebAppRecommendationsAsync : Nullable<bool> * string * System.Threading.CancellationToken -> Azure.AsyncPageable<Azure.ResourceManager.AppService.Models.AppServiceRecommendation>
override this.GetHistoryForWebAppRecommendationsAsync : Nullable<bool> * string * System.Threading.CancellationToken -> Azure.AsyncPageable<Azure.ResourceManager.AppService.Models.AppServiceRecommendation>
Public Overridable Function GetHistoryForWebAppRecommendationsAsync (Optional expiredOnly As Nullable(Of Boolean) = Nothing, Optional filter As String = Nothing, Optional cancellationToken As CancellationToken = Nothing) As AsyncPageable(Of AppServiceRecommendation)
Parameters
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
Azure SDK for .NET