mirror of
https://github.com/fog/fog-aws.git
synced 2022-11-09 13:50:52 -05:00
53 lines
1.5 KiB
Ruby
53 lines
1.5 KiB
Ruby
|
module Fog
|
||
|
module AWS
|
||
|
class ELB
|
||
|
class Real
|
||
|
require 'fog/aws/parsers/elb/empty'
|
||
|
|
||
|
# Delete a Load Balancer Stickiness Policy
|
||
|
#
|
||
|
# ==== Parameters
|
||
|
# * lb_name<~String> - Name of the ELB
|
||
|
# * policy_name<~String> - The name of the policy to delete
|
||
|
# ==== Returns
|
||
|
# * response<~Excon::Response>:
|
||
|
# * body<~Hash>:
|
||
|
# * 'ResponseMetadata'<~Hash>:
|
||
|
# * 'RequestId'<~String> - Id of request
|
||
|
def delete_load_balancer_policy(lb_name, policy_name)
|
||
|
params = {'PolicyName' => policy_name}
|
||
|
|
||
|
request({
|
||
|
'Action' => 'DeleteLoadBalancerPolicy',
|
||
|
'LoadBalancerName' => lb_name,
|
||
|
:parser => Fog::Parsers::AWS::ELB::Empty.new
|
||
|
}.merge!(params))
|
||
|
end
|
||
|
end
|
||
|
|
||
|
class Mock
|
||
|
def delete_load_balancer_policy(lb_name, policy_name)
|
||
|
if load_balancer = self.data[:load_balancers][lb_name]
|
||
|
response = Excon::Response.new
|
||
|
response.status = 200
|
||
|
|
||
|
load_balancer['Policies'].each do |name, policies|
|
||
|
policies.delete_if { |policy| policy['PolicyName'] == policy_name }
|
||
|
end
|
||
|
|
||
|
response.body = {
|
||
|
'ResponseMetadata' => {
|
||
|
'RequestId' => Fog::AWS::Mock.request_id
|
||
|
}
|
||
|
}
|
||
|
|
||
|
response
|
||
|
else
|
||
|
raise Fog::AWS::ELB::NotFound
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|