Skip to content
This repository was archived by the owner on Aug 30, 2024. It is now read-only.

Commit b40ec4d

Browse files
committed
Generate docs with new verbose flag
1 parent 349f90d commit b40ec4d

23 files changed

+144
-1
lines changed

docs/coder.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,8 @@ coder provides a CLI for working with an existing Coder Enterprise installation
99
### Options
1010

1111
```
12-
-h, --help help for coder
12+
-h, --help help for coder
13+
-v, --verbose show verbose output
1314
```
1415

1516
### SEE ALSO
@@ -19,6 +20,7 @@ coder provides a CLI for working with an existing Coder Enterprise installation
1920
* [coder envs](coder_envs.md) - Interact with Coder environments
2021
* [coder login](coder_login.md) - Authenticate this client for future operations
2122
* [coder logout](coder_logout.md) - Remove local authentication credentials if any exist
23+
* [coder resources](coder_resources.md) - manager Coder resources with platform-level context (users, organizations, environments)
2224
* [coder secrets](coder_secrets.md) - Interact with Coder Secrets
2325
* [coder sh](coder_sh.md) - Open a shell and execute commands in a Coder environment
2426
* [coder sync](coder_sync.md) - Establish a one way directory sync to a Coder environment

docs/coder_completion.md

+6
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,12 @@ MacOS:
5858
-h, --help help for completion
5959
```
6060

61+
### Options inherited from parent commands
62+
63+
```
64+
-v, --verbose show verbose output
65+
```
66+
6167
### SEE ALSO
6268

6369
* [coder](coder.md) - coder provides a CLI for working with an existing Coder Enterprise installation

docs/coder_config-ssh.md

+6
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,12 @@ coder config-ssh [flags]
1818
--remove remove the auto-generated Coder Enterprise ssh config
1919
```
2020

21+
### Options inherited from parent commands
22+
23+
```
24+
-v, --verbose show verbose output
25+
```
26+
2127
### SEE ALSO
2228

2329
* [coder](coder.md) - coder provides a CLI for working with an existing Coder Enterprise installation

docs/coder_envs.md

+6
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,12 @@ Perform operations on the Coder environments owned by the active user.
1313
--user string Specify the user whose resources to target (default "me")
1414
```
1515

16+
### Options inherited from parent commands
17+
18+
```
19+
-v, --verbose show verbose output
20+
```
21+
1622
### SEE ALSO
1723

1824
* [coder](coder.md) - coder provides a CLI for working with an existing Coder Enterprise installation

docs/coder_envs_ls.md

+1
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ coder envs ls [flags]
2121

2222
```
2323
--user string Specify the user whose resources to target (default "me")
24+
-v, --verbose show verbose output
2425
```
2526

2627
### SEE ALSO

docs/coder_envs_stop.md

+1
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ coder envs stop [environment_name] [flags]
2020

2121
```
2222
--user string Specify the user whose resources to target (default "me")
23+
-v, --verbose show verbose output
2324
```
2425

2526
### SEE ALSO

docs/coder_login.md

+6
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,12 @@ coder login [Coder Enterprise URL eg. https://my.coder.domain/] [flags]
1616
-h, --help help for login
1717
```
1818

19+
### Options inherited from parent commands
20+
21+
```
22+
-v, --verbose show verbose output
23+
```
24+
1925
### SEE ALSO
2026

2127
* [coder](coder.md) - coder provides a CLI for working with an existing Coder Enterprise installation

docs/coder_logout.md

+6
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,12 @@ coder logout [flags]
1616
-h, --help help for logout
1717
```
1818

19+
### Options inherited from parent commands
20+
21+
```
22+
-v, --verbose show verbose output
23+
```
24+
1925
### SEE ALSO
2026

2127
* [coder](coder.md) - coder provides a CLI for working with an existing Coder Enterprise installation

docs/coder_resources.md

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
## coder resources
2+
3+
manager Coder resources with platform-level context (users, organizations, environments)
4+
5+
### Synopsis
6+
7+
manager Coder resources with platform-level context (users, organizations, environments)
8+
9+
### Options
10+
11+
```
12+
-h, --help help for resources
13+
```
14+
15+
### Options inherited from parent commands
16+
17+
```
18+
-v, --verbose show verbose output
19+
```
20+
21+
### SEE ALSO
22+
23+
* [coder](coder.md) - coder provides a CLI for working with an existing Coder Enterprise installation
24+
* [coder resources top](coder_resources_top.md) -

docs/coder_resources_top.md

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
## coder resources top
2+
3+
4+
5+
### Synopsis
6+
7+
8+
9+
```
10+
coder resources top [flags]
11+
```
12+
13+
### Options
14+
15+
```
16+
-h, --help help for top
17+
```
18+
19+
### Options inherited from parent commands
20+
21+
```
22+
-v, --verbose show verbose output
23+
```
24+
25+
### SEE ALSO
26+
27+
* [coder resources](coder_resources.md) - manager Coder resources with platform-level context (users, organizations, environments)

docs/coder_secrets.md

+6
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,12 @@ Interact with secrets objects owned by the active user.
1313
--user string Specify the user whose resources to target (default "me")
1414
```
1515

