Skip to content

Commit 1732a4a

Browse files
committed
generate-docs
Signed-off-by: Alexander Dahmen <alexander.dahmen@inovex.de>
1 parent f537f59 commit 1732a4a

6 files changed

+20
-2
lines changed

docs/stackit_beta_network-area_create.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,9 @@ stackit beta network-area create [flags]
2121
2222
Create a network area with name "network-area-3" in organization with ID "xxx" with network ranges, transfer network and additional options
2323
$ stackit beta network-area create --name network-area-3 --organization-id xxx --network-ranges "1.1.1.0/24,192.123.1.0/24" --transfer-network "192.160.0.0/24" --default-prefix-length 25 --max-prefix-length 29 --min-prefix-length 24
24+
25+
Create a network area with name "network-area-1" in organization with ID "xxx" with network ranges and a transfer network and labels "key=value,key1=value1"
26+
$ stackit beta network-area create --name network-area-1 --organization-id xxx --network-ranges "1.1.1.0/24,192.123.1.0/24" --transfer-network "192.160.0.0/24" --labels key=value,key1=value1
2427
```
2528

2629
### Options
@@ -29,6 +32,7 @@ stackit beta network-area create [flags]
2932
--default-prefix-length int The default prefix length for networks in the network area
3033
--dns-name-servers strings List of DNS name server IPs
3134
-h, --help Help for "stackit beta network-area create"
35+
--labels stringToString Labels are key-value string pairs which can be attached to a network-area. E.g. '--labels key1=value1,key2=value2,...' (default [])
3236
--max-prefix-length int The maximum prefix length for networks in the network area
3337
--min-prefix-length int The minimum prefix length for networks in the network area
3438
-n, --name string Network area name

docs/stackit_beta_network-area_list.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,16 @@ stackit beta network-area list [flags]
2121
2222
Lists up to 10 network areas of organization "xxx"
2323
$ stackit beta network-area list --organization-id xxx --limit 10
24+
25+
Lists all network areas of organization "xxx" which contains the label yyy
26+
$ stackit beta network-area list --organization-id xxx --label-selector yyy
2427
```
2528

2629
### Options
2730

2831
```
2932
-h, --help Help for "stackit beta network-area list"
33+
--label-selector string Filter by label
3034
--limit int Maximum number of entries to list
3135
--organization-id string Organization ID
3236
```

docs/stackit_beta_network-area_update.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ stackit beta network-area update AREA_ID [flags]
2323
--default-prefix-length int The default prefix length for networks in the network area
2424
--dns-name-servers strings List of DNS name server IPs
2525
-h, --help Help for "stackit beta network-area update"
26+
--labels stringToString Labels are key-value string pairs which can be attached to a network-area. E.g. '--labels key1=value1,key2=value2,...' (default [])
2627
--max-prefix-length int The maximum prefix length for networks in the network area
2728
--min-prefix-length int The minimum prefix length for networks in the network area
2829
-n, --name string Network area name

docs/stackit_beta_network_create.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,9 @@ stackit beta network create [flags]
2222
Create a network with name "network-1" and no gateway
2323
$ stackit beta network create --name network-1 --no-ipv4-gateway
2424
25+
Create a network with name "network-1" and labels "key=value,key1=value1"
26+
$ stackit beta network create --name network-1 --labels key=value,key1=value1
27+
2528
Create an IPv4 network with name "network-1" with DNS name servers, a prefix and a gateway
2629
$ stackit beta network create --name network-1 --ipv4-dns-name-servers "1.1.1.1,8.8.8.8,9.9.9.9" --ipv4-prefix "10.1.2.0/24" --ipv4-gateway "10.1.2.3"
2730
@@ -41,6 +44,7 @@ stackit beta network create [flags]
4144
--ipv6-gateway string The IPv6 gateway of a network. If not specified, the first IP of the network will be assigned as the gateway
4245
--ipv6-prefix string The IPv6 prefix of the network (CIDR)
4346
--ipv6-prefix-length int The prefix length of the IPv6 network
47+
--labels stringToString Labels are key-value string pairs which can be attached to a network. E.g. '--labels key1=value1,key2=value2,...' (default [])
4448
-n, --name string Network name
4549
--no-ipv4-gateway If set to true, the network doesn't have an IPv4 gateway
4650
--no-ipv6-gateway If set to true, the network doesn't have an IPv6 gateway

docs/stackit_beta_network_list.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,17 @@ stackit beta network list [flags]
2121
2222
Lists up to 10 networks
2323
$ stackit beta network list --limit 10
24+
25+
Lists all networks which contains the label xxx
26+
$ tackit beta network list --label-selector xxx
2427
```
2528

2629
### Options
2730

2831
```
29-
-h, --help Help for "stackit beta network list"
30-
--limit int Maximum number of entries to list
32+
-h, --help Help for "stackit beta network list"
33+
--label-selector string Filter by label
34+
--limit int Maximum number of entries to list
3135
```
3236

3337
### Options inherited from parent commands

docs/stackit_beta_network_update.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ stackit beta network update NETWORK_ID [flags]
3434
--ipv4-gateway string The IPv4 gateway of a network. If not specified, the first IP of the network will be assigned as the gateway
3535
--ipv6-dns-name-servers strings List of DNS name servers for IPv6. Nameservers cannot be defined for routed networks
3636
--ipv6-gateway string The IPv6 gateway of a network. If not specified, the first IP of the network will be assigned as the gateway
37+
--labels stringToString Labels are key-value string pairs which can be attached to a network. E.g. '--labels key1=value1,key2=value2,...' (default [])
3738
-n, --name string Network name
3839
--no-ipv4-gateway If set to true, the network doesn't have an IPv4 gateway
3940
--no-ipv6-gateway If set to true, the network doesn't have an IPv6 gateway

0 commit comments

Comments
 (0)