Skip to content

Commit e8c2521

Browse files
committed
review changes
1 parent 9744a6a commit e8c2521

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

52 files changed

+2251
-946
lines changed

docs/stackit.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,7 @@ stackit [flags]
5252
* [stackit quota](./stackit_quota.md) - Manage server quotas
5353
* [stackit rabbitmq](./stackit_rabbitmq.md) - Provides functionality for RabbitMQ
5454
* [stackit redis](./stackit_redis.md) - Provides functionality for Redis
55+
* [stackit routing-table](./stackit_routing-table.md) - Manage routing-tables and its according routes
5556
* [stackit secrets-manager](./stackit_secrets-manager.md) - Provides functionality for Secrets Manager
5657
* [stackit security-group](./stackit_security-group.md) - Manage security groups
5758
* [stackit server](./stackit_server.md) - Provides functionality for servers

docs/stackit_beta.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,5 @@ stackit beta [flags]
4343
* [stackit](./stackit.md) - Manage STACKIT resources using the command line
4444
* [stackit beta alb](./stackit_beta_alb.md) - Manages application loadbalancers
4545
* [stackit beta kms](./stackit_beta_kms.md) - Provides functionality for KMS
46-
* [stackit beta routing-table](./stackit_beta_routing-table.md) - Manage routing-tables and its according routes
4746
* [stackit beta sqlserverflex](./stackit_beta_sqlserverflex.md) - Provides functionality for SQLServer Flex
4847

docs/stackit_beta_routing-table.md

Lines changed: 0 additions & 45 deletions
This file was deleted.

docs/stackit_beta_routing-table_route.md

Lines changed: 0 additions & 38 deletions
This file was deleted.

docs/stackit_network_create.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,9 @@ stackit network create [flags]
3030
3131
Create an IPv6 network with name "network-1" with DNS name servers, a prefix and a gateway
3232
$ stackit network create --name network-1 --ipv6-dns-name-servers "2001:4860:4860::8888,2001:4860:4860::8844" --ipv6-prefix "2001:4860:4860::8888" --ipv6-gateway "2001:4860:4860::8888"
33+
34+
Create a network with name "network-1" and attach routing-table "xxx"
35+
$ stackit network create --name network-1 --routing-table-id xxx
3336
```
3437

3538
### Options
@@ -49,6 +52,7 @@ stackit network create [flags]
4952
--no-ipv4-gateway If set to true, the network doesn't have an IPv4 gateway
5053
--no-ipv6-gateway If set to true, the network doesn't have an IPv6 gateway
5154
--non-routed If set to true, the network is not routed and therefore not accessible from other networks
55+
--routing-table-id string The ID of the routing-table for the network
5256
```
5357

5458
### Options inherited from parent commands

docs/stackit_network_update.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,9 @@ stackit network update NETWORK_ID [flags]
2424
2525
Update IPv6 network with ID "xxx" with new name "network-1-new", new gateway and new DNS name servers
2626
$ stackit network update xxx --name network-1-new --ipv6-dns-name-servers "2001:4860:4860::8888" --ipv6-gateway "2001:4860:4860::8888"
27+
28+
Update network with ID "xxx" with new routing-table id "xxx"
29+
$ stackit network update xxx --routing-table-id xxx
2730
```
2831

2932
### Options
@@ -38,6 +41,7 @@ stackit network update NETWORK_ID [flags]
3841
-n, --name string Network name
3942
--no-ipv4-gateway If set to true, the network doesn't have an IPv4 gateway
4043
--no-ipv6-gateway If set to true, the network doesn't have an IPv6 gateway
44+
--routing-table-id string The ID of the routing-table for the network
4145
```
4246

4347
### Options inherited from parent commands

