Azure Consumption REST APIs usageStart 不工作
Azure Consumption REST APIs usageStart not working
我正在使用 postman 查询 Azure Consumption 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\' and properties/usageEnd eq \'2019-02-14T00:00:00Z\'
usageStart eq '2018-04-01' AND usageEnd eq '2018-05-30'
properties/usageStart eq '2019-02-01T00:00:00Z' and properties/usageEnd eq '2019-02-14T00:00:00Z'
usageStart eq 17/10/2018 15:18:06 and usageEnd eq 17/10/2018 16:18:06
我实际上是这个 API 的日期过滤器,但它不起作用。
尝试为您的日期添加毫秒精度。例如,尝试以下操作:
properties/usageStart eq '2019-02-01T00:00:00.0000000Z' and properties/usageEnd eq '2019-02-14T00:00:00.0000000Z'
它非常适合我。
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'
我正在使用 postman 查询 Azure Consumption 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\' and properties/usageEnd eq \'2019-02-14T00:00:00Z\'
usageStart eq '2018-04-01' AND usageEnd eq '2018-05-30'
properties/usageStart eq '2019-02-01T00:00:00Z' and properties/usageEnd eq '2019-02-14T00:00:00Z'
usageStart eq 17/10/2018 15:18:06 and usageEnd eq 17/10/2018 16:18:06
我实际上是这个 API 的日期过滤器,但它不起作用。
尝试为您的日期添加毫秒精度。例如,尝试以下操作:
properties/usageStart eq '2019-02-01T00:00:00.0000000Z' and properties/usageEnd eq '2019-02-14T00:00:00.0000000Z'
它非常适合我。
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'