mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
25 lines
472 B
Ruby
25 lines
472 B
Ruby
|
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
|