File tree Expand file tree Collapse file tree 4 files changed +26
-6
lines changed
scaleway-async/scaleway_async/iam/v1alpha1
scaleway/scaleway/iam/v1alpha1 Expand file tree Collapse file tree 4 files changed +26
-6
lines changed Original file line number Diff line number Diff line change @@ -584,9 +584,10 @@ async def update_user_password(
584584 send_email : bool ,
585585 ) -> User :
586586 """
587- :param user_id:
588- :param password:
589- :param send_email:
587+ Update an user's password.
588+ :param user_id: ID of the user to update.
589+ :param password: The new password.
590+ :param send_email: Whether or not to send an email alerting the user their password has changed.
590591 :return: :class:`User <User>`
591592
592593 Usage:
Original file line number Diff line number Diff line change @@ -1856,10 +1856,19 @@ class UpdateSSHKeyRequest:
18561856@dataclass
18571857class UpdateUserPasswordRequest :
18581858 user_id : str
1859+ """
1860+ ID of the user to update.
1861+ """
18591862
18601863 password : str
1864+ """
1865+ The new password.
1866+ """
18611867
18621868 send_email : bool
1869+ """
1870+ Whether or not to send an email alerting the user their password has changed.
1871+ """
18631872
18641873
18651874@dataclass
Original file line number Diff line number Diff line change @@ -584,9 +584,10 @@ def update_user_password(
584584 send_email : bool ,
585585 ) -> User :
586586 """
587- :param user_id:
588- :param password:
589- :param send_email:
587+ Update an user's password.
588+ :param user_id: ID of the user to update.
589+ :param password: The new password.
590+ :param send_email: Whether or not to send an email alerting the user their password has changed.
590591 :return: :class:`User <User>`
591592
592593 Usage:
Original file line number Diff line number Diff line change @@ -1856,10 +1856,19 @@ class UpdateSSHKeyRequest:
18561856@dataclass
18571857class UpdateUserPasswordRequest :
18581858 user_id : str
1859+ """
1860+ ID of the user to update.
1861+ """
18591862
18601863 password : str
1864+ """
1865+ The new password.
1866+ """
18611867
18621868 send_email : bool
1869+ """
1870+ Whether or not to send an email alerting the user their password has changed.
1871+ """
18631872
18641873
18651874@dataclass
You can’t perform that action at this time.
0 commit comments