lib/fog/rackspace/models/monitoring/alarm_examples.rb in fog-1.22.0 vs lib/fog/rackspace/models/monitoring/alarm_examples.rb in fog-1.22.1
- old
+ new
@@ -3,11 +3,10 @@
module Fog
module Rackspace
class Monitoring
class AlarmExamples < Fog::Collection
-
model Fog::Rackspace::Monitoring::AlarmExample
def all
data = service.list_alarm_examples.body['values']
load(data)
@@ -22,10 +21,9 @@
def evaluate(alarm_example_id, options={})
data = service.evaluate_alarm_example(alarm_example_id, options).body
new(data)
end
-
end
end
end
end