代码之家  ›  专栏  ›  技术社区  ›  Jayendran

如何在Docs.microsoft Focus模式下使用filter Odata表达式

  •  0
  • Jayendran  · 技术社区  · 6 年前

    我正在尝试使用azureapi获取基于其类型的所有资源的列表。

    我可以使用azurefluentsdk实现这一点

    var resource = resouceManagementClient.Resources.ListAsync(new ODataQuery<GenericResourceFilterInner>(x => x.ResourceType == "microsoft.insights/alertrules")).Result;
    

    然而,我无法得到这项工作的重点模式中的 Microsoft doc site .

    得到 /订阅//resources?$filter=resourceType%20eq%20'microsoft.insights%2fartrules'&api版本=2017-05-10

    enter image description here

    microsoft.insights/alertrules

    我错过了什么?

    1 回复  |  直到 6 年前
        1
  •  1
  •   Joy Wang    6 年前

    resourceType eq 'Microsoft.Insights/alertRules' .

    enter image description here

    注意 :传递参数后,单击

    enter image description here

    推荐文章