Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
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 @@ -42,5 +42,6 @@ stackit beta [flags]

* [stackit](./stackit.md) - Manage STACKIT resources using the command line
* [stackit beta alb](./stackit_beta_alb.md) - Manages application loadbalancers
* [stackit beta intake](./stackit_beta_intake.md) - Provides functionality for intake
* [stackit beta sqlserverflex](./stackit_beta_sqlserverflex.md) - Provides functionality for SQLServer Flex

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

Provides functionality for intake

### Synopsis

Provides functionality for intake.

```
stackit beta intake [flags]
```

### Options

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

### 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 intake runner](./stackit_beta_intake_runner.md) - Provides functionality for Intake Runners

38 changes: 38 additions & 0 deletions docs/stackit_beta_intake_runner.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
## stackit beta intake runner

Provides functionality for Intake Runners

### Synopsis

Provides functionality for Intake Runners.

```
stackit beta intake runner [flags]
```

### Options

```
-h, --help Help for "stackit beta intake runner"
```

### 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 intake](./stackit_beta_intake.md) - Provides functionality for intake
* [stackit beta intake runner create](./stackit_beta_intake_runner_create.md) - Creates a new Intake Runner
* [stackit beta intake runner delete](./stackit_beta_intake_runner_delete.md) - Deletes an Intake Runner
* [stackit beta intake runner describe](./stackit_beta_intake_runner_describe.md) - Shows details of an Intake Runner
* [stackit beta intake runner list](./stackit_beta_intake_runner_list.md) - Lists all Intake Runners
* [stackit beta intake runner update](./stackit_beta_intake_runner_update.md) - Updates an Intake Runner

48 changes: 48 additions & 0 deletions docs/stackit_beta_intake_runner_create.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
## stackit beta intake runner create

Creates a new Intake Runner

### Synopsis

Creates a new Intake Runner.

```
stackit beta intake runner create [flags]
```

### Examples

```
Create a new Intake Runner with a display name and message capacity limits
$ stackit beta intake runner create --display-name my-runner --max-message-size-kib 1000 --max-messages-per-hour 5000

Create a new Intake Runner with a description and labels
$ stackit beta intake runner create --display-name my-runner --max-message-size-kib 1000 --max-messages-per-hour 5000 --description "Main runner for production" --labels="env=prod,team=billing"
```

### Options

```
--description string Description
--display-name string Display name
-h, --help Help for "stackit beta intake runner create"
--labels stringToString Labels in key=value format, separated by commas. Example: --labels "key1=value1,key2=value2" (default [])
--max-message-size-kib int Maximum message size in KiB
--max-messages-per-hour int Maximum number of messages per hour
```

### 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 intake runner](./stackit_beta_intake_runner.md) - Provides functionality for Intake Runners

40 changes: 40 additions & 0 deletions docs/stackit_beta_intake_runner_delete.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
## stackit beta intake runner delete

Deletes an Intake Runner

### Synopsis

Deletes an Intake Runner.

```
stackit beta intake runner delete RUNNER_ID [flags]
```

### Examples

```
Delete an Intake Runner with ID "xxx"
$ stackit beta intake runner delete xxx
```

### Options

```
-h, --help Help for "stackit beta intake runner delete"
```

### 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 intake runner](./stackit_beta_intake_runner.md) - Provides functionality for Intake Runners

43 changes: 43 additions & 0 deletions docs/stackit_beta_intake_runner_describe.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
## stackit beta intake runner describe

Shows details of an Intake Runner

### Synopsis

Shows details of an Intake Runner.

```
stackit beta intake runner describe RUNNER_ID [flags]
```

### Examples

```
Get details of an Intake Runner with ID "xxx"
$ stackit beta intake runner describe xxx

Get details of an Intake Runner with ID "xxx" in JSON format
$ stackit beta intake runner describe xxx --output-format json
```

### Options

```
-h, --help Help for "stackit beta intake runner describe"
```

### 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 intake runner](./stackit_beta_intake_runner.md) - Provides functionality for Intake Runners

47 changes: 47 additions & 0 deletions docs/stackit_beta_intake_runner_list.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
## stackit beta intake runner list

Lists all Intake Runners

### Synopsis

Lists all Intake Runners for the current project.

```
stackit beta intake runner list [flags]
```

### Examples

```
List all Intake Runners
$ stackit beta intake runner list

List all Intake Runners in JSON format
$ stackit beta intake runner list --output-format json

List up to 5 Intake Runners
$ stackit beta intake runner list --limit 5
```

### Options

```
-h, --help Help for "stackit beta intake runner list"
--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 intake runner](./stackit_beta_intake_runner.md) - Provides functionality for Intake Runners

48 changes: 48 additions & 0 deletions docs/stackit_beta_intake_runner_update.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
## stackit beta intake runner update

Updates an Intake Runner

### Synopsis

Updates an Intake Runner. Only the specified fields are updated.

```
stackit beta intake runner update RUNNER_ID [flags]
```

### Examples

```
Update the display name of an Intake Runner with ID "xxx"
$ stackit beta intake runner update xxx --display-name "new-runner-name"

Update the message capacity limits for an Intake Runner with ID "xxx"
$ stackit beta intake runner update xxx --max-message-size-kib 1000 --max-messages-per-hour 10000
```

### Options

```
--description string Description
--display-name string Display name
-h, --help Help for "stackit beta intake runner update"
--labels stringToString Labels in key=value format, separated by commas. Example: --labels "key1=value1,key2=value2". (default [])
--max-message-size-kib int Maximum message size in KiB. Note: Overall message capacity cannot be decreased.
--max-messages-per-hour int Maximum number of messages per hour. Note: Overall message capacity cannot be decreased.
```

### 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 intake runner](./stackit_beta_intake_runner.md) - Provides functionality for Intake Runners

1 change: 1 addition & 0 deletions docs/stackit_config_set.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ stackit config set [flags]
--iaas-custom-endpoint string IaaS API base URL, used in calls to this API
--identity-provider-custom-client-id string Identity Provider client ID, used for user authentication
--identity-provider-custom-well-known-configuration string Identity Provider well-known OpenID configuration URL, used for user authentication
--intake-custom-endpoint string Intake API base URL, used in calls to this API
--load-balancer-custom-endpoint string Load Balancer API base URL, used in calls to this API
--logme-custom-endpoint string LogMe API base URL, used in calls to this API
--mariadb-custom-endpoint string MariaDB API base URL, used in calls to this API
Expand Down
1 change: 1 addition & 0 deletions docs/stackit_config_unset.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ stackit config unset [flags]
--iaas-custom-endpoint IaaS API base URL. If unset, uses the default base URL
--identity-provider-custom-client-id Identity Provider client ID, used for user authentication
--identity-provider-custom-well-known-configuration Identity Provider well-known OpenID configuration URL. If unset, uses the default identity provider
--intake-custom-endpoint Intake API base URL. If unset, uses the default base URL
--load-balancer-custom-endpoint Load Balancer API base URL. If unset, uses the default base URL
--logme-custom-endpoint LogMe API base URL. If unset, uses the default base URL
--mariadb-custom-endpoint MariaDB API base URL. If unset, uses the default base URL
Expand Down
Loading