Sha256: e540f20ccb89d3c1b6daa880fae2bb5beafb3f5f403e0ae18befeabc0fb91338

Contents?: true

Size: 983 Bytes

Versions: 39

Compression:

Stored size: 983 Bytes

Contents

module Fog
  module Rackspace
    class AutoScale
      class Real
        def get_webhook(group_id, policy_id, webhook_id)
          request(
            :expects => [200],
            :method => 'GET',
            :path => "groups/#{group_id}/policies/#{policy_id}/webhooks/#{webhook_id}"
          )
        end
      end

      class Mock
        def get_webhook(group_id, policy_id, webhook_id)
          group = self.data[:autoscale_groups][group_id]
          if group.nil?
            raise Fog::Rackspace::AutoScale::NotFound
          end

          policy = group['scalingPolicies'].find { |p| p["id"] == policy_id }
          if policy.nil?
            raise Fog::Rackspace::AutoScale::NotFound
          end

          webhook = policy['webhooks'].find { |w| w['id'] == webhook_id }
          if webhook.nil?
            raise Fog::Rackspace::AutoScale::NotFound
          end

          response(:body => {'webhook' => webhook})
        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/requests/auto_scale/get_webhook.rb
vagrant-packet-0.1.1 vendor/bundle/ruby/2.5.0/gems/fog-rackspace-0.1.5/lib/fog/rackspace/requests/auto_scale/get_webhook.rb
vagrant-packet-0.1.1 vendor/bundle/ruby/2.4.0/gems/fog-rackspace-0.1.5/lib/fog/rackspace/requests/auto_scale/get_webhook.rb
vagrant-packet-0.1.1 vendor/bundle/ruby/2.3.0/gems/fog-rackspace-0.1.5/lib/fog/rackspace/requests/auto_scale/get_webhook.rb
fog-rackspace-0.1.5 lib/fog/rackspace/requests/auto_scale/get_webhook.rb
fog-rackspace-0.1.4 lib/fog/rackspace/requests/auto_scale/get_webhook.rb
fog-rackspace-0.1.3 lib/fog/rackspace/requests/auto_scale/get_webhook.rb
fog-rackspace-0.1.2 lib/fog/rackspace/requests/auto_scale/get_webhook.rb
fog-rackspace-0.1.1 lib/fog/rackspace/requests/auto_scale/get_webhook.rb
fog-rackspace-0.1.0 lib/fog/rackspace/requests/auto_scale/get_webhook.rb
fog-1.37.0 lib/fog/rackspace/requests/auto_scale/get_webhook.rb
fog-1.36.0 lib/fog/rackspace/requests/auto_scale/get_webhook.rb
fog-1.35.0 lib/fog/rackspace/requests/auto_scale/get_webhook.rb
fog-2.0.0.pre.0 lib/fog/rackspace/requests/auto_scale/get_webhook.rb
vagrant-cloudstack-1.2.0 vendor/bundle/gems/fog-1.32.0/lib/fog/rackspace/requests/auto_scale/get_webhook.rb
fog-1.34.0 lib/fog/rackspace/requests/auto_scale/get_webhook.rb
fog-1.33.0 lib/fog/rackspace/requests/auto_scale/get_webhook.rb
fog-1.32.0 lib/fog/rackspace/requests/auto_scale/get_webhook.rb
fog-1.31.0 lib/fog/rackspace/requests/auto_scale/get_webhook.rb
vagrant-cloudstack-1.1.0 vendor/bundle/gems/fog-1.22.1/lib/fog/rackspace/requests/auto_scale/get_webhook.rb