有没有办法通过使用PowerShell来获取账单信息(时间和金钱花费)的特定资源组?
您可以使用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
也可以获得成本.