Sha256: f5a3d0272c38a32766a9caf57d4a3c42739925add5d64993397c1a2998d402e3

Contents?: true

Size: 451 Bytes

Versions: 44

Compression:

Stored size: 451 Bytes

Contents

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

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

        model Fog::Rackspace::Monitoring::CheckType

        def all
          data = service.list_check_types.body['values']
          load(data)
        end

        def new(attributes = {})
          super({ }.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/check_types.rb
fog-1.15.0 lib/fog/rackspace/models/monitoring/check_types.rb
gapinc-fog-1.14.0 lib/fog/rackspace/models/monitoring/check_types.rb
fog-maestrodev-1.14.0.20130806165225 lib/fog/rackspace/models/monitoring/check_types.rb