Skip to content

Commit d23daf8

Browse files
authored
docs(iam): remove beta mentions (#4614)
1 parent b29c7f1 commit d23daf8

File tree

5 files changed

+14
-14
lines changed

5 files changed

+14
-14
lines changed

cmd/scw/testdata/test-all-usage-iam-user-update-password-usage.golden

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
🎲🎲🎲 EXIT CODE: 0 🎲🎲🎲
22
🟥🟥🟥 STDERR️️ 🟥🟥🟥️
3-
Update an user's password. Private Beta feature.
3+
Update an user's password.
44

55
USAGE:
66
scw iam user update-password <user-id ...> [arg=value ...]

cmd/scw/testdata/test-all-usage-iam-user-update-username-usage.golden

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
🎲🎲🎲 EXIT CODE: 0 🎲🎲🎲
22
🟥🟥🟥 STDERR️️ 🟥🟥🟥️
3-
Update an user's username. Private Beta feature.
3+
Update an user's username.
44

55
USAGE:
66
scw iam user update-username <user-id ...> [arg=value ...]

cmd/scw/testdata/test-all-usage-iam-user-usage.golden

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ AVAILABLE COMMANDS:
1111
get Get a given user
1212
list List users of an Organization
1313
update Update a user
14-
update-password Update an user's password. Private Beta feature.
15-
update-username Update an user's username. Private Beta feature.
14+
update-password Update an user's password.
15+
update-username Update an user's username.
1616

1717
FLAGS:
1818
-h, --help help for user

docs/commands/iam.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -58,8 +58,8 @@ This API allows you to manage Identity and Access Management (IAM) across your S
5858
- [Get a given user](#get-a-given-user)
5959
- [List users of an Organization](#list-users-of-an-organization)
6060
- [Update a user](#update-a-user)
61-
- [Update an user's password. Private Beta feature.](#update-an-user's-password.-private-beta-feature.)
62-
- [Update an user's username. Private Beta feature.](#update-an-user's-username.-private-beta-feature.)
61+
- [Update an user's password.](#update-an-user's-password.)
62+
- [Update an user's username.](#update-an-user's-username.)
6363

6464

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

11611161

11621162

1163-
### Update an user's password. Private Beta feature.
1163+
### Update an user's password.
11641164

1165-
Update an user's password. Private Beta feature.
1165+
Update an user's password.
11661166

11671167
**Usage:**
11681168

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

11811181

11821182

1183-
### Update an user's username. Private Beta feature.
1183+
### Update an user's username.
11841184

1185-
Update an user's username. Private Beta feature.
1185+
Update an user's username.
11861186

11871187
**Usage:**
11881188

internal/namespaces/iam/v1alpha1/iam_cli.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -735,8 +735,8 @@ func iamUserCreate() *core.Command {
735735

736736
func iamUserUpdateUsername() *core.Command {
737737
return &core.Command{
738-
Short: `Update an user's username. Private Beta feature.`,
739-
Long: `Update an user's username. Private Beta feature.`,
738+
Short: `Update an user's username.`,
739+
Long: `Update an user's username.`,
740740
Namespace: "iam",
741741
Resource: "user",
742742
Verb: "update-username",
@@ -770,8 +770,8 @@ func iamUserUpdateUsername() *core.Command {
770770

771771
func iamUserUpdatePassword() *core.Command {
772772
return &core.Command{
773-
Short: `Update an user's password. Private Beta feature.`,
774-
Long: `Update an user's password. Private Beta feature.`,
773+
Short: `Update an user's password.`,
774+
Long: `Update an user's password.`,
775775
Namespace: "iam",
776776
Resource: "user",
777777
Verb: "update-password",

0 commit comments

Comments
 (0)