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
bug: Add missing CLI commands/actions to operations
This is for the Linode CLI.
In the current CLI release, we see this:
```bash
wsmith@linode::linode-cli[master]$ linode-cli default --help
linode-cli default [ACTION]
Available actions:
┌──────────────────────┬────────────────────────┐
│ action │ summary │
├──────────────────────┼────────────────────────┤
│ getEntityTransfers │ Entity Transfers List │
│ createEntityTransfer │ Entity Transfer Create │
│ getEntityTransfer │ Entity Transfer View │
│ deleteEntityTransfer │ Entity Transfer Cancel │
│ acceptEntityTransfer │ Entity Transfer Accept │
│ import │ Domain Import │
└──────────────────────┴────────────────────────┘
```
These operations appear in "default" because they have no
`x-linode-cli-command` defined in the spec (so they fall into the
default command). This isn't ideal. Additionally, many of those
commands are using their operationId as their action since they lack a
`x-linode-cli-action` element.
This change adds a command and action to all of the above.
0 commit comments