Sha256: eff77c8681fa5a3c5d501e95ca6ffcff5a8323caae1975a5bf4f3ce0912ff6f6

Contents?: true

Size: 956 Bytes

Versions: 44

Compression:

Stored size: 956 Bytes

Contents

require 'fog/core/collection'
require 'fog/rackspace/models/monitoring/check'

module Fog
  module Rackspace
    class Monitoring
      class Checks < Fog::Collection

        attribute :entity

        model Fog::Rackspace::Monitoring::Check

        def all
          requires :entity
          data = service.list_checks(entity.identity).body['values']
          load(data)
        end

        def get(check_id)
          requires :entity
          data = service.get_check(entity.identity, check_id).body
          new(data)
        rescue Fog::Rackspace::Monitoring::NotFound
          nil
        end

        def new(attributes = {})
          requires :entity unless attributes[:entity]
          super({ :entity => entity }.merge!(attributes))
        end

        def create(attributes = {})
          requires :entity unless attributes[:entity]
          super({ :entity => entity }.merge!(attributes))
        end

      end
    end
  end
end

Version data entries

44 entries across 44 versions & 3 rubygems

Version Path
fog-maestrodev-1.15.0.20130829165835 lib/fog/rackspace/models/monitoring/checks.rb
fog-1.15.0 lib/fog/rackspace/models/monitoring/checks.rb
gapinc-fog-1.14.0 lib/fog/rackspace/models/monitoring/checks.rb
fog-maestrodev-1.14.0.20130806165225 lib/fog/rackspace/models/monitoring/checks.rb