我想获得天蓝色资源的可用性。现在我正在使用:
GET "https://management.azure.com/{}/providers/Microsoft.ResourceHealth/
availabilityStatuses/current?api-version=2015-01-01"
我需要获取 jwt 的 api。是否有任何 Python SDK 方法可以做与
https://docs.microsoft.com/en-us/python/api/overview/azure/monitoring?view=azure-python
我想使用类似的东西:
credentials = ServicePrincipalCredentials(
client_id=client_id,
secret=secret_key,
tenant=tenant_id,
cloud_environment=AZURE_PUBLIC_CLOUD
)
client = MonitorManagementClient(
credentials,
subscription_id
)
我不想生成 jwt 令牌并运行 API,而是希望使用 pythonic 方式,我可以使用 client_id、secret、tenant 和 cloud_environment。