1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00
fog--fog/lib/fog/rackspace/models/monitoring/alarm_example.rb

25 lines
472 B
Ruby
Raw Normal View History

require 'fog/core/model'
require 'fog/rackspace/models/monitoring/base'
module Fog
module Rackspace
class Monitoring
class AlarmExample < Fog::Rackspace::Monitoring::Base
identity :id
attribute :label
attribute :description
attribute :check_type
attribute :criteria
attribute :fields
attribute :bound_criteria
def bound?
!bound_criteria.nil?
end
end
end
end
end