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_beta.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,5 +47,6 @@ stackit beta [flags]
* [stackit beta edge-cloud](./stackit_beta_edge-cloud.md) - Provides functionality for Edge Cloud services.
* [stackit beta intake](./stackit_beta_intake.md) - Provides functionality for intake
* [stackit beta sfs](./stackit_beta_sfs.md) - Provides functionality for SFS (STACKIT File Storage)
* [stackit beta telemetryrouter](./stackit_beta_telemetryrouter.md) - Provides functionality for TelemetryRouter
* [stackit beta vpn](./stackit_beta_vpn.md) - Provides functionality for VPN

36 changes: 36 additions & 0 deletions docs/stackit_beta_telemetryrouter.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
## stackit beta telemetryrouter

Provides functionality for TelemetryRouter

### Synopsis

Provides functionality for TelemetryRouter.

```
stackit beta telemetryrouter [flags]
```

### Options

```
-h, --help Help for "stackit beta telemetryrouter"
```

### 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 beta](./stackit_beta.md) - Contains beta STACKIT CLI commands
* [stackit beta telemetryrouter access-token](./stackit_beta_telemetryrouter_access-token.md) - Provides functionality for TelemetryRouter access tokens
* [stackit beta telemetryrouter destination](./stackit_beta_telemetryrouter_destination.md) - Provides functionality for TelemetryRouter destinations
* [stackit beta telemetryrouter instance](./stackit_beta_telemetryrouter_instance.md) - Provides functionality for TelemetryRouter instances

38 changes: 38 additions & 0 deletions docs/stackit_beta_telemetryrouter_access-token.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
## stackit beta telemetryrouter access-token

Provides functionality for TelemetryRouter access tokens

### Synopsis

Provides functionality for TelemetryRouter access tokens.

```
stackit beta telemetryrouter access-token [flags]
```

### Options

```
-h, --help Help for "stackit beta telemetryrouter access-token"
```

### 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 beta telemetryrouter](./stackit_beta_telemetryrouter.md) - Provides functionality for TelemetryRouter
* [stackit beta telemetryrouter access-token create](./stackit_beta_telemetryrouter_access-token_create.md) - Creates a TelemetryRouter access token
* [stackit beta telemetryrouter access-token delete](./stackit_beta_telemetryrouter_access-token_delete.md) - Deletes a TelemetryRouter access token
* [stackit beta telemetryrouter access-token describe](./stackit_beta_telemetryrouter_access-token_describe.md) - Shows details of a TelemetryRouter access token
* [stackit beta telemetryrouter access-token list](./stackit_beta_telemetryrouter_access-token_list.md) - Lists all TelemetryRouter access tokens of an instance
* [stackit beta telemetryrouter access-token update](./stackit_beta_telemetryrouter_access-token_update.md) - Updates a TelemetryRouter access token

50 changes: 50 additions & 0 deletions docs/stackit_beta_telemetryrouter_access-token_create.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
## stackit beta telemetryrouter access-token create

Creates a TelemetryRouter access token

### Synopsis

Creates a TelemetryRouter access token.

```
stackit beta telemetryrouter access-token create [flags]
```

### Examples

```
Create an access token with the display name "access-token-1" for the TelemetryRouter instance "xxx"
$ stackit beta telemetryrouter access-token create --display-name access-token-1 --instance-id xxx

Create an access token with a description
$ stackit beta telemetryrouter access-token create --display-name access-token-1 --instance-id xxx --description "Access token for service"

Create an access token which expires in 30 days
$ stackit beta telemetryrouter access-token create --display-name access-token-1 --instance-id xxx --ttl 30
```

### Options

```
--description string Description of the access token
--display-name string Display name for the access token
-h, --help Help for "stackit beta telemetryrouter access-token create"
--instance-id string ID of the TelemetryRouter instance
--ttl int32 Time-to-live (TTL) in days for the access token. If not set, the token will not expire
```

### 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 beta telemetryrouter access-token](./stackit_beta_telemetryrouter_access-token.md) - Provides functionality for TelemetryRouter access tokens

41 changes: 41 additions & 0 deletions docs/stackit_beta_telemetryrouter_access-token_delete.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
## stackit beta telemetryrouter access-token delete

Deletes a TelemetryRouter access token

### Synopsis

Deletes a TelemetryRouter access token.

```
stackit beta telemetryrouter access-token delete ACCESS_TOKEN_ID [flags]
```

### Examples

```
Delete access token with ID "xxx" for the TelemetryRouter instance "yyy"
$ stackit beta telemetryrouter access-token delete xxx --instance-id yyy
```

### Options

```
-h, --help Help for "stackit beta telemetryrouter access-token delete"
--instance-id string ID of the TelemetryRouter instance
```

