Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions docs/stackit_network-area_routing-table.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,5 +37,6 @@ stackit network-area routing-table [flags]
* [stackit network-area routing-table delete](./stackit_network-area_routing-table_delete.md) - Deletes a routing-table
* [stackit network-area routing-table describe](./stackit_network-area_routing-table_describe.md) - Describes a routing-table
* [stackit network-area routing-table list](./stackit_network-area_routing-table_list.md) - Lists all routing-tables
* [stackit network-area routing-table route](./stackit_network-area_routing-table_route.md) - Manages routes of a routing-table
* [stackit network-area routing-table update](./stackit_network-area_routing-table_update.md) - Updates a routing-table

38 changes: 38 additions & 0 deletions docs/stackit_network-area_routing-table_route.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
## stackit network-area routing-table route

Manages routes of a routing-table

### Synopsis

Manages routes of a routing-table

```
stackit network-area routing-table route [flags]
```

### Options

```
-h, --help Help for "stackit network-area routing-table route"
```

### Options inherited from parent commands

```
-y, --assume-yes If set, skips all confirmation prompts
--async If set, runs the command asynchronously
-o, --output-format string Output format, one of ["json" "pretty" "none" "yaml"]
-p, --project-id string Project ID
--region string Target region for region-specific requests
--verbosity string Verbosity of the CLI, one of ["debug" "info" "warning" "error"] (default "info")
```

### SEE ALSO

* [stackit network-area routing-table](./stackit_network-area_routing-table.md) - Manage routing-tables and its according routes
* [stackit network-area routing-table route create](./stackit_network-area_routing-table_route_create.md) - Creates a route in a routing-table
* [stackit network-area routing-table route delete](./stackit_network-area_routing-table_route_delete.md) - Deletes a route within a routing-table
* [stackit network-area routing-table route describe](./stackit_network-area_routing-table_route_describe.md) - Describes a route within a routing-table
* [stackit network-area routing-table route list](./stackit_network-area_routing-table_route_list.md) - Lists all routes within a routing-table
* [stackit network-area routing-table route update](./stackit_network-area_routing-table_route_update.md) - Updates a route in a routing-table

63 changes: 63 additions & 0 deletions docs/stackit_network-area_routing-table_route_create.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,63 @@
## stackit network-area routing-table route create

Creates a route in a routing-table

### Synopsis

Creates a route in a routing-table.

```
stackit network-area routing-table route create [flags]
```

### Examples

```
Create a route with CIDRv4 destination and IPv4 nexthop
stackit network-area routing-table route create \
--routing-table-id xxx --organization-id yyy --network-area-id zzz \
--destination-type cidrv4 --destination-value <ipv4-cidr> \
--nexthop-type ipv4 --nexthop-value <ipv4-address>

Create a route with CIDRv6 destination and IPv6 nexthop
stackit network-area routing-table route create \
--routing-table-id xxx --organization-id yyy --network-area-id zzz \
--destination-type cidrv6 --destination-value <ipv6-cidr> \
--nexthop-type ipv6 --nexthop-value <ipv6-address>

Create a route with CIDRv6 destination and Nexthop Internet
stackit network-area routing-table route create \
--routing-table-id xxx --organization-id yyy --network-area-id zzz \
--destination-type cidrv6 --destination-value <ipv6-cidr> \
--nexthop-type internet
```

### Options

```
--destination-type string Destination type
--destination-value string Destination value
-h, --help Help for "stackit network-area routing-table route create"
--labels stringToString Key=value labels (default [])
--network-area-id string Network-Area ID
--nexthop-type string Next hop type
--nexthop-value string NextHop value
--organization-id string Organization ID
--routing-table-id string Routing-Table ID
```

### Options inherited from parent commands

```
-y, --assume-yes If set, skips all confirmation prompts
--async If set, runs the command asynchronously
-o, --output-format string Output format, one of ["json" "pretty" "none" "yaml"]
-p, --project-id string Project ID
--region string Target region for region-specific requests
--verbosity string Verbosity of the CLI, one of ["debug" "info" "warning" "error"] (default "info")
```

### SEE ALSO

* [stackit network-area routing-table route](./stackit_network-area_routing-table_route.md) - Manages routes of a routing-table

43 changes: 43 additions & 0 deletions docs/stackit_network-area_routing-table_route_delete.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
## stackit network-area routing-table route delete

Deletes a route within a routing-table

### Synopsis

Deletes a route within a routing-table

```
stackit network-area routing-table route delete routing-table-id [flags]
```

### Examples

```
Deletes a route within a routing-table
$ stackit network-area routing-table route delete xxx --routing-table-id xxx --organization-id yyy --network-area-id zzz
```

### Options

```
-h, --help Help for "stackit network-area routing-table route delete"
--network-area-id string Network-Area ID
--organization-id string Organization ID
--routing-table-id string Routing-Table ID
```

