有没有办法通过PowerShell获取特定资源组的结算信息(花费的时间和金钱)?
答案 0 :(得分:7)
您可以使用Microsoft Azure Powershell的Get-UsageAggregates
cmdlet来获取结算信息。
有关如何使用此Cmdlet的示例,请参阅此博客文章:http://blogs.technet.com/b/keithmayer/archive/2015/06/30/export-azure-subscription-usage-with-new-billing-api-and-powershell.aspx。
首先使用Login-AzureRmAccount
cmdlet,然后使用以下命令获取数据。
Get-UsageAggregates -ReportedStartTime "2016-01-01" -ReportedEndTime "2016-01-07" -AggregationGranularity "Daily" -ShowDetails $true
使用您可以从RateCard API
获得的上述信息和数据,您也可以获得费用。