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.18.2 lib/awspec/helper/finder/elastictranscoder.rb
awspec-1.18.1 lib/awspec/helper/finder/elastictranscoder.rb
awspec-1.18.0 lib/awspec/helper/finder/elastictranscoder.rb
awspec-1.17.4 lib/awspec/helper/finder/elastictranscoder.rb
awspec-1.17.3 lib/awspec/helper/finder/elastictranscoder.rb
awspec-1.17.2 lib/awspec/helper/finder/elastictranscoder.rb
awspec-1.17.1 lib/awspec/helper/finder/elastictranscoder.rb
awspec-1.17.0 lib/awspec/helper/finder/elastictranscoder.rb
awspec-1.16.1 lib/awspec/helper/finder/elastictranscoder.rb
awspec-1.16.0 lib/awspec/helper/finder/elastictranscoder.rb
awspec-1.15.3 lib/awspec/helper/finder/elastictranscoder.rb
awspec-1.15.2 lib/awspec/helper/finder/elastictranscoder.rb
awspec-1.15.1 lib/awspec/helper/finder/elastictranscoder.rb
awspec-1.15.0 lib/awspec/helper/finder/elastictranscoder.rb
awspec-1.14.1 lib/awspec/helper/finder/elastictranscoder.rb
awspec-1.14.0 lib/awspec/helper/finder/elastictranscoder.rb
awspec-1.13.0 lib/awspec/helper/finder/elastictranscoder.rb
awspec-1.12.7 lib/awspec/helper/finder/elastictranscoder.rb
awspec-1.12.6 lib/awspec/helper/finder/elastictranscoder.rb
awspec-1.12.5 lib/awspec/helper/finder/elastictranscoder.rb