feat(tenancy): establish cloud isolation foundations

This commit is contained in:
Junyan Qin
2026-07-19 22:39:58 +08:00
parent 59b1570ead
commit 41772920ef
41 changed files with 1984 additions and 43 deletions
+27
View File
@@ -0,0 +1,27 @@
"""Contracts used by the optional closed Cloud control-plane bootstrap."""
from .bootstrap import (
CloudBootstrapError,
OpenSourceDeployment,
VerifiedCloudDeployment,
resolve_deployment,
)
from .entitlements import (
EntitlementProvider,
EntitlementResolver,
EntitlementSnapshot,
EntitlementUnavailableError,
OpenSourceEntitlementProvider,
)
__all__ = [
'CloudBootstrapError',
'EntitlementProvider',
'EntitlementResolver',
'EntitlementSnapshot',
'EntitlementUnavailableError',
'OpenSourceDeployment',
'OpenSourceEntitlementProvider',
'VerifiedCloudDeployment',
'resolve_deployment',
]