mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
72e52e70be
This reverts commit d6ecb19d24
.
Conflicts:
fog.gemspec
33 lines
869 B
Ruby
33 lines
869 B
Ruby
module Fog
|
|
module Rackspace
|
|
class AutoScale
|
|
class Real
|
|
def delete_webhook(group_id, policy_id, webhook_id)
|
|
request(
|
|
:expects => [204],
|
|
:method => 'DELETE',
|
|
:path => "groups/#{group_id}/policies/#{policy_id}/webhooks/#{webhook_id}"
|
|
)
|
|
end
|
|
end
|
|
|
|
class Mock
|
|
def delete_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['policies'].find { |p| p["id"] == policy_id }
|
|
if policy.nil?
|
|
raise Fog::Rackspace::AutoScale::NotFound
|
|
end
|
|
|
|
policy['webhooks'].delete_if { |w| w['id'] == webhook_id }
|
|
|
|
response(:status => 204)
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|