Skip to content

Commit e187651

Browse files
committed
Adjustments after review
1 parent 7b7021e commit e187651

12 files changed

Lines changed: 16 additions & 13 deletions

File tree

docs/stackit_dns_record-set_update.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Update a DNS record set
44

55
### Synopsis
66

7-
Update a DNS record set. Performs a partial update, i.e., fields not provided are kept unchanged.
7+
Update a DNS record set.
88

99
```
1010
stackit dns record-set update RECORD_SET_ID [flags]

docs/stackit_dns_zone_update.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Update a DNS zone
44

55
### Synopsis
66

7-
Update a DNS zone. Performs a partial update, i.e., fields not provided are kept unchanged.
7+
Update a DNS zone.
88

99
```
1010
stackit dns zone update ZONE_ID [flags]

docs/stackit_organization_member_remove.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Remove a member from an organization.
66

77
Remove a member from an organization.
88
A member is a combination of a subject (user, service account or client) and a role.
9-
The subject is usually email address for users or name in case of clients.
9+
The subject is usually email address (for users) or name (for clients).
1010

1111
```
1212
stackit organization member remove SUBJECT [flags]

docs/stackit_project_list.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ List STACKIT projects
44

55
### Synopsis
66

7-
List all STACKIT projects that match certain criteria. At least one of parent-id, project-id-like or member flag must be provided.
7+
List all STACKIT projects that match certain criteria.
88

99
```
1010
stackit project list [flags]

docs/stackit_project_member_list.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ stackit project member list [flags]
2929
-h, --help Help for "stackit project member list"
3030
--limit int Maximum number of entries to list
3131
--sort-by string Sort entries by a specific field, one of ["subject" "role"] (default "subject")
32-
--subject string Filter by subject (Identifier of user, service account or client. Usually email address in case of users or name in case of clients)
32+
--subject string Filter by subject (the identifier of a user, service account or client). This is usually the email address (for users) or name (for clients)
3333
```
3434

3535
### Options inherited from parent commands

docs/stackit_ske_options.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ List SKE provider options
44

55
### Synopsis
66

7-
List STACKIT Kubernetes Engine (SKE) provider options (availability zones, Kubernetes versions, machine images and types, volume types)
7+
List STACKIT Kubernetes Engine (SKE) provider options (availability zones, Kubernetes versions, machine images and types, volume types).
88
Pass one or more flags to filter what categories are shown.
99

1010
```

internal/cmd/dns/record-set/update/update.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ func NewCmd() *cobra.Command {
4444
cmd := &cobra.Command{
4545
Use: fmt.Sprintf("update %s", recordSetIdArg),
4646
Short: "Update a DNS record set",
47-
Long: "Update a DNS record set. Performs a partial update, i.e., fields not provided are kept unchanged.",
47+
Long: "Update a DNS record set.",
4848
Args: args.SingleArg(recordSetIdArg, utils.ValidateUUID),
4949
Example: examples.Build(
5050
examples.NewExample(

internal/cmd/dns/zone/update/update.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ func NewCmd() *cobra.Command {
5454
cmd := &cobra.Command{
5555
Use: fmt.Sprintf("update %s", zoneIdArg),
5656
Short: "Update a DNS zone",
57-
Long: "Update a DNS zone. Performs a partial update, i.e., fields not provided are kept unchanged.",
57+
Long: "Update a DNS zone.",
5858
Args: args.SingleArg(zoneIdArg, utils.ValidateUUID),
5959
Example: examples.Build(
6060
examples.NewExample(

internal/cmd/organization/member/remove/remove.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ func NewCmd() *cobra.Command {
4242
Long: fmt.Sprintf("%s\n%s\n%s",
4343
"Remove a member from an organization.",
4444
"A member is a combination of a subject (user, service account or client) and a role.",
45-
"The subject is usually email address for users or name in case of clients.",
45+
"The subject is usually email address (for users) or name (for clients).",
4646
),
4747
Args: args.SingleArg(subjectArg, nil),
4848
Example: examples.Build(

internal/cmd/project/list/list.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ func NewCmd() *cobra.Command {
4444
cmd := &cobra.Command{
4545
Use: "list",
4646
Short: "List STACKIT projects",
47-
Long: "List all STACKIT projects that match certain criteria. At least one of parent-id, project-id-like or member flag must be provided.",
47+
Long: "List all STACKIT projects that match certain criteria.",
4848
Args: args.NoArgs,
4949
Example: examples.Build(
5050
examples.NewExample(

0 commit comments

Comments
 (0)