Module: Awspec::Helper::Finder::Elastictranscoder
- Included in:
- Awspec::Helper::Finder
- Defined in:
- lib/awspec/helper/finder/elastictranscoder.rb
Instance Method Summary collapse
Instance Method Details
#find_pipeline(id) ⇒ Object
6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
# File 'lib/awspec/helper/finder/elastictranscoder.rb', line 6 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 break if res.next_page_token.nil? res = elastictranscoder_client.list_pipelines({ page_token: res.next_page_token }) end selected.single_resource(id) end |