Sha256: 4d097f66023b8495e779e8fb99cee0c493236315712b1fcd64b2d771412be0ed

Contents?: true

Size: 882 Bytes

Versions: 59

Compression:

Stored size: 882 Bytes

Contents

module Fog
  module AWS
    class DataPipeline

      class Real

        # List all pipelines
        # http://docs.aws.amazon.com/datapipeline/latest/APIReference/API_ListPipelines.html
        # ==== Parameters
        # * Marker <~String> - The starting point for the results to be returned. 
        # ==== Returns
        # * response<~Excon::Response>:
        #   * body<~Hash>:
        def list_pipelines(options={})
          params = {}
          params['Marker'] = options[:marker] if options[:marker]

          response = request({
            :body => Fog::JSON.encode(params),
            :headers => { 'X-Amz-Target' => 'DataPipeline.ListPipelines' },
          })

          Fog::JSON.decode(response.body)
        end

      end

      class Mock
        def list_pipelines(options={})
          Fog::Mock.not_implemented
        end
      end

    end
  end
end

Version data entries

59 entries across 59 versions & 6 rubygems

Version Path
fog-maestrodev-1.18.0.20131205181604 lib/fog/aws/requests/data_pipeline/list_pipelines.rb
fog-maestrodev-1.18.0.20131127194823 lib/fog/aws/requests/data_pipeline/list_pipelines.rb
fog-maestrodev-1.18.0.20131126183714 lib/fog/aws/requests/data_pipeline/list_pipelines.rb
fog-maestrodev-1.18.0.20131126122111 lib/fog/aws/requests/data_pipeline/list_pipelines.rb
fog-maestrodev-1.18.0.20131125111730 lib/fog/aws/requests/data_pipeline/list_pipelines.rb
fog-maestrodev-1.18.0.20131125083406 lib/fog/aws/requests/data_pipeline/list_pipelines.rb
fog-maestrodev-1.18.0.20131123105121 lib/fog/aws/requests/data_pipeline/list_pipelines.rb
fog-maestrodev-1.18.0.20131122203507 lib/fog/aws/requests/data_pipeline/list_pipelines.rb
fog-maestrodev-1.18.0.20131121075022 lib/fog/aws/requests/data_pipeline/list_pipelines.rb
fog-maestrodev-1.18.0.20131118164830 lib/fog/aws/requests/data_pipeline/list_pipelines.rb
fog-maestrodev-1.18.0.20131115184302 lib/fog/aws/requests/data_pipeline/list_pipelines.rb
fog-maestrodev-1.18.0.20131114200144 lib/fog/aws/requests/data_pipeline/list_pipelines.rb
gapinc-fog-1.12.1.2.1 lib/fog/aws/requests/data_pipeline/list_pipelines.rb
fog-maestrodev-1.18.0.20131112185232 lib/fog/aws/requests/data_pipeline/list_pipelines.rb
fog-maestrodev-1.18.0.20131111203459 lib/fog/aws/requests/data_pipeline/list_pipelines.rb
fog-1.18.0 lib/fog/aws/requests/data_pipeline/list_pipelines.rb
fog-1.17.0 lib/fog/aws/requests/data_pipeline/list_pipelines.rb
fog-1.16.0 lib/fog/aws/requests/data_pipeline/list_pipelines.rb
fog-maestrodev-1.15.0.20130927082724 lib/fog/aws/requests/data_pipeline/list_pipelines.rb
fog-maestrodev-1.15.0.20130829165835 lib/fog/aws/requests/data_pipeline/list_pipelines.rb