Skip to content
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ USAGE:

ARGS:
[project-id] (Optional) ID of the Project in which to list the domains
[status.{index}] (Optional) List domains under specific statuses (unknown | checked | unchecked | invalid | locked | revoked | pending)
[status.{index}] (Optional) List domains under specific statuses (unknown | checked | unchecked | invalid | locked | revoked | pending | autoconfiguring)
[name] (Optional) Names of the domains to list
[organization-id] (Optional) ID of the Organization in which to list the domains
[region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | all)
Expand Down
2 changes: 1 addition & 1 deletion docs/commands/tem.md
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ scw tem domain list [arg=value ...]
| Name | | Description |
|------|---|-------------|
| project-id | | (Optional) ID of the Project in which to list the domains |
| status.{index} | One of: `unknown`, `checked`, `unchecked`, `invalid`, `locked`, `revoked`, `pending` | (Optional) List domains under specific statuses |
| status.{index} | One of: `unknown`, `checked`, `unchecked`, `invalid`, `locked`, `revoked`, `pending`, `autoconfiguring` | (Optional) List domains under specific statuses |
| name | | (Optional) Names of the domains to list |
| organization-id | | (Optional) ID of the Organization in which to list the domains |
| region | Default: `fr-par`<br />One of: `fr-par`, `all` | Region to target. If none is passed will use default region from the config |
Expand Down
2 changes: 1 addition & 1 deletion internal/namespaces/tem/v1alpha1/tem_cli.go
Original file line number Diff line number Diff line change
Expand Up @@ -563,7 +563,7 @@ func temDomainList() *core.Command {
Required: false,
Deprecated: false,
Positional: false,
EnumValues: []string{"unknown", "checked", "unchecked", "invalid", "locked", "revoked", "pending"},
EnumValues: []string{"unknown", "checked", "unchecked", "invalid", "locked", "revoked", "pending", "autoconfiguring"},
},
{
Name: "name",
Expand Down
Loading