Skip to content

Commit fb87e4c

Browse files
committed
fix generation
1 parent d5d10fe commit fb87e4c

File tree

4 files changed

+17
-17
lines changed

4 files changed

+17
-17
lines changed

docs/commands/iam.md

Lines changed: 7 additions & 7 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
@@ -1045,7 +1045,7 @@ Users management commands.
10451045

10461046
### Create a new user
10471047

1048-
Create a new user. You must define the `organization_id` and the `email` in your request.
1048+
Create a new user. You must define the `organization_id` in your request. If you are adding a member, enter the member's details. If you are adding a guest, you must define the `email` and not add the member attribute.
10491049

10501050
**Usage:**
10511051

@@ -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

docs/commands/vpc.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ This API allows you to manage your Virtual Private Clouds (VPCs) and Private Net
1717
- [Return routes with associated next hop data](#return-routes-with-associated-next-hop-data)
1818
- [Update Route](#update-route)
1919
- [Rule management command](#rule-management-command)
20-
- [Get Acl Rules for VPC](#get-acl-rules-for-vpc)
20+
- [Get ACL Rules for VPC](#get-acl-rules-for-vpc)
2121
- [Set VPC ACL rules](#set-vpc-acl-rules)
2222
- [Subnet management command](#subnet-management-command)
2323
- [VPC management command](#vpc-management-command)
@@ -313,10 +313,10 @@ scw vpc route update <route-id ...> [arg=value ...]
313313

314314
## Rule management command
315315

316-
Acl Rules.
316+
ACL Rules.
317317

318318

319-
### Get Acl Rules for VPC
319+
### Get ACL Rules for VPC
320320

321321
Retrieve a list of ACL rules for a VPC, specified by its VPC ID.
322322

internal/namespaces/iam/v1alpha1/iam_cli.go

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -670,7 +670,7 @@ func iamUserDelete() *core.Command {
670670
func iamUserCreate() *core.Command {
671671
return &core.Command{
672672
Short: `Create a new user`,
673-
Long: `Create a new user. You must define the ` + "`" + `organization_id` + "`" + ` and the ` + "`" + `email` + "`" + ` in your request.`,
673+
Long: `Create a new user. You must define the ` + "`" + `organization_id` + "`" + ` in your request. If you are adding a member, enter the member's details. If you are adding a guest, you must define the ` + "`" + `email` + "`" + ` and not add the member attribute.`,
674674
Namespace: "iam",
675675
Resource: "user",
676676
Verb: "create",
@@ -769,8 +769,8 @@ func iamUserCreate() *core.Command {
769769

770770
func iamUserUpdateUsername() *core.Command {
771771
return &core.Command{
772-
Short: `Update an user's username. Private Beta feature.`,
773-
Long: `Update an user's username. Private Beta feature.`,
772+
Short: `Update an user's username.`,
773+
Long: `Update an user's username.`,
774774
Namespace: "iam",
775775
Resource: "user",
776776
Verb: "update-username",
@@ -805,8 +805,8 @@ func iamUserUpdateUsername() *core.Command {
805805

806806
func iamUserUpdatePassword() *core.Command {
807807
return &core.Command{
808-
Short: `Update an user's password. Private Beta feature.`,
809-
Long: `Update an user's password. Private Beta feature.`,
808+
Short: `Update an user's password.`,
809+
Long: `Update an user's password.`,
810810
Namespace: "iam",
811811
Resource: "user",
812812
Verb: "update-password",

internal/namespaces/vpc/v2/vpc_cli.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ func vpcRoute() *core.Command {
9999
func vpcRule() *core.Command {
100100
return &core.Command{
101101
Short: `Rule management command`,
102-
Long: `Acl Rules.`,
102+
Long: `ACL Rules.`,
103103
Namespace: "vpc",
104104
Resource: "rule",
105105
}
@@ -932,7 +932,7 @@ func vpcRouteDelete() *core.Command {
932932

933933
func vpcRuleGet() *core.Command {
934934
return &core.Command{
935-
Short: `Get Acl Rules for VPC`,
935+
Short: `Get ACL Rules for VPC`,
936936
Long: `Retrieve a list of ACL rules for a VPC, specified by its VPC ID.`,
937937
Namespace: "vpc",
938938
Resource: "rule",

0 commit comments

Comments
 (0)