Skip to content

docs(iam): remove beta mentions #929

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Mar 26, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 8 additions & 9 deletions scaleway-async/scaleway_async/iam/v1alpha1/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -587,7 +587,7 @@ async def create_user(
:param email: Email of the user.
One-Of ('type'): at most one of 'email', 'member' could be set.
:param tags: Tags associated with the user.
:param member: Details of IAM member. Private Beta feature.
:param member: Details of IAM member.
One-Of ('type'): at most one of 'email', 'member' could be set.
:return: :class:`User <User>`

Expand Down Expand Up @@ -621,7 +621,7 @@ async def update_user_username(
username: str,
) -> User:
"""
Update an user's username. Private Beta feature.
Update an user's username.
:param user_id: ID of the user to update.
:param username: The new username.
:return: :class:`User <User>`
Expand Down Expand Up @@ -659,7 +659,7 @@ async def update_user_password(
password: str,
) -> User:
"""
Update an user's password. Private Beta feature.
Update an user's password.
:param user_id: ID of the user to update.
:param password: The new password.
:return: :class:`User <User>`
Expand Down Expand Up @@ -696,7 +696,7 @@ async def create_user_mfaotp(
user_id: str,
) -> MFAOTP:
"""
Create a MFA OTP. Private Beta feature.
Create a MFA OTP.
:param user_id: User ID of the MFA OTP.
:return: :class:`MFAOTP <MFAOTP>`

Expand Down Expand Up @@ -726,7 +726,7 @@ async def validate_user_mfaotp(
one_time_password: str,
) -> ValidateUserMFAOTPResponse:
"""
Validate a MFA OTP. Private Beta feature.
Validate a MFA OTP.
:param user_id: User ID of the MFA OTP.
:param one_time_password: A password generated using the OTP.
:return: :class:`ValidateUserMFAOTPResponse <ValidateUserMFAOTPResponse>`
Expand Down Expand Up @@ -763,7 +763,7 @@ async def delete_user_mfaotp(
user_id: str,
) -> None:
"""
Delete a MFA OTP. Private Beta feature.
Delete a MFA OTP.
:param user_id: User ID of the MFA OTP.

Usage:
Expand Down Expand Up @@ -791,7 +791,7 @@ async def lock_user(
) -> User:
"""
Lock a member.
Lock a member. A locked member cannot log in or use API keys until the locked status is removed. Private Beta feature.
Lock a member. A locked member cannot log in or use API keys until the locked status is removed.
:param user_id: ID of the user to lock.
:return: :class:`User <User>`

Expand Down Expand Up @@ -821,7 +821,6 @@ async def unlock_user(
) -> User:
"""
Unlock a member.
Unlock a member. Private Beta feature.
:param user_id: ID of the user to unlock.
:return: :class:`User <User>`

Expand Down Expand Up @@ -851,7 +850,7 @@ async def list_grace_periods(
) -> ListGracePeriodsResponse:
"""
List grace periods of a member.
List the grace periods of a member. Private Beta feature.
List the grace periods of a member.
:param user_id: ID of the user to list grace periods for.
:return: :class:`ListGracePeriodsResponse <ListGracePeriodsResponse>`

Expand Down
17 changes: 8 additions & 9 deletions scaleway/scaleway/iam/v1alpha1/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -587,7 +587,7 @@ def create_user(
:param email: Email of the user.
One-Of ('type'): at most one of 'email', 'member' could be set.
:param tags: Tags associated with the user.
:param member: Details of IAM member. Private Beta feature.
:param member: Details of IAM member.
One-Of ('type'): at most one of 'email', 'member' could be set.
:return: :class:`User <User>`

Expand Down Expand Up @@ -621,7 +621,7 @@ def update_user_username(
username: str,
) -> User:
"""
Update an user's username. Private Beta feature.
Update an user's username.
:param user_id: ID of the user to update.
:param username: The new username.
:return: :class:`User <User>`
Expand Down Expand Up @@ -659,7 +659,7 @@ def update_user_password(
password: str,
) -> User:
"""
Update an user's password. Private Beta feature.
Update an user's password.
:param user_id: ID of the user to update.
:param password: The new password.
:return: :class:`User <User>`
Expand Down Expand Up @@ -696,7 +696,7 @@ def create_user_mfaotp(
user_id: str,
) -> MFAOTP:
"""
Create a MFA OTP. Private Beta feature.
Create a MFA OTP.
:param user_id: User ID of the MFA OTP.
:return: :class:`MFAOTP <MFAOTP>`

Expand Down Expand Up @@ -726,7 +726,7 @@ def validate_user_mfaotp(
one_time_password: str,
) -> ValidateUserMFAOTPResponse:
"""
Validate a MFA OTP. Private Beta feature.
Validate a MFA OTP.
:param user_id: User ID of the MFA OTP.
:param one_time_password: A password generated using the OTP.
:return: :class:`ValidateUserMFAOTPResponse <ValidateUserMFAOTPResponse>`
Expand Down Expand Up @@ -763,7 +763,7 @@ def delete_user_mfaotp(
user_id: str,
) -> None:
"""
Delete a MFA OTP. Private Beta feature.
Delete a MFA OTP.
:param user_id: User ID of the MFA OTP.

Usage:
Expand Down Expand Up @@ -791,7 +791,7 @@ def lock_user(
) -> User:
"""
Lock a member.
Lock a member. A locked member cannot log in or use API keys until the locked status is removed. Private Beta feature.
Lock a member. A locked member cannot log in or use API keys until the locked status is removed.
:param user_id: ID of the user to lock.
:return: :class:`User <User>`

Expand Down Expand Up @@ -821,7 +821,6 @@ def unlock_user(
) -> User:
"""
Unlock a member.
Unlock a member. Private Beta feature.
:param user_id: ID of the user to unlock.
:return: :class:`User <User>`

Expand Down Expand Up @@ -851,7 +850,7 @@ def list_grace_periods(
) -> ListGracePeriodsResponse:
"""
List grace periods of a member.
List the grace periods of a member. Private Beta feature.
List the grace periods of a member.
:param user_id: ID of the user to list grace periods for.
:return: :class:`ListGracePeriodsResponse <ListGracePeriodsResponse>`

Expand Down