// Get returns all the commands allowed for a `servers` request. func Get() []cli.Command { return []cli.Command{ { Name: "instance", Usage: "Virtual and bare metal servers.", Subcommands: instancecommands.Get(), }, { Name: "image", Usage: "Base operating system layout for a server.", Subcommands: imagecommands.Get(), }, { Name: "flavor", Usage: "Resource allocations for servers.", Subcommands: flavorcommands.Get(), }, { Name: "keypair", Usage: "SSH keypairs for accessing servers.", Subcommands: keypaircommands.Get(), }, { Name: "volume-attachment", Usage: "Volumes attached to servers.", Subcommands: volumeattachmentcommands.Get(), }, } }
// Get returns all the commands allowed for a `servers` request. func Get() []cli.Command { return []cli.Command{ { Name: "instance", Usage: "Used for Server Instance operations", Subcommands: instancecommands.Get(), }, { Name: "image", Usage: "Used for Server Image operations", Subcommands: imagecommands.Get(), }, { Name: "flavor", Usage: "Used for Server Flavor operations", Subcommands: flavorcommands.Get(), }, { Name: "keypair", Usage: "Used for Server Keypair operations", Subcommands: keypaircommands.Get(), }, } }