aip_sdk.alist_sdg_adapters
async aip_sdk.alist_sdg_adapters(page: int = 1, per_page: int = 100, *, workspace_id: str | None = None, client: AsyncAPIClient | None = None, all_workspaces: bool = False) -> list[SdgAdapterInstance]
Async variant of list_sdg_adapters().
Reads your session's workspace unless you name one, and raises if none is set.
Pass all_workspaces=True to read across every workspace you can access.
Parameters
pageint: Page number (1-indexed).per_pageint: Results per page.workspace_idstr | None: Filter to adapters registered in this workspace.clientAsyncAPIClient | None: Optional pre-configured async API client.all_workspacesbool: Read across every workspace you can access.
Returns
list[SdgAdapterInstance]: List of SdgAdapterInstance objects.
Raises
ForbiddenError: Ifworkspace_idnames a workspace you cannot access.InvalidArgumentError: If bothworkspace_idandall_workspacesare given.NoWorkspaceSelectedError: No workspace was passed, none is configured for the session, andall_workspaceswas not set.