Мне нужно получить последние счета с моего аккаунта Azure через CLI или Python SDK.В обоих случаях у меня есть сообщение о том, что мой тип подписки не поддерживается:
CLI:
# az billing invoice show
UnsupportedSubscriptionType - Offer id MS-AZR-0017P is not supported.
Python-SDK:
from azure.mgmt.billing import BillingManagementClient
bil_client = BillingManagementClient(credentials, subscription_id)
for item in bil_client.invoices.list():
print(item)
azure.mgmt.billing.models.error_response.ErrorResponseException: (UnsupportedSubscriptionType) Offer id MS-AZR-0017P is not supported.
Кто-нибудьесть решение?
С уважением,