你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn

ResourceRecommendationBaseCollection.GetAllAsync 方法

定义

获取订阅的缓存建议。 建议是通过调用 generateRecommendations 生成或计算的。

  • 请求路径/subscriptions/{subscriptionId}/providers/Microsoft.Advisor/recommendations
  • 操作IdRecommendations_List
public virtual Azure.AsyncPageable<Azure.ResourceManager.Advisor.ResourceRecommendationBaseResource> GetAllAsync (string filter = default, int? top = default, string skipToken = default, System.Threading.CancellationToken cancellationToken = default);
abstract member GetAllAsync : string * Nullable<int> * string * System.Threading.CancellationToken -> Azure.AsyncPageable<Azure.ResourceManager.Advisor.ResourceRecommendationBaseResource>
override this.GetAllAsync : string * Nullable<int> * string * System.Threading.CancellationToken -> Azure.AsyncPageable<Azure.ResourceManager.Advisor.ResourceRecommendationBaseResource>
Public Overridable Function GetAllAsync (Optional filter As String = Nothing, Optional top As Nullable(Of Integer) = Nothing, Optional skipToken As String = Nothing, Optional cancellationToken As CancellationToken = Nothing) As AsyncPageable(Of ResourceRecommendationBaseResource)

参数

filter
String

要应用于建议的筛选器。<br>Filter 可以应用于具有运算符 ['eq', 'and', 'or'] 的属性 ['ResourceId', 'ResourceGroup', 'RecommendationTypeGuid', 'Category']。<br>示例:<br>- $filter=Category eq 'Cost' and ResourceGroup eq 'MyResourceGroup'。

top
Nullable<Int32>

如果使用此 API 的分页版本,则每页的建议数。

skipToken
String

用于此 API 分页版本的页延续令牌。

cancellationToken
CancellationToken

要使用的取消标记。

返回

的异步集合 ResourceRecommendationBaseResource ,可能需要多个服务请求进行迭代。

适用于