Skip to content

docs(iam): remove beta mentions #4614

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
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
🎲🎲🎲 EXIT CODE: 0 🎲🎲🎲
🟥🟥🟥 STDERR️️ 🟥🟥🟥️
Update an user's password. Private Beta feature.
Update an user's password.

USAGE:
scw iam user update-password <user-id ...> [arg=value ...]
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
🎲🎲🎲 EXIT CODE: 0 🎲🎲🎲
🟥🟥🟥 STDERR️️ 🟥🟥🟥️
Update an user's username. Private Beta feature.
Update an user's username.

USAGE:
scw iam user update-username <user-id ...> [arg=value ...]
Expand Down
4 changes: 2 additions & 2 deletions cmd/scw/testdata/test-all-usage-iam-user-usage.golden
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ AVAILABLE COMMANDS:
get Get a given user
list List users of an Organization
update Update a user
update-password Update an user's password. Private Beta feature.
update-username Update an user's username. Private Beta feature.
update-password Update an user's password.
update-username Update an user's username.

FLAGS:
-h, --help help for user
Expand Down
12 changes: 6 additions & 6 deletions docs/commands/iam.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,8 @@ This API allows you to manage Identity and Access Management (IAM) across your S
- [Get a given user](#get-a-given-user)
- [List users of an Organization](#list-users-of-an-organization)
- [Update a user](#update-a-user)
- [Update an user's password. Private Beta feature.](#update-an-user's-password.-private-beta-feature.)
- [Update an user's username. Private Beta feature.](#update-an-user's-username.-private-beta-feature.)
- [Update an user's password.](#update-an-user's-password.)
- [Update an user's username.](#update-an-user's-username.)


## API keys management commands
Expand Down Expand Up @@ -1160,9 +1160,9 @@ scw iam user update <user-id ...> [arg=value ...]



### Update an user's password. Private Beta feature.
### Update an user's password.

Update an user's password. Private Beta feature.
Update an user's password.

**Usage:**

Expand All @@ -1180,9 +1180,9 @@ scw iam user update-password <user-id ...> [arg=value ...]



### Update an user's username. Private Beta feature.
### Update an user's username.

Update an user's username. Private Beta feature.
Update an user's username.

**Usage:**

Expand Down
8 changes: 4 additions & 4 deletions internal/namespaces/iam/v1alpha1/iam_cli.go
Original file line number Diff line number Diff line change
Expand Up @@ -735,8 +735,8 @@ func iamUserCreate() *core.Command {

func iamUserUpdateUsername() *core.Command {
return &core.Command{
Short: `Update an user's username. Private Beta feature.`,
Long: `Update an user's username. Private Beta feature.`,
Short: `Update an user's username.`,
Long: `Update an user's username.`,
Namespace: "iam",
Resource: "user",
Verb: "update-username",
Expand Down Expand Up @@ -770,8 +770,8 @@ func iamUserUpdateUsername() *core.Command {

func iamUserUpdatePassword() *core.Command {
return &core.Command{
Short: `Update an user's password. Private Beta feature.`,
Long: `Update an user's password. Private Beta feature.`,
Short: `Update an user's password.`,
Long: `Update an user's password.`,
Namespace: "iam",
Resource: "user",
Verb: "update-password",
Expand Down
Loading