# File lib/fog/joyent/models/analytics/instrumentations.rb, line 9 def all data = service.list_instrumentations.body load(data) end
# File lib/fog/joyent/models/analytics/instrumentations.rb, line 14 def get(id) data = service.get_instrumentation(id).body new(data) rescue Fog::Compute::Joyent::Errors::NotFound nil end