github.com/scaleway/scaleway-cli@v1.11.1/pkg/cli/commands.go (about)

     1  // Copyright (C) 2015 Scaleway. All rights reserved.
     2  // Use of this source code is governed by a MIT-style
     3  // license that can be found in the LICENSE.md file.
     4  
     5  // Docker-style commands to manage BareMetal servers
     6  
     7  // Package cli contains CLI commands
     8  package cli
     9  
    10  // Commands is the list of enabled CLI commands
    11  var Commands = []*Command{
    12  	CmdHelp,
    13  
    14  	cmdAttach,
    15  	cmdCommit,
    16  	cmdCp,
    17  	cmdCreate,
    18  	cmdEvents,
    19  	cmdExec,
    20  	cmdHistory,
    21  	cmdImages,
    22  	cmdInfo,
    23  	cmdInspect,
    24  	cmdKill,
    25  	cmdLogin,
    26  	cmdLogout,
    27  	cmdLogs,
    28  	cmdPort,
    29  	cmdPs,
    30  	cmdRename,
    31  	cmdRestart,
    32  	cmdRm,
    33  	cmdRmi,
    34  	cmdRun,
    35  	cmdSearch,
    36  	cmdStart,
    37  	cmdStop,
    38  	cmdTag,
    39  	cmdTop,
    40  	cmdUserdata,
    41  	cmdVersion,
    42  	cmdWait,
    43  
    44  	cmdBilling,
    45  	cmdCompletion,
    46  	cmdFlushCache,
    47  	cmdMarketplace,
    48  	cmdPatch,
    49  	cmdSecurityGroups,
    50  	cmdIPS,
    51  	cmdCS,
    52  }