16+
### Options inherited from parent commands
17+
18+
```
19+
-v, --verbose show verbose output
20+
```
21+
1622
### SEE ALSO
1723

1824
* [coder](coder.md) - coder provides a CLI for working with an existing Coder Enterprise installation

docs/coder_secrets_create.md

+1
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ coder secrets create aws-credentials --from-file ./credentials.json
3232

3333
```
3434
--user string Specify the user whose resources to target (default "me")
35+
-v, --verbose show verbose output
3536
```
3637

3738
### SEE ALSO

docs/coder_secrets_ls.md

+1
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ coder secrets ls [flags]
2020

2121
```
2222
--user string Specify the user whose resources to target (default "me")
23+
-v, --verbose show verbose output
2324
```
2425

2526
### SEE ALSO

docs/coder_secrets_rm.md

+1
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ coder secrets rm mysql-password mysql-user
2626

2727
```
2828
--user string Specify the user whose resources to target (default "me")
29+
-v, --verbose show verbose output
2930
```
3031

3132
### SEE ALSO

docs/coder_secrets_view.md

+1
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ coder secrets view mysql-password
2626

2727
```
2828
--user string Specify the user whose resources to target (default "me")
29+
-v, --verbose show verbose output
2930
```
3031

3132
### SEE ALSO

docs/coder_sh.md

+6
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,12 @@ coder sh backend-env
2222
-h, --help help for sh
2323
```
2424

25+
### Options inherited from parent commands
26+
27+
```
28+
-v, --verbose show verbose output
29+
```
30+
2531
### SEE ALSO
2632

2733
* [coder](coder.md) - coder provides a CLI for working with an existing Coder Enterprise installation

docs/coder_sync.md

+6
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,12 @@ coder sync [local directory] [<env name>:<remote directory>] [flags]
1717
--init do initial transfer and exit
1818
```
1919

20+
### Options inherited from parent commands
21+
22+
```
23+
-v, --verbose show verbose output
24+
```
25+
2026
### SEE ALSO
2127

2228
* [coder](coder.md) - coder provides a CLI for working with an existing Coder Enterprise installation

docs/coder_urls.md

+6
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,12 @@ Interact with environment DevURLs
1212
-h, --help help for urls
1313
```
1414

15+
### Options inherited from parent commands
16+
17+
```
18+
-v, --verbose show verbose output
19+
```
20+
1521
### SEE ALSO
1622

1723
* [coder](coder.md) - coder provides a CLI for working with an existing Coder Enterprise installation

docs/coder_urls_create.md

+6
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,12 @@ coder urls create [env_name] [port] [--access <level>] [--name <name>] [flags]
1818
--name string DevURL name
1919
```
2020

21+
### Options inherited from parent commands
22+
23+
```
24+
-v, --verbose show verbose output
25+
```
26+
2127
### SEE ALSO
2228

2329
* [coder urls](coder_urls.md) - Interact with environment DevURLs

docs/coder_urls_ls.md

+6
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,12 @@ coder urls ls [environment_name] [flags]
1717
-o, --output string human|json (default "human")
1818
```
1919

20+
### Options inherited from parent commands
21+
22+
```
23+
-v, --verbose show verbose output
24+
```
25+
2026
### SEE ALSO
2127

2228
* [coder urls](coder_urls.md) - Interact with environment DevURLs

docs/coder_urls_rm.md

+6
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,12 @@ coder urls rm [environment_name] [port] [flags]
1616
-h, --help help for rm
1717
```
1818

19+
### Options inherited from parent commands
20+
21+
```
22+
-v, --verbose show verbose output
23+
```
24+
1925
### SEE ALSO
2026

2127
* [coder urls](coder_urls.md) - Interact with environment DevURLs

docs/coder_users.md

+6
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,12 @@ Interact with Coder user accounts
1212
-h, --help help for users
1313
```
1414

15+
### Options inherited from parent commands
16+
17+
```
18+
-v, --verbose show verbose output
19+
```
20+
1521
### SEE ALSO
1622

1723
* [coder](coder.md) - coder provides a CLI for working with an existing Coder Enterprise installation

docs/coder_users_ls.md

+6
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,12 @@ coder users ls -o json | jq .[] | jq -r .email
2424
-o, --output string human | json (default "human")
2525
```
2626

27+
### Options inherited from parent commands
28+
29+
```
30+
-v, --verbose show verbose output
31+
```
32+
2733
### SEE ALSO
2834

2935
* [coder users](coder_users.md) - Interact with Coder user accounts

0 commit comments

Comments
 (0)