### Options inherited from parent commands

```
-y, --assume-yes If set, skips all confirmation prompts
--async If set, runs the command asynchronously
-o, --output-format string Output format, one of ["json" "pretty" "none" "yaml"]
-p, --project-id string Project ID
--region string Target region for region-specific requests
--verbosity string Verbosity of the CLI, one of ["debug" "info" "warning" "error"] (default "info")
```

### SEE ALSO

* [stackit network-area routing-table route](./stackit_network-area_routing-table_route.md) - Manages routes of a routing-table

43 changes: 43 additions & 0 deletions docs/stackit_network-area_routing-table_route_describe.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
## stackit network-area routing-table route describe

Describes a route within a routing-table

### Synopsis

Describes a route within a routing-table

```
stackit network-area routing-table route describe ROUTE_ID [flags]
```

### Examples

```
Describe a route within a routing-table
$ stackit network-area routing-table route describe xxx --routing-table-id xxx --organization-id yyy --network-area-id zzz
```

### Options

```
-h, --help Help for "stackit network-area routing-table route describe"
--network-area-id string Network-Area ID
--organization-id string Organization ID
--routing-table-id string Routing-Table ID
```

### Options inherited from parent commands

```
-y, --assume-yes If set, skips all confirmation prompts
--async If set, runs the command asynchronously
-o, --output-format string Output format, one of ["json" "pretty" "none" "yaml"]
-p, --project-id string Project ID
--region string Target region for region-specific requests
--verbosity string Verbosity of the CLI, one of ["debug" "info" "warning" "error"] (default "info")
```

### SEE ALSO

* [stackit network-area routing-table route](./stackit_network-area_routing-table_route.md) - Manages routes of a routing-table

51 changes: 51 additions & 0 deletions docs/stackit_network-area_routing-table_route_list.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
## stackit network-area routing-table route list

Lists all routes within a routing-table

### Synopsis

Lists all routes within a routing-table

```
stackit network-area routing-table route list [flags]
```

### Examples

```
List all routes within a routing-table
$ stackit network-area routing-table route list --routing-table-id xxx --organization-id yyy --network-area-id zzz

List all routes within a routing-table with labels
$ stackit network-area routing-table list --routing-table-id xxx --organization-id yyy --network-area-id zzz --label-selector env=dev,env=rc

List all routes within a routing-tables with labels and limit to 10
$ stackit network-area routing-table list --routing-table-id xxx --organization-id yyy --network-area-id zzz --label-selector env=dev,env=rc --limit 10
```

### Options

```
-h, --help Help for "stackit network-area routing-table route list"
--label-selector string Filter by label
--limit int Maximum number of entries to list
--network-area-id string Network-Area ID
--organization-id string Organization ID
--routing-table-id string Routing-Table ID
```

### Options inherited from parent commands

```
-y, --assume-yes If set, skips all confirmation prompts
--async If set, runs the command asynchronously
-o, --output-format string Output format, one of ["json" "pretty" "none" "yaml"]
-p, --project-id string Project ID
--region string Target region for region-specific requests
--verbosity string Verbosity of the CLI, one of ["debug" "info" "warning" "error"] (default "info")
```

### SEE ALSO

* [stackit network-area routing-table route](./stackit_network-area_routing-table_route.md) - Manages routes of a routing-table

44 changes: 44 additions & 0 deletions docs/stackit_network-area_routing-table_route_update.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
## stackit network-area routing-table route update

Updates a route in a routing-table

### Synopsis

Updates a route in a routing-table.

```
stackit network-area routing-table route update ROUTE_ID [flags]
```

### Examples

```
Updates the label(s) of a route with ID "xxx" in a routing-table ID "xxx" in organization with ID "yyy" and network-area with ID "zzz"
$ stackit network-area routing-table route update xxx --labels key=value,foo=bar --routing-table-id xxx --organization-id yyy --network-area-id zzz
```

### Options

```
-h, --help Help for "stackit network-area routing-table route update"
--labels stringToString Labels are key-value string pairs which can be attached to a route. A label can be provided with the format key=value and the flag can be used multiple times to provide a list of labels (default [])
--network-area-id string Network-Area ID
--organization-id string Organization ID
--routing-table-id string Routing-Table ID
```

### Options inherited from parent commands

```
-y, --assume-yes If set, skips all confirmation prompts
--async If set, runs the command asynchronously
-o, --output-format string Output format, one of ["json" "pretty" "none" "yaml"]
-p, --project-id string Project ID
--region string Target region for region-specific requests
--verbosity string Verbosity of the CLI, one of ["debug" "info" "warning" "error"] (default "info")
```

### SEE ALSO

* [stackit network-area routing-table route](./stackit_network-area_routing-table_route.md) - Manages routes of a routing-table

Loading
Loading