Sha256: 3a73ec98dd850feb42624cae4c60fec55d8f0633ba3718df1957c6e7aebf032c

Contents?: true

Size: 448 Bytes

Versions: 130

Compression:

Stored size: 448 Bytes

Contents

module Awspec::Helper
  module Finder
    module Elastictranscoder
      def find_pipeline(id)
        selected = []
        res = elastictranscoder_client.list_pipelines
        loop do
          selected += res.pipelines.select do |pipeline|
            pipeline.id == id || pipeline.name == id
          end
          (res.next_page? && res = res.next_page) || break
        end

        selected.single_resource(id)
      end
    end
  end
end

Version data entries

130 entries across 130 versions & 2 rubygems

Version Path
awspec-0.75.1 lib/awspec/helper/finder/elastictranscoder.rb
awspec-0.75.0 lib/awspec/helper/finder/elastictranscoder.rb
awspec-0.74.1 lib/awspec/helper/finder/elastictranscoder.rb
awspec-0.74.0 lib/awspec/helper/finder/elastictranscoder.rb
awspec-0.73.2 lib/awspec/helper/finder/elastictranscoder.rb
awspec-0.73.1 lib/awspec/helper/finder/elastictranscoder.rb
awspec-0.73.0 lib/awspec/helper/finder/elastictranscoder.rb
awspec-0.72.0 lib/awspec/helper/finder/elastictranscoder.rb
awspec-0.71.0 lib/awspec/helper/finder/elastictranscoder.rb
awspec-0.70.0 lib/awspec/helper/finder/elastictranscoder.rb
awspec-0.69.1 lib/awspec/helper/finder/elastictranscoder.rb
awspec-0.69.0 lib/awspec/helper/finder/elastictranscoder.rb
awspec-0.68.0 lib/awspec/helper/finder/elastictranscoder.rb
awspec-0.67.1 lib/awspec/helper/finder/elastictranscoder.rb
awspec-0.67.0 lib/awspec/helper/finder/elastictranscoder.rb
awspec-0.66.2 lib/awspec/helper/finder/elastictranscoder.rb
awspec-0.66.1 lib/awspec/helper/finder/elastictranscoder.rb
awspec-0.66.0 lib/awspec/helper/finder/elastictranscoder.rb
awspec-0.65.2 lib/awspec/helper/finder/elastictranscoder.rb
awspec-0.65.1 lib/awspec/helper/finder/elastictranscoder.rb