我正在使用邮递员查询Azure消耗REST API。 properties / usageEnd(UTC时间),properties / usageStart(UTC时间)过滤器不起作用
尝试以下选项:
https://management.azure.com/subscriptions/xxxxxxxxxxxx/providers/Microsoft.Consumption/usageDetails?api-version=2019-01-01&filter=properties/usageStart eq \'2019-02-01T00:00:00Z \'和properties / usageEnd eq \'2019-02-14T00:00:00Z \'
usageStart eq'2018-04-01'和用法End eq'2018-05-30'
properties / usageStart eq'2019-02-01T00:00:00Z'和properties / usageEnd eq'2019-02-14T00:00:00Z'
usageStart eq 17/10/2018 15:18:06和useEnd eq 17/10/2018 16:18:06
我实际上是用于此API的日期过滤器,它无法正常工作。
答案 0 :(得分:1)
对我来说很完美。
https://management.azure.azure.com/subscriptions/{SubscriptionGuid}/providers/Microsoft.Consumption/usageDetails?api-version=2019-01-01&$filter=properties/usageEnd+ge+'2019-02-12'+AND+properties/usageEnd+le+'2019-02-14'
答案 1 :(得分:0)
尝试通过为日期添加毫秒精度来实现。例如,尝试以下操作:
properties/usageStart eq '2019-02-01T00:00:00.0000000Z' and properties/usageEnd eq '2019-02-14T00:00:00.0000000Z'