Skip to content

Commit f4cc9c2

Browse files
committed
generated docs
1 parent 9103656 commit f4cc9c2

File tree

3 files changed

+92
-0
lines changed

3 files changed

+92
-0
lines changed

docs/stackit_organization.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,8 @@ stackit organization [flags]
3131
### SEE ALSO
3232

3333
* [stackit](./stackit.md) - Manage STACKIT resources using the command line
34+
* [stackit organization describe](./stackit_organization_describe.md) - Show a organization
35+
* [stackit organization list](./stackit_organization_list.md) - Lists all organizations
3436
* [stackit organization member](./stackit_organization_member.md) - Manages organization members
3537
* [stackit organization role](./stackit_organization_role.md) - Manages organization roles
3638

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
## stackit organization describe
2+
3+
Show a organization
4+
5+
### Synopsis
6+
7+
Show a organization.
8+
9+
```
10+
stackit organization describe [flags]
11+
```
12+
13+
### Examples
14+
15+
```
16+
Describe the organization with the organization uuid "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"
17+
$ stackit organization describe xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx
18+
19+
Describe the organization with the container id "foo-bar-organization"
20+
$ stackit organization describe foo-bar-organization
21+
```
22+
23+
### Options
24+
25+
```
26+
-h, --help Help for "stackit organization describe"
27+
```
28+
29+
### Options inherited from parent commands
30+
31+
```
32+
-y, --assume-yes If set, skips all confirmation prompts
33+
--async If set, runs the command asynchronously
34+
-o, --output-format string Output format, one of ["json" "pretty" "none" "yaml"]
35+
-p, --project-id string Project ID
36+
--region string Target region for region-specific requests
37+
--verbosity string Verbosity of the CLI, one of ["debug" "info" "warning" "error"] (default "info")
38+
```
39+
40+
### SEE ALSO
41+
42+
* [stackit organization](./stackit_organization.md) - Manages organizations
43+

docs/stackit_organization_list.md

Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
## stackit organization list
2+
3+
Lists all organizations
4+
5+
### Synopsis
6+
7+
Lists all organizations.
8+
9+
```
10+
stackit organization list [flags]
11+
```
12+
13+
### Examples
14+
15+
```
16+
Lists organizations for your user
17+
$ stackit organization list
18+
19+
Lists organizations for the user with the email foo@bar
20+
$ stackit organization list --member foo@bar
21+
22+
Lists the first 10 organizations
23+
$ stackit organization list --limit 10
24+
```
25+
26+
### Options
27+
28+
```
29+
-h, --help Help for "stackit organization list"
30+
--limit int Maximum number of entries to list (default 50)
31+
```
32+
33+
### Options inherited from parent commands
34+
35+
```
36+
-y, --assume-yes If set, skips all confirmation prompts
37+
--async If set, runs the command asynchronously
38+
-o, --output-format string Output format, one of ["json" "pretty" "none" "yaml"]
39+
-p, --project-id string Project ID
40+
--region string Target region for region-specific requests
41+
--verbosity string Verbosity of the CLI, one of ["debug" "info" "warning" "error"] (default "info")
42+
```
43+
44+
### SEE ALSO
45+
46+
* [stackit organization](./stackit_organization.md) - Manages organizations
47+

0 commit comments

Comments
 (0)