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.84.1 lib/awspec/helper/finder/elastictranscoder.rb
awspec-0.84.0 lib/awspec/helper/finder/elastictranscoder.rb
awspec-0.83.0 lib/awspec/helper/finder/elastictranscoder.rb
awspec-0.82.3 lib/awspec/helper/finder/elastictranscoder.rb
awspec-0.82.2 lib/awspec/helper/finder/elastictranscoder.rb
awspec-0.82.1 lib/awspec/helper/finder/elastictranscoder.rb
awspec-0.82.0 lib/awspec/helper/finder/elastictranscoder.rb
awspec-0.81.1 lib/awspec/helper/finder/elastictranscoder.rb
awspec-0.81.0 lib/awspec/helper/finder/elastictranscoder.rb
awspec-0.80.1 lib/awspec/helper/finder/elastictranscoder.rb
awspec-0.80.0 lib/awspec/helper/finder/elastictranscoder.rb
awspec-0.79.2 lib/awspec/helper/finder/elastictranscoder.rb
awspec-0.79.1 lib/awspec/helper/finder/elastictranscoder.rb
awspec-0.79.0 lib/awspec/helper/finder/elastictranscoder.rb
awspec-0.78.1 lib/awspec/helper/finder/elastictranscoder.rb
awspec-0.77.1 lib/awspec/helper/finder/elastictranscoder.rb
awspec-0.77.0 lib/awspec/helper/finder/elastictranscoder.rb
awspec-0.76.1 lib/awspec/helper/finder/elastictranscoder.rb
awspec-0.76.0 lib/awspec/helper/finder/elastictranscoder.rb
awspec-0.75.2 lib/awspec/helper/finder/elastictranscoder.rb