mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
72e52e70be
This reverts commit d6ecb19d24
.
Conflicts:
fog.gemspec
24 lines
472 B
Ruby
24 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
|