# File lib/fog/aws/requests/elasticache/delete_cache_security_group.rb, line 24 def delete_cache_security_group(name) if self.data[:security_groups].delete(name) Excon::Response.new( { :status => 200, :body => { 'ResponseMetadata'=>{ 'RequestId'=> Fog::AWS::Mock.request_id } } } ) else raise Fog::AWS::RDS::NotFound.new("DBSecurityGroupNotFound => #{name} not found") end end