Skip to content

Commit 3eae549

Browse files
author
Devansh Thakur
committed
make generate-docs
1 parent 9d762eb commit 3eae549

2 files changed

Lines changed: 19 additions & 13 deletions

File tree

docs/stackit_beta_intake_user_create.md

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,14 @@ stackit beta intake user create [flags]
1313
### Examples
1414

1515
```
16-
Create a new Intake User with required parameters
17-
$ stackit beta intake user create --display-name intake-user --intake-id xxx --password "SuperSafepass123\!"
16+
Create a new Intake User. The password is entered interactively in the terminal
17+
$ stackit beta intake user create --display-name intake-user --intake-id xxx
18+
19+
Create a new Intake User providing the password from a file
20+
$ stackit beta intake user create --display-name intake-user --intake-id xxx --password @./secret.txt
1821
1922
Create a new Intake User for the dead-letter queue with labels
20-
$ stackit beta intake user create --display-name dlq-user --intake-id xxx --password "SuperSafepass123\!" --type dead-letter --labels "env=prod"
23+
$ stackit beta intake user create --display-name dlq-user --intake-id xxx --password @./secret.txt --type dead-letter --labels "env=prod"
2124
```
2225

2326
### Options
@@ -28,7 +31,7 @@ stackit beta intake user create [flags]
2831
-h, --help Help for "stackit beta intake user create"
2932
--intake-id string The UUID of the Intake to associate the user with
3033
--labels stringToString Labels in key=value format, separated by commas (default [])
31-
--password string Password. Can be a string (deprecated) or a file path, if prefixed with '@' (example: @./secret.txt). Will be read from stdin when empty. Must contain lower, upper, number, and special characters (min 12 chars)
34+
--password string Password. Can be a string (deprecated) or a file path, if prefixed with '@' (example: @./secret.txt). Will be read from stdin when empty. Must contain lower, upper, digits, and special characters (min 12 chars).
3235
--type string Type of user. One of 'intake' (default) or 'dead-letter' (default "intake")
3336
```
3437

docs/stackit_beta_intake_user_update.md

Lines changed: 12 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -16,20 +16,23 @@ stackit beta intake user update USER_ID [flags]
1616
Update the display name of an Intake User
1717
$ stackit beta intake user update xxx --intake-id yyy --display-name "new-user-name"
1818
19-
Update the password and description for an Intake User
20-
$ stackit beta intake user update xxx --intake-id yyy --password "NewSecret123\!" --description "Updated description"
19+
Update the password interactively for an Intake User
20+
$ stackit beta intake user update xxx --intake-id yyy --password
21+
22+
Update the password and description for an Intake User from a file
23+
$ stackit beta intake user update xxx --intake-id yyy --password @./secret.txt --description "Updated description"
2124
```
2225

2326
### Options
2427

2528
```
26-
--description string Description
27-
--display-name string Display name
28-
-h, --help Help for "stackit beta intake user update"
29-
--intake-id string Intake ID
30-
--labels stringToString Labels in key=value format, separated by commas. Example: --labels "key1=value1,key2=value2". (default [])
31-
--password string Password. Can be a string (deprecated) or a file path, if prefixed with '@' (example: @./secret.txt). Will be read from stdin when empty. Must contain lower, upper, number, and special characters (min 12 chars)
32-
--type string Type of user. One of 'intake' or 'dead-letter'
29+
--description string Description
30+
--display-name string Display name
31+
-h, --help Help for "stackit beta intake user update"
32+
--intake-id string Intake ID
33+
--labels stringToString Labels in key=value format, separated by commas. Example: --labels "key1=value1,key2=value2". (default [])
34+
--password string[="__INTERACTIVE__"] Password. Can be a string (deprecated) or a file path, if prefixed with '@' (example: @./secret.txt). If provided without a value, you will be prompted interactively. Must contain lower, upper, digits, and special characters (min 12 chars).
35+
--type string Type of user. One of 'intake' or 'dead-letter'
3336
```
3437

3538
### Options inherited from parent commands

0 commit comments

Comments
 (0)