Skip to content

Commit

Permalink
Update abstract_client.py
Browse files Browse the repository at this point in the history
  • Loading branch information
arjunghoshal authored Nov 30, 2023
1 parent feffee5 commit 0bb9574
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions src/awsed/abstract_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,20 @@ def describe_user(self, username: str) -> Any:
"""
pass

@abstractmethod
def patch_user(self, username: str, user: UserRequestJson) -> Any:
"""
Updates details of a specific user
Args:
username: A string representing the username of the user
user: An object containing the modifications to the user information
Returns:
An object confirming the modifications to the user
"""
pass

@abstractmethod
def list_user_launch_profiles(self, username: str) -> Any:
"""
Expand Down

0 comments on commit 0bb9574

Please sign in to comment.