Sha256: 53891eb67d49b8ed4a53f962b9d70db03436f2a8703f37fc130a03d19ba1b766

Contents?: true

Size: 1.86 KB

Versions: 39

Compression:

Stored size: 1.86 KB

Contents

require 'fog/core/model'
require 'fog/rackspace/models/monitoring/base'

module Fog
  module Rackspace
    class Monitoring
      class Check < Fog::Rackspace::Monitoring::Base
        identity :id
        attribute :entity

        attribute :label
        attribute :metadata
        attribute :target_alias
        attribute :target_resolver
        attribute :target_hostname
        attribute :period
        attribute :timeout
        attribute :type
        attribute :details
        attribute :disabled
        attribute :monitoring_zones_poll

        def entity=(obj)
           attributes[:entity] = obj.is_a?(String) ? Entity.new(:id => obj) : obj
         end

        def params(options={})
          h = {
            'label'       => label,
            'metadata'    => metadata,
            'target_alias'=> target_alias,
            'target_resolver' => target_resolver,
            'target_hostname' => target_hostname,
            'period' => period,
            'timeout'=> timeout,
            'details'=> details,
            'monitoring_zones_poll'=> monitoring_zones_poll,
            'disabled'=> disabled
          }.merge(options)

          h.reject {|key, value| value.nil?}
        end

        def save
          if identity
            data = service.update_check(entity.id, identity, params)
          else
            requires :type
            options = params('type' => type)
            data = service.create_check(entity.id, options)
            self.id = data.headers['X-Object-ID']
          end
          true
        end

        def destroy
          requires :id
          service.delete_check(entity.id, id)
        end

        def metrics
          @metrics ||= begin
            Fog::Rackspace::Monitoring::Metrics.new(
              :check      => self,
              :service => service
            )
          end
        end
      end
    end
  end
end

Version data entries

39 entries across 37 versions & 6 rubygems

Version Path
fog-rackspace-0.1.6 lib/fog/rackspace/models/monitoring/check.rb
vagrant-packet-0.1.1 vendor/bundle/ruby/2.5.0/gems/fog-rackspace-0.1.5/lib/fog/rackspace/models/monitoring/check.rb
vagrant-packet-0.1.1 vendor/bundle/ruby/2.4.0/gems/fog-rackspace-0.1.5/lib/fog/rackspace/models/monitoring/check.rb
vagrant-packet-0.1.1 vendor/bundle/ruby/2.3.0/gems/fog-rackspace-0.1.5/lib/fog/rackspace/models/monitoring/check.rb
fog-rackspace-0.1.5 lib/fog/rackspace/models/monitoring/check.rb
fog-rackspace-0.1.4 lib/fog/rackspace/models/monitoring/check.rb
fog-rackspace-0.1.3 lib/fog/rackspace/models/monitoring/check.rb
fog-rackspace-0.1.2 lib/fog/rackspace/models/monitoring/check.rb
fog-rackspace-0.1.1 lib/fog/rackspace/models/monitoring/check.rb
fog-rackspace-0.1.0 lib/fog/rackspace/models/monitoring/check.rb
fog-1.37.0 lib/fog/rackspace/models/monitoring/check.rb
fog-1.36.0 lib/fog/rackspace/models/monitoring/check.rb
fog-1.35.0 lib/fog/rackspace/models/monitoring/check.rb
fog-2.0.0.pre.0 lib/fog/rackspace/models/monitoring/check.rb
vagrant-cloudstack-1.2.0 vendor/bundle/gems/fog-1.32.0/lib/fog/rackspace/models/monitoring/check.rb
fog-1.34.0 lib/fog/rackspace/models/monitoring/check.rb
fog-1.33.0 lib/fog/rackspace/models/monitoring/check.rb
fog-1.32.0 lib/fog/rackspace/models/monitoring/check.rb
fog-1.31.0 lib/fog/rackspace/models/monitoring/check.rb
vagrant-cloudstack-1.1.0 vendor/bundle/gems/fog-1.22.1/lib/fog/rackspace/models/monitoring/check.rb