1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00
fog--fog/lib/fog/rackspace/requests/auto_scale/get_webhook.rb
Matt Darby 72e52e70be Revert "Moving Rackspace logic to fog-rackspace"
This reverts commit d6ecb19d24.

Conflicts:
	fog.gemspec
2014-12-10 11:30:34 -05:00

36 lines
983 B
Ruby

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