Yan
Yan

Reputation: 11

Does Azure Python SDK Supports Billing API?

I am new to Azure, and I want to use their billing API (especially Azure Resource Usage). And I hope I can use python to better support the whole project.

Thus, the sample code of Billing API is written in C#, which is not really helpful for me.

I have researched into the Azure Python SDK (http://azure-sdk-for-python.readthedocs.io/en/latest/index.html) for the whole day, but I did not find the class related to the billing API.

I am wondering whether I can find a Python library to call Billing API and help me monitor the usage of the Azure VM?

Appreciate for the help!

Upvotes: 0

Views: 340

Answers (1)

Gary Liu
Gary Liu

Reputation: 13918

It seems that the Billing APIs haven't been implemented into Azure SDK for Python currently.

However, there is the similar requirement with you asked at the GitHub repository of Azure SDK for Python, refer to issue #600. And the MS engineer has answered the issue about the plan of the Azure Python SDK for Billing APIs.

You can monitor the issue thread on GitHub for any update of the SDK.

Upvotes: 1

Related Questions