# File lib/fog/aws/requests/data_pipeline/describe_pipelines.rb, line 24 def describe_pipelines(ids) response = Excon::Response.new response.body = {"pipelineDescriptionList" => self.data[:pipelines].values.select { |p| !p[:deleted] && ids.include?(p["pipelineId"]) } } response end