@@ -587,7 +587,7 @@ async def create_user(
587
587
:param email: Email of the user.
588
588
One-Of ('type'): at most one of 'email', 'member' could be set.
589
589
:param tags: Tags associated with the user.
590
- :param member: Details of IAM member. Private Beta feature.
590
+ :param member: Details of IAM member.
591
591
One-Of ('type'): at most one of 'email', 'member' could be set.
592
592
:return: :class:`User <User>`
593
593
@@ -621,7 +621,7 @@ async def update_user_username(
621
621
username : str ,
622
622
) -> User :
623
623
"""
624
- Update an user's username. Private Beta feature.
624
+ Update an user's username.
625
625
:param user_id: ID of the user to update.
626
626
:param username: The new username.
627
627
:return: :class:`User <User>`
@@ -659,7 +659,7 @@ async def update_user_password(
659
659
password : str ,
660
660
) -> User :
661
661
"""
662
- Update an user's password. Private Beta feature.
662
+ Update an user's password.
663
663
:param user_id: ID of the user to update.
664
664
:param password: The new password.
665
665
:return: :class:`User <User>`
@@ -696,7 +696,7 @@ async def create_user_mfaotp(
696
696
user_id : str ,
697
697
) -> MFAOTP :
698
698
"""
699
- Create a MFA OTP. Private Beta feature.
699
+ Create a MFA OTP.
700
700
:param user_id: User ID of the MFA OTP.
701
701
:return: :class:`MFAOTP <MFAOTP>`
702
702
@@ -726,7 +726,7 @@ async def validate_user_mfaotp(
726
726
one_time_password : str ,
727
727
) -> ValidateUserMFAOTPResponse :
728
728
"""
729
- Validate a MFA OTP. Private Beta feature.
729
+ Validate a MFA OTP.
730
730
:param user_id: User ID of the MFA OTP.
731
731
:param one_time_password: A password generated using the OTP.
732
732
:return: :class:`ValidateUserMFAOTPResponse <ValidateUserMFAOTPResponse>`
@@ -763,7 +763,7 @@ async def delete_user_mfaotp(
763
763
user_id : str ,
764
764
) -> None :
765
765
"""
766
- Delete a MFA OTP. Private Beta feature.
766
+ Delete a MFA OTP.
767
767
:param user_id: User ID of the MFA OTP.
768
768
769
769
Usage:
@@ -791,7 +791,7 @@ async def lock_user(
791
791
) -> User :
792
792
"""
793
793
Lock a member.
794
- Lock a member. A locked member cannot log in or use API keys until the locked status is removed. Private Beta feature.
794
+ Lock a member. A locked member cannot log in or use API keys until the locked status is removed.
795
795
:param user_id: ID of the user to lock.
796
796
:return: :class:`User <User>`
797
797
@@ -821,7 +821,6 @@ async def unlock_user(
821
821
) -> User :
822
822
"""
823
823
Unlock a member.
824
- Unlock a member. Private Beta feature.
825
824
:param user_id: ID of the user to unlock.
826
825
:return: :class:`User <User>`
827
826
@@ -851,7 +850,7 @@ async def list_grace_periods(
851
850
) -> ListGracePeriodsResponse :
852
851
"""
853
852
List grace periods of a member.
854
- List the grace periods of a member. Private Beta feature.
853
+ List the grace periods of a member.
855
854
:param user_id: ID of the user to list grace periods for.
856
855
:return: :class:`ListGracePeriodsResponse <ListGracePeriodsResponse>`
857
856
0 commit comments