Sha256: a7857862bd3ce7a2b89700a8392c10cc2aef24de00ec126b6094d0fb5e889d62
Contents?: true
Size: 1.07 KB
Versions: 39
Compression:
Stored size: 1.07 KB
Contents
module Fog module Rackspace class AutoScale class Real def update_webhook(group_id, policy_id, webhook_id, options) body = options request( :expects => [204], :method => 'PUT', :path => "groups/#{group_id}/policies/#{policy_id}/webhooks/#{webhook_id}", :body => Fog::JSON.encode(body) ) end end class Mock def update_webhook(group_id, policy_id, webhook_id, options) 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 webhook.merge(options) response(:body => webhook) end end end end end
Version data entries
39 entries across 37 versions & 6 rubygems