Added delete user

This commit is contained in:
Cyber MacGeddon 2026-04-24 14:10:24 +01:00
parent 9ae79ff712
commit ef412f2a99
5 changed files with 129 additions and 0 deletions

View file

@ -201,6 +201,16 @@ class IamClient(RequestResponse):
timeout=timeout,
)
async def delete_user(self, workspace, user_id, actor="",
timeout=IAM_TIMEOUT):
await self._request(
operation="delete-user",
workspace=workspace,
actor=actor,
user_id=user_id,
timeout=timeout,
)
async def create_workspace(self, workspace_record, actor="",
timeout=IAM_TIMEOUT):
resp = await self._request(