Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
feat(alb project): review findings
  • Loading branch information
bahkauv70 committed Apr 14, 2025
commit e441f616b5f7bd5e6af02970d9043471417759aa
4 changes: 2 additions & 2 deletions docs/stackit_beta_alb.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,9 @@ stackit beta alb [flags]
* [stackit beta alb delete](./stackit_beta_alb_delete.md) - Deletes an application loadbalancer
* [stackit beta alb describe](./stackit_beta_alb_describe.md) - Describes an application loadbalancer
* [stackit beta alb list](./stackit_beta_alb_list.md) - Lists albs
* [stackit beta alb plans](./stackit_beta_alb_plans.md) - Lists the alb plans
* [stackit beta alb plans](./stackit_beta_alb_plans.md) - Lists the application load balancer plans
* [stackit beta alb pool](./stackit_beta_alb_pool.md) - Manages target pools for application loadbalancers
* [stackit beta alb quotas](./stackit_beta_alb_quotas.md) - Gets the quotas
* [stackit beta alb quotas](./stackit_beta_alb_quotas.md) - Shows the application load balancer quotas
* [stackit beta alb template](./stackit_beta_alb_template.md) - creates configuration templates to use for resource creation
* [stackit beta alb update](./stackit_beta_alb_update.md) - Updates an application loadbalancer

6 changes: 3 additions & 3 deletions docs/stackit_beta_alb_plans.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
## stackit beta alb plans

Lists the alb plans
Lists the application load balancer plans

### Synopsis

Lists the available application loadbalancer plans.
Lists the available application load balancer plans.

```
stackit beta alb plans [flags]
Expand All @@ -13,7 +13,7 @@ stackit beta alb plans [flags]
### Examples

```
List all application loadbalancer plans
List all application load balancer plans
$ stackit beta alb plans
```

Expand Down
6 changes: 3 additions & 3 deletions docs/stackit_beta_alb_quotas.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
## stackit beta alb quotas

Gets the quotas
Shows the application load balancer quotas

### Synopsis

Gets the current quotes for the application loadbalancers.
Shows the application load balancer quotas for the application load balancers.

```
stackit beta alb quotas [flags]
Expand All @@ -13,7 +13,7 @@ stackit beta alb quotas [flags]
### Examples

```
List all application loadbalancer quotas
List all application load balancer quotas
$ stackit beta alb quotas
```

Expand Down
6 changes: 3 additions & 3 deletions internal/cmd/beta/alb/plans/plans.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,12 +26,12 @@ type inputModel struct {
func NewCmd(p *print.Printer) *cobra.Command {
cmd := &cobra.Command{
Use: "plans",
Short: "Lists the alb plans",
Long: "Lists the available application loadbalancer plans.",
Short: "Lists the application load balancer plans",
Long: "Lists the available application load balancer plans.",
Args: args.NoArgs,
Example: examples.Build(
examples.NewExample(
`List all application loadbalancer plans`,
`List all application load balancer plans`,
`$ stackit beta alb plans`,
),
),
Expand Down
6 changes: 3 additions & 3 deletions internal/cmd/beta/alb/quotas/quotas.go
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,12 @@ type inputModel struct {
func NewCmd(p *print.Printer) *cobra.Command {
cmd := &cobra.Command{
Use: "quotas",
Short: "Gets the quotas",
Long: "Gets the current quotes for the application loadbalancers.",
Short: "Shows the application load balancer quotas",
Long: "Shows the application load balancer quotas for the application load balancers.",
Args: args.NoArgs,
Example: examples.Build(
examples.NewExample(
`List all application loadbalancer quotas`,
`List all application load balancer quotas`,
`$ stackit beta alb quotas`,
),
),
Expand Down