def _list_cloud(self): """ same as the shell_command_cloud list""" arguments = dict(self.arguments) arguments["list"] = True shell_command_cloud(arguments) """
def _default_image(self): ''' same as command: cloud set image [CLOUD] [--name=NAME|--id=ID] ''' arguments = dict(self.arguments) arguments["cloud"] = True arguments["set"] = True shell_command_cloud(arguments)
def do_cloud(self, args, arguments): shell_command_cloud(arguments)