Sha256: eea1aefde4fe4fa1e606f6567c6e09c605aebd0ebcd8f858291a281cedf9335d

Contents?: true

Size: 806 Bytes

Versions: 38

Compression:

Stored size: 806 Bytes

Contents

module Fog
  module Rackspace
    class AutoScale
      class Real

        def list_webhooks(group_id, policy_id)
          request(
            :expects => [200],
            :method => 'GET',
            :path => "groups/#{group_id}/policies/#{policy_id}/webhooks"
          )
        end
      end

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

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

          response(:body => {'webhooks' => policy['webhooks']})
        end
      end
    end
  end
end

Version data entries

38 entries across 38 versions & 2 rubygems

Version Path
fog-maestrodev-1.20.0.20140305101839 lib/fog/rackspace/requests/auto_scale/list_webhooks.rb
fog-maestrodev-1.20.0.20140305101305 lib/fog/rackspace/requests/auto_scale/list_webhooks.rb
fog-maestrodev-1.19.0.20140212012611 lib/fog/rackspace/requests/auto_scale/list_webhooks.rb
fog-1.20.0 lib/fog/rackspace/requests/auto_scale/list_webhooks.rb
fog-maestrodev-1.19.0.20140110004459 lib/fog/rackspace/requests/auto_scale/list_webhooks.rb
fog-maestrodev-1.19.0.20140110003812 lib/fog/rackspace/requests/auto_scale/list_webhooks.rb
fog-maestrodev-1.19.0.20140109202555 lib/fog/rackspace/requests/auto_scale/list_webhooks.rb
fog-maestrodev-1.19.0.20140107192102 lib/fog/rackspace/requests/auto_scale/list_webhooks.rb
fog-maestrodev-1.19.0.20140107142106 lib/fog/rackspace/requests/auto_scale/list_webhooks.rb
fog-maestrodev-1.19.0.20131219203941 lib/fog/rackspace/requests/auto_scale/list_webhooks.rb
fog-maestrodev-1.18.0.20131219193542 lib/fog/rackspace/requests/auto_scale/list_webhooks.rb
fog-1.19.0 lib/fog/rackspace/requests/auto_scale/list_webhooks.rb
fog-maestrodev-1.18.0.20131219033443 lib/fog/rackspace/requests/auto_scale/list_webhooks.rb
fog-maestrodev-1.18.0.20131219032002 lib/fog/rackspace/requests/auto_scale/list_webhooks.rb
fog-maestrodev-1.18.0.20131219030716 lib/fog/rackspace/requests/auto_scale/list_webhooks.rb
fog-maestrodev-1.18.0.20131219022322 lib/fog/rackspace/requests/auto_scale/list_webhooks.rb
fog-maestrodev-1.18.0.20131218202447 lib/fog/rackspace/requests/auto_scale/list_webhooks.rb
fog-maestrodev-1.18.0.20131209091424 lib/fog/rackspace/requests/auto_scale/list_webhooks.rb
fog-maestrodev-1.18.0.20131209090811 lib/fog/rackspace/requests/auto_scale/list_webhooks.rb
fog-maestrodev-1.18.0.20131206115947 lib/fog/rackspace/requests/auto_scale/list_webhooks.rb