We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 1fab42a + 7624b53 commit 6574315Copy full SHA for 6574315
src/cloudforet/cost_analysis/connector/azure_cost_mgmt_connector.py
@@ -1,5 +1,6 @@
1
import logging
2
import os
3
+import re
4
import tempfile
5
import time
6
from datetime import datetime
@@ -10,7 +11,11 @@
10
11
import numpy as np
12
import pandas as pd
13
import requests
-from azure.core.exceptions import ResourceNotFoundError, HttpResponseError
14
+from azure.core.exceptions import (
15
+ ResourceNotFoundError,
16
+ HttpResponseError,
17
+ ServiceResponseError,
18
+)
19
from azure.identity import DefaultAzureCredential
20
from azure.mgmt.billing import BillingManagementClient
21
from azure.mgmt.consumption import ConsumptionManagementClient
0 commit comments