Spaces:
Runtime error
Runtime error
| # Makes the infrastructure folder a Python package | |
| from .intents import ( | |
| ResourceType, PermissionLevel, Environment, ChangeScope, | |
| ProvisionResourceIntent, DeployConfigurationIntent, GrantAccessIntent, | |
| InfrastructureIntent | |
| ) | |
| from .policies import ( | |
| Policy, RegionAllowedPolicy, ResourceTypeRestrictedPolicy, | |
| MaxPermissionLevelPolicy, CostThresholdPolicy, PolicyEvaluator, | |
| allow_all, deny_all | |
| ) | |
| from .cost_estimator import CostEstimator | |
| from .risk_engine import RiskEngine | |
| from .healing_intent import HealingIntent, RecommendedAction, IntentSource | |
| from .azure.azure_simulator import AzureInfrastructureSimulator | |
| __all__ = [ | |
| "ResourceType", "PermissionLevel", "Environment", "ChangeScope", | |
| "ProvisionResourceIntent", "DeployConfigurationIntent", "GrantAccessIntent", | |
| "InfrastructureIntent", "Policy", "RegionAllowedPolicy", | |
| "ResourceTypeRestrictedPolicy", "MaxPermissionLevelPolicy", "CostThresholdPolicy", | |
| "PolicyEvaluator", "allow_all", "deny_all", "CostEstimator", "RiskEngine", | |
| "HealingIntent", "RecommendedAction", "IntentSource", "AzureInfrastructureSimulator" | |
| ] |