### 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 beta telemetryrouter access-token](./stackit_beta_telemetryrouter_access-token.md) - Provides functionality for TelemetryRouter access tokens

44 changes: 44 additions & 0 deletions docs/stackit_beta_telemetryrouter_access-token_describe.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
## stackit beta telemetryrouter access-token describe

Shows details of a TelemetryRouter access token

### Synopsis

Shows details of a TelemetryRouter access token.

```
stackit beta telemetryrouter access-token describe ACCESS_TOKEN_ID [flags]
```

### Examples

```
Show details of a TelemetryRouter access token with ID "xxx"
$ stackit beta telemetryrouter access-token describe xxx --instance-id yyy

Show details of a TelemetryRouter access token with ID "xxx" in JSON format
$ stackit beta telemetryrouter access-token describe xxx --instance-id yyy --output-format json
```

### Options

```
-h, --help Help for "stackit beta telemetryrouter access-token describe"
--instance-id string ID of the TelemetryRouter instance
```

### 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 beta telemetryrouter access-token](./stackit_beta_telemetryrouter_access-token.md) - Provides functionality for TelemetryRouter access tokens

48 changes: 48 additions & 0 deletions docs/stackit_beta_telemetryrouter_access-token_list.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
## stackit beta telemetryrouter access-token list

Lists all TelemetryRouter access tokens of an instance

### Synopsis

Lists all TelemetryRouter access tokens of an instance.

```
stackit beta telemetryrouter access-token list [flags]
```

### Examples

```
Lists all access tokens of the TelemetryRouter instance "xxx"
$ stackit beta telemetryrouter access-token list --instance-id xxx

Lists all access tokens in JSON format
$ stackit beta telemetryrouter access-token list --instance-id xxx --output-format json

Lists up to 10 access tokens
$ stackit beta telemetryrouter access-token list --instance-id xxx --limit 10
```

### Options

```
-h, --help Help for "stackit beta telemetryrouter access-token list"
--instance-id string ID of the TelemetryRouter instance
--limit int Maximum number of entries to list
```

### 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 beta telemetryrouter access-token](./stackit_beta_telemetryrouter_access-token.md) - Provides functionality for TelemetryRouter access tokens

46 changes: 46 additions & 0 deletions docs/stackit_beta_telemetryrouter_access-token_update.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
## stackit beta telemetryrouter access-token update

Updates a TelemetryRouter access token

### Synopsis

Updates a TelemetryRouter access token.

```
stackit beta telemetryrouter access-token update ACCESS_TOKEN_ID [flags]
```

### Examples

```
Update the display name of the access token with ID "xxx"
$ stackit beta telemetryrouter access-token update xxx --instance-id yyy --display-name access-token-1

Update the description of the access token with ID "xxx"
$ stackit beta telemetryrouter access-token update xxx --instance-id yyy --description "Access token for service"
```

### Options

```
--description string Description of the access token
--display-name string Display name for the access token
-h, --help Help for "stackit beta telemetryrouter access-token update"
--instance-id string ID of the TelemetryRouter instance
```

### 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 beta telemetryrouter access-token](./stackit_beta_telemetryrouter_access-token.md) - Provides functionality for TelemetryRouter access tokens

39 changes: 39 additions & 0 deletions docs/stackit_beta_telemetryrouter_destination.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
## stackit beta telemetryrouter destination

Provides functionality for TelemetryRouter destinations

### Synopsis

Provides functionality for TelemetryRouter destinations.

```
stackit beta telemetryrouter destination [flags]
```

### Options

```
-h, --help Help for "stackit beta telemetryrouter destination"
```

### 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 beta telemetryrouter](./stackit_beta_telemetryrouter.md) - Provides functionality for TelemetryRouter
* [stackit beta telemetryrouter destination create](./stackit_beta_telemetryrouter_destination_create.md) - Creates a TelemetryRouter destination
* [stackit beta telemetryrouter destination delete](./stackit_beta_telemetryrouter_destination_delete.md) - Deletes a TelemetryRouter destination
* [stackit beta telemetryrouter destination describe](./stackit_beta_telemetryrouter_destination_describe.md) - Shows details of a TelemetryRouter destination
* [stackit beta telemetryrouter destination generate-payload](./stackit_beta_telemetryrouter_destination_generate-payload.md) - Generates a payload to create/update TelemetryRouter destinations
* [stackit beta telemetryrouter destination list](./stackit_beta_telemetryrouter_destination_list.md) - Lists all TelemetryRouter destinations of an instance
* [stackit beta telemetryrouter destination update](./stackit_beta_telemetryrouter_destination_update.md) - Updates a TelemetryRouter destination

Loading