如何在 Docs.microsoft 聚焦模式下使用过滤器 Odata 表达式

How to use filter Odata Expression in Docs.microsoft Focus Mode

我正在尝试使用 Azure API 根据其类型获取所有资源的列表。

我可以使用 Azure Fluent SDK 实现此目的

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

但是,我无法在 Microsoft doc site 中使用焦点模式完成这项工作。

我的 Actal 请求如下所示

GET /subscriptions//resources?$filter=resourceType%20eq%20'microsoft.insights%2Falertrules'&api-version=2017-05-10

我在焦点编辑器中尝试了同样的方法

But still, this results in all resources, not only the type microsoft.insights/alertrules

我在这里缺少什么?

参考我的测试截图,效果很好,resourceType eq 'Microsoft.Insights/alertRules'

注意:传参后,点击“+”符号