class Fog::Rackspace::Monitoring::Alarms

Public Instance Methods

all() click to toggle source
# File lib/fog/rackspace/models/monitoring/alarms.rb, line 13
def all
  requires :entity
  data = service.list_alarms(entity.identity).body['values']
  load(data)
end
create(attributes = {}) click to toggle source
Calls superclass method Fog::Collection#create
# File lib/fog/rackspace/models/monitoring/alarms.rb, line 32
def create(attributes = {})
  requires :entity
  super({ :entity => entity }.merge!(attributes))
end
get(alarm_id) click to toggle source
# File lib/fog/rackspace/models/monitoring/alarms.rb, line 19
def get(alarm_id)
  requires :entity
  data = service.get_alarm(entity.identity, alarm_id).body
  new(data)
rescue Fog::Rackspace::Monitoring::NotFound
  nil
end
new(attributes = {}) click to toggle source
Calls superclass method Fog::Collection.new
# File lib/fog/rackspace/models/monitoring/alarms.rb, line 27
def new(attributes = {})
  requires :entity
  super({ :entity => entity }.merge!(attributes))
end