module Vscale::SSHKeys

Public Instance Methods

sshkeys() click to toggle source
# File lib/vscale/api/sshkeys.rb, line 3
def sshkeys
  get('sshkeys')
end
sshkeys_delete(id) click to toggle source
# File lib/vscale/api/sshkeys.rb, line 11
def sshkeys_delete(id)
  delete("sshkeys/#{id}")
end
sshkeys_new(params) click to toggle source
# File lib/vscale/api/sshkeys.rb, line 7
def sshkeys_new(params)
  post('sshkeys', params)
end