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-1.12.4 lib/awspec/helper/finder/elastictranscoder.rb
awspec-1.12.3 lib/awspec/helper/finder/elastictranscoder.rb
awspec-1.12.2 lib/awspec/helper/finder/elastictranscoder.rb
awspec-1.12.1 lib/awspec/helper/finder/elastictranscoder.rb
awspec-1.12.0 lib/awspec/helper/finder/elastictranscoder.rb
awspec-1.11.1 lib/awspec/helper/finder/elastictranscoder.rb
awspec-1.11.0 lib/awspec/helper/finder/elastictranscoder.rb
awspec-1.10.0 lib/awspec/helper/finder/elastictranscoder.rb
awspec-1.9.0 lib/awspec/helper/finder/elastictranscoder.rb
awspec-1.8.0 lib/awspec/helper/finder/elastictranscoder.rb
awspec-1.7.0 lib/awspec/helper/finder/elastictranscoder.rb
awspec-1.6.1 lib/awspec/helper/finder/elastictranscoder.rb
awspec-1.6.0 lib/awspec/helper/finder/elastictranscoder.rb
awspec-1.5.4 lib/awspec/helper/finder/elastictranscoder.rb
awspec-1.5.3 lib/awspec/helper/finder/elastictranscoder.rb
awspec-1.5.2 lib/awspec/helper/finder/elastictranscoder.rb
awspec-1.5.1 lib/awspec/helper/finder/elastictranscoder.rb
awspec-1.5.0 lib/awspec/helper/finder/elastictranscoder.rb
awspec-1.4.3 lib/awspec/helper/finder/elastictranscoder.rb
awspec-1.4.2 lib/awspec/helper/finder/elastictranscoder.rb