Fix wildcard import in azure cloud provider.
This commit is contained in:
parent
5b0a523e92
commit
bcd774ffe0
@ -1,17 +1,32 @@
|
|||||||
import re
|
import re
|
||||||
from uuid import uuid4
|
|
||||||
from secrets import token_urlsafe
|
from secrets import token_urlsafe
|
||||||
|
from typing import Dict
|
||||||
|
from uuid import uuid4
|
||||||
|
|
||||||
|
from atst.models.application import Application
|
||||||
|
from atst.models.environment import Environment
|
||||||
|
from atst.models.user import User
|
||||||
|
|
||||||
from .cloud_provider_interface import CloudProviderInterface
|
from .cloud_provider_interface import CloudProviderInterface
|
||||||
from .exceptions import *
|
from .exceptions import AuthenticationException
|
||||||
from .models import *
|
from .models import (
|
||||||
|
BillingInstructionCSPPayload,
|
||||||
|
BillingInstructionCSPResult,
|
||||||
|
BillingProfileCreationCSPPayload,
|
||||||
|
BillingProfileCreationCSPResult,
|
||||||
|
BillingProfileTenantAccessCSPPayload,
|
||||||
|
BillingProfileTenantAccessCSPResult,
|
||||||
|
BillingProfileVerificationCSPPayload,
|
||||||
|
BillingProfileVerificationCSPResult,
|
||||||
|
TaskOrderBillingCreationCSPPayload,
|
||||||
|
TaskOrderBillingCreationCSPResult,
|
||||||
|
TaskOrderBillingVerificationCSPPayload,
|
||||||
|
TaskOrderBillingVerificationCSPResult,
|
||||||
|
TenantCSPPayload,
|
||||||
|
TenantCSPResult,
|
||||||
|
)
|
||||||
from .policy import AzurePolicyManager
|
from .policy import AzurePolicyManager
|
||||||
|
|
||||||
from atst.models.user import User
|
|
||||||
from atst.models.environment import Environment
|
|
||||||
from atst.models.application import Application
|
|
||||||
|
|
||||||
|
|
||||||
AZURE_ENVIRONMENT = "AZURE_PUBLIC_CLOUD" # TBD
|
AZURE_ENVIRONMENT = "AZURE_PUBLIC_CLOUD" # TBD
|
||||||
AZURE_SKU_ID = "?" # probably a static sku specific to ATAT/JEDI
|
AZURE_SKU_ID = "?" # probably a static sku specific to ATAT/JEDI
|
||||||
SUBSCRIPTION_ID_REGEX = re.compile(
|
SUBSCRIPTION_ID_REGEX = re.compile(
|
||||||
|
Loading…
x
Reference in New Issue
Block a user