You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -138,14 +139,16 @@ var instancesCreate = requestflag.WithInnerFlags(cli.Command{
138
139
varinstancesList= cli.Command{
139
140
Name: "list",
140
141
Usage: "List instances",
142
+
Suggest: true,
141
143
Flags: []cli.Flag{},
142
144
Action: handleInstancesList,
143
145
HideHelpCommand: true,
144
146
}
145
147
146
148
varinstancesGet= cli.Command{
147
-
Name: "get",
148
-
Usage: "Get instance details",
149
+
Name: "get",
150
+
Usage: "Get instance details",
151
+
Suggest: true,
149
152
Flags: []cli.Flag{
150
153
&requestflag.Flag[string]{
151
154
Name: "id",
@@ -157,8 +160,9 @@ var instancesGet = cli.Command{
157
160
}
158
161
159
162
varinstancesLogs= cli.Command{
160
-
Name: "logs",
161
-
Usage: "Streams instance logs as Server-Sent Events. Use the `source` parameter to\nselect which log to stream:",
163
+
Name: "logs",
164
+
Usage: "Streams instance logs as Server-Sent Events. Use the `source` parameter to\nselect which log to stream:",
165
+
Suggest: true,
162
166
Flags: []cli.Flag{
163
167
&requestflag.Flag[string]{
164
168
Name: "id",
@@ -187,8 +191,9 @@ var instancesLogs = cli.Command{
187
191
}
188
192
189
193
varinstancesRestore= cli.Command{
190
-
Name: "restore",
191
-
Usage: "Restore instance from standby",
194
+
Name: "restore",
195
+
Usage: "Restore instance from standby",
196
+
Suggest: true,
192
197
Flags: []cli.Flag{
193
198
&requestflag.Flag[string]{
194
199
Name: "id",
@@ -200,8 +205,9 @@ var instancesRestore = cli.Command{
200
205
}
201
206
202
207
varinstancesStandby= cli.Command{
203
-
Name: "standby",
204
-
Usage: "Put instance in standby (pause, snapshot, delete VMM)",
208
+
Name: "standby",
209
+
Usage: "Put instance in standby (pause, snapshot, delete VMM)",
210
+
Suggest: true,
205
211
Flags: []cli.Flag{
206
212
&requestflag.Flag[string]{
207
213
Name: "id",
@@ -213,8 +219,9 @@ var instancesStandby = cli.Command{
213
219
}
214
220
215
221
varinstancesStart= cli.Command{
216
-
Name: "start",
217
-
Usage: "Start a stopped instance",
222
+
Name: "start",
223
+
Usage: "Start a stopped instance",
224
+
Suggest: true,
218
225
Flags: []cli.Flag{
219
226
&requestflag.Flag[string]{
220
227
Name: "id",
@@ -226,8 +233,9 @@ var instancesStart = cli.Command{
226
233
}
227
234
228
235
varinstancesStat= cli.Command{
229
-
Name: "stat",
230
-
Usage: "Returns information about a path in the guest filesystem. Useful for checking if\na path exists, its type, and permissions before performing file operations.",
236
+
Name: "stat",
237
+
Usage: "Returns information about a path in the guest filesystem. Useful for checking if\na path exists, its type, and permissions before performing file operations.",
238
+
Suggest: true,
231
239
Flags: []cli.Flag{
232
240
&requestflag.Flag[string]{
233
241
Name: "id",
@@ -250,8 +258,9 @@ var instancesStat = cli.Command{
0 commit comments