Skip to content

Commit 01e9801

Browse files
authored
chore(instance): add support for STARDUST1-S autocomplete (#1512)
1 parent ec278e4 commit 01e9801

File tree

2 files changed

+17
-5
lines changed

2 files changed

+17
-5
lines changed

cmd/scw/testdata/test-all-usage-instance-server-create-usage.golden

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ EXAMPLES:
2424

2525
ARGS:
2626
image Image ID or label of the server
27-
[type=DEV1-S] Server commercial type (GP1-XS | GP1-S | GP1-M | GP1-L | GP1-XL | DEV1-S | DEV1-M | DEV1-L | DEV1-XL | RENDER-S)
27+
[type=DEV1-S] Server commercial type (GP1-XS | GP1-S | GP1-M | GP1-L | GP1-XL | DEV1-S | DEV1-M | DEV1-L | DEV1-XL | RENDER-S | STARDUST1-S)
2828
[name=<generated>] Server name
2929
[root-volume] Local root volume of the server
3030
[additional-volumes.{index}] Additional local and block volumes attached to your server

internal/namespaces/instance/v1/custom_server_create.go

+16-4
Original file line numberDiff line numberDiff line change
@@ -56,10 +56,22 @@ func serverCreateCommand() *core.Command {
5656
AutoCompleteFunc: instanceServerCreateImageAutoCompleteFunc,
5757
},
5858
{
59-
Name: "type",
60-
Short: "Server commercial type",
61-
Default: core.DefaultValueSetter("DEV1-S"),
62-
EnumValues: []string{"GP1-XS", "GP1-S", "GP1-M", "GP1-L", "GP1-XL", "DEV1-S", "DEV1-M", "DEV1-L", "DEV1-XL", "RENDER-S"},
59+
Name: "type",
60+
Short: "Server commercial type",
61+
Default: core.DefaultValueSetter("DEV1-S"),
62+
EnumValues: []string{
63+
"GP1-XS",
64+
"GP1-S",
65+
"GP1-M",
66+
"GP1-L",
67+
"GP1-XL",
68+
"DEV1-S",
69+
"DEV1-M",
70+
"DEV1-L",
71+
"DEV1-XL",
72+
"RENDER-S",
73+
"STARDUST1-S",
74+
},
6375
ValidateFunc: func(argSpec *core.ArgSpec, value interface{}) error {
6476
// Allow all commercial types
6577
return nil

0 commit comments

Comments
 (0)