class RunaboveSsh

Public Instance Methods

create(data) click to toggle source
# File lib/runabove.rb, line 269
def create(data)
  raw_call("post", "/ssh", data)
end
delete(name) click to toggle source
# File lib/runabove.rb, line 277
def delete(name)
  raw_call("delete", "/ssh/#{name}")
end
detail(name) click to toggle source
# File lib/runabove.rb, line 273
def detail(name)
  raw_call("get", "/ssh/#{name}")
end
list() click to toggle source
# File lib/runabove.rb, line 265
def list
  raw_call("get", "/ssh")
end