# File lib/fog/ecloud/models/compute/monitors.rb, line 11 def all data = service.get_monitors(href).body load(data) end
# File lib/fog/ecloud/models/compute/monitors.rb, line 24 def from_data(data) new(data) end
# File lib/fog/ecloud/models/compute/monitors.rb, line 16 def get(uri) if data = service.get_monitor(uri) new(data.body) end rescue Fog::Errors::NotFound nil end