使用PowerShell的Azure计费信息?

时间:2016-01-08 10:28:17

标签: powershell azure cmdlets

有没有办法通过PowerShell获取特定资源组的结算信息(花费的时间和金钱)?

1 个答案:

答案 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

enter image description here

使用您可以从RateCard API获得的上述信息和数据,您也可以获得费用。