docs/stackit_routing-table.md

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
## stackit routing-table
2+
3+
Manage routing-tables and its according routes
4+
5+
### Synopsis
6+
7+
Manage routing-tables and their associated routes.
8+
9+
This API is currently available only to selected customers.
10+
To request access, please contact your account manager or submit a support ticket.
11+
12+
```
13+
stackit routing-table [flags]
14+
```
15+
16+
### Options
17+
18+
```
19+
-h, --help Help for "stackit routing-table"
20+
```
21+
22+
### Options inherited from parent commands
23+
24+
```
25+
-y, --assume-yes If set, skips all confirmation prompts
26+
--async If set, runs the command asynchronously
27+
-o, --output-format string Output format, one of ["json" "pretty" "none" "yaml"]
28+
-p, --project-id string Project ID
29+
--region string Target region for region-specific requests
30+
--verbosity string Verbosity of the CLI, one of ["debug" "info" "warning" "error"] (default "info")
31+
```
32+
33+
### SEE ALSO
34+
35+
* [stackit](./stackit.md) - Manage STACKIT resources using the command line
36+
* [stackit routing-table create](./stackit_routing-table_create.md) - Creates a routing-table
37+
* [stackit routing-table delete](./stackit_routing-table_delete.md) - Deletes a routing-table
38+
* [stackit routing-table describe](./stackit_routing-table_describe.md) - Describes a routing-table
39+
* [stackit routing-table list](./stackit_routing-table_list.md) - Lists all routing-tables
40+
* [stackit routing-table route](./stackit_routing-table_route.md) - Manages routes of a routing-table
41+
* [stackit routing-table update](./stackit_routing-table_update.md) - Updates a routing-table
42+
Lines changed: 56 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
1+
## stackit routing-table create
2+
3+
Creates a routing-table
4+
5+
### Synopsis
6+
7+
Creates a routing-table.
8+
9+
```
10+
stackit routing-table create [flags]
11+
```
12+
13+
### Examples
14+
15+
```
16+
Create a routing-table with name `rt`
17+
stackit routing-table create --organization-id xxx --network-area-id yyy --name "rt"
18+
19+
Create a routing-table with name `rt` and description `some description`
20+
stackit routing-table create --organization-id xxx --network-area-id yyy --name "rt" --description "some description"
21+
22+
Create a routing-table with name `rt` with system_routes disabled
23+
stackit routing-table create --organization-id xxx --network-area-id yyy --name "rt" --non-system-routes
24+
25+
Create a routing-table with name `rt` with dynamic_routes disabled
26+
stackit routing-table create --organization-id xxx --network-area-id yyy --name "rt" --non-dynamic-routes
27+
```
28+
29+
### Options
30+
31+
```
32+
--description string Description of the routing-table
33+
-h, --help Help for "stackit routing-table create"
34+
--labels stringToString Key=value labels (default [])
35+
--name string Name of the routing-table
36+
--network-area-id string Network-Area ID
37+
--non-dynamic-routes If true, preventing dynamic routes from propagating to the routing-table.
38+
--non-system-routes If true, automatically disables routes for project-to-project communication.
39+
--organization-id string Organization ID
40+
```
41+
42+
### Options inherited from parent commands
43+
44+
```
45+
-y, --assume-yes If set, skips all confirmation prompts
46+
--async If set, runs the command asynchronously
47+
-o, --output-format string Output format, one of ["json" "pretty" "none" "yaml"]
48+
-p, --project-id string Project ID
49+
--region string Target region for region-specific requests
50+
--verbosity string Verbosity of the CLI, one of ["debug" "info" "warning" "error"] (default "info")
51+
```
52+
53+
### SEE ALSO
54+
55+
* [stackit routing-table](./stackit_routing-table.md) - Manage routing-tables and its according routes
56+
Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
## stackit routing-table delete
2+
3+
Deletes a routing-table
4+
5+
### Synopsis
6+
7+
Deletes a routing-table
8+
9+
```
10+
stackit routing-table delete ROUTING_TABLE_ARG [flags]
11+
```
12+
13+
### Examples
14+
15+
```
16+
Deletes a a routing-table
17+
$ stackit routing-table delete xxxx-xxxx-xxxx-xxxx --organization-id yyy --network-area-id zzz
18+
```
19+
20+
### Options
21+
22+
```
23+
-h, --help Help for "stackit routing-table delete"
24+
--network-area-id string Network-Area ID
25+
--organization-id string Organization ID
26+
```
27+
28+
### Options inherited from parent commands
29+
30+
```
31+
-y, --assume-yes If set, skips all confirmation prompts
32+
--async If set, runs the command asynchronously
33+
-o, --output-format string Output format, one of ["json" "pretty" "none" "yaml"]
34+
-p, --project-id string Project ID
35+
--region string Target region for region-specific requests
36+
--verbosity string Verbosity of the CLI, one of ["debug" "info" "warning" "error"] (default "info")
37+
```
38+
39+
### SEE ALSO
40+
41+
* [stackit routing-table](./stackit_routing-table.md) - Manage routing-tables and its according routes
42+

docs/stackit_beta_routing-table_describe.md renamed to docs/stackit_routing-table_describe.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,26 @@
1-
## stackit beta routing-table describe
1+
## stackit routing-table describe
22

3-
Describe a routing-table
3+
Describes a routing-table
44

55
### Synopsis
66

7-
Describe a routing-table
7+
Describes a routing-table
88

99
```
10-
stackit beta routing-table describe ROUTING_TABLE_ID_ARG [flags]
10+
stackit routing-table describe ROUTING_TABLE_ID_ARG [flags]
1111
```
1212

1313
### Examples
1414

1515
```
1616
Describe a routing-table
17-
$ stackit beta routing-table describe xxxx-xxxx-xxxx-xxxx --organization-id xxx --network-area-id yyy
17+
$ stackit routing-table describe xxxx-xxxx-xxxx-xxxx --organization-id xxx --network-area-id yyy
1818
```
1919

2020
### Options
2121

2222
```
23-
-h, --help Help for "stackit beta routing-table describe"
23+
-h, --help Help for "stackit routing-table describe"
2424
--network-area-id string Network-Area ID
2525
--organization-id string Organization ID
2626
```
@@ -38,5 +38,5 @@ stackit beta routing-table describe ROUTING_TABLE_ID_ARG [flags]
3838

3939
### SEE ALSO
4040

41-
* [stackit beta routing-table](./stackit_beta_routing-table.md) - Manage routing-tables and its according routes
41+
* [stackit routing-table](./stackit_routing-table.md) - Manage routing-tables and its according routes
4242

0 commit comments

Comments
 (0)