Method: Mu::Command::Cmd_muapi#cmd_delete

Defined in:
lib/mu/command/cmd_muapi.rb

#cmd_delete(argv) ⇒ Object

delets an analysis or template of any type

* argv = command-line arguments, requires a uuid (-u) argument specifying the test


116
117
118
119
120
121
122
# File 'lib/mu/command/cmd_muapi.rb', line 116

def cmd_delete argv
   setup argv
   uuid = @hash['uuid']
   response = @api.delete(uuid)
   msg response
   return response
end