Add MSP onboarding workflow - #152
Open
KarthikSKumar98 wants to merge 9 commits into
Open
Conversation
|
|
||
|
|
||
| class AdapterProtocol(Protocol): | ||
| def now(self) -> datetime: ... |
|
|
||
| class AdapterProtocol(Protocol): | ||
| def now(self) -> datetime: ... | ||
| def list_tenants(self) -> list[TenantInfo]: ... |
| class AdapterProtocol(Protocol): | ||
| def now(self) -> datetime: ... | ||
| def list_tenants(self) -> list[TenantInfo]: ... | ||
| def fresh_tenant_listing(self) -> list[TenantInfo]: ... |
| def now(self) -> datetime: ... | ||
| def list_tenants(self) -> list[TenantInfo]: ... | ||
| def fresh_tenant_listing(self) -> list[TenantInfo]: ... | ||
| def resolve_tenant(self, workspace_id: str) -> TenantInfo: ... |
| def list_tenants(self) -> list[TenantInfo]: ... | ||
| def fresh_tenant_listing(self) -> list[TenantInfo]: ... | ||
| def resolve_tenant(self, workspace_id: str) -> TenantInfo: ... | ||
| def find_tenant_by_name(self, name: str) -> Optional[TenantInfo]: ... |
| phone_number: str = "", | ||
| address: Optional[AddressNew] = None, | ||
| known_tenants: Optional[list[TenantInfo]] = None, | ||
| ) -> TenantInfo: ... |
| address: Optional[AddressNew] = None, | ||
| known_tenants: Optional[list[TenantInfo]] = None, | ||
| ) -> TenantInfo: ... | ||
| def list_eligible_services(self, workspace_id: Optional[str]) -> list[ServiceInfo]: ... |
| def list_eligible_services(self, workspace_id: Optional[str]) -> list[ServiceInfo]: ... | ||
| def services_for_tenants( | ||
| self, tenant_ids: list[str] | ||
| ) -> dict[str, list[ServiceInfo]]: ... |
Prevent sample output from exposing device and subscription identifiers.\nAlso address adjacent static-analysis findings.
| ) -> dict[str, list[ServiceInfo]]: ... | ||
| def submit_service_provisioning( | ||
| self, workspace_id: str, service_manager_id: str, region: str | ||
| ) -> None: ... |
| ) -> None: ... | ||
| def observe_service_provisioning( | ||
| self, workspace_id: str, service_manager_id: str, region: str | ||
| ) -> str: ... |
…prod-msp-onboarding
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
MSP Onboarding
Adds a new workflow for common MSP onboarding operations using MSP API credentials.
Supports:
Ships as:
server.py) - guided onboarding with review, confirmation, progress tracking, CSV upload, and demo modeonboarding.py) - manifest-driven discovery, planning, execution, and resume commandsNote
Proof of concept for getting started with the MSP onboarding APIs in GreenLake and Central. Not optimized for large-scale production use.