class TutumProviders

Public Instance Methods

get(uuid) click to toggle source
# File lib/tutum_providers.rb, line 14
def get(uuid)
  http_get(get_url(uuid))
end
get_url(uuid) click to toggle source
# File lib/tutum_providers.rb, line 10
def get_url(uuid)
  "/provider/#{uuid}/"
end
list(params={}) click to toggle source
# File lib/tutum_providers.rb, line 6
def list(params={})
  http_get(list_url, params)
end
list_url() click to toggle source
# File lib/tutum_providers.rb, line 2
def list_url
  "/provider/"
end