Sha256: 7033dca4ec0043dfa3d84c09e5e17ed935dd661bfbe4073f48e0f17d50899bf6

Contents?: true

Size: 1.33 KB

Versions: 51

Compression:

Stored size: 1.33 KB

Contents

module Fog
  module AWS
    class DataPipeline
      class Real
        # Queries a pipeline for the names of objects that match a specified set of conditions.
        # http://docs.aws.amazon.com/datapipeline/latest/APIReference/API_QueryObjects.html
        # ==== Parameters
        # * PipelineId <~String> - The ID of the pipeline
        # * Sphere <~String> - Specifies whether the query applies to components or instances.
        #                      Allowable values: COMPONENT, INSTANCE, ATTEMPT.
        # * Marker <~String> - The starting point for the results to be returned.
        # ==== Returns
        # * response<~Excon::Response>:
        #   * body<~Hash>:
        def query_objects(id, sphere, options={})
          params = {
            'pipelineId' => id,
            'sphere' => sphere,
          }
          params['marker'] = options[:marker] if options[:marker]

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

      class Mock
        def query_objects(id, sphere, options={})
          response = Excon::Response.new

          find_pipeline(id)

          response.body = {"hasMoreResults" => false, "ids" => ["Default"]}
          response
        end
      end
    end
  end
end

Version data entries

51 entries across 49 versions & 2 rubygems

Version Path
fog-aws-3.30.0 lib/fog/aws/requests/data_pipeline/query_objects.rb
fog-aws-3.29.0 lib/fog/aws/requests/data_pipeline/query_objects.rb
fog-aws-3.28.0 lib/fog/aws/requests/data_pipeline/query_objects.rb
fog-aws-3.27.0 lib/fog/aws/requests/data_pipeline/query_objects.rb
fog-aws-3.26.0 lib/fog/aws/requests/data_pipeline/query_objects.rb
fog-aws-3.25.0 lib/fog/aws/requests/data_pipeline/query_objects.rb
fog-aws-3.24.0 lib/fog/aws/requests/data_pipeline/query_objects.rb
fog-aws-3.23.0 lib/fog/aws/requests/data_pipeline/query_objects.rb
fog-aws-3.22.0 lib/fog/aws/requests/data_pipeline/query_objects.rb
fog-aws-3.21.1 lib/fog/aws/requests/data_pipeline/query_objects.rb
fog-aws-3.21.0 lib/fog/aws/requests/data_pipeline/query_objects.rb
fog-aws-3.20.0 lib/fog/aws/requests/data_pipeline/query_objects.rb
fog-aws-3.19.0 lib/fog/aws/requests/data_pipeline/query_objects.rb
fog-aws-3.18.0 lib/fog/aws/requests/data_pipeline/query_objects.rb
fog-aws-3.17.0 lib/fog/aws/requests/data_pipeline/query_objects.rb
fog-aws-3.16.0 lib/fog/aws/requests/data_pipeline/query_objects.rb
fog-aws-3.15.0 lib/fog/aws/requests/data_pipeline/query_objects.rb
fog-aws-3.14.0 lib/fog/aws/requests/data_pipeline/query_objects.rb
fog-aws-3.13.0 lib/fog/aws/requests/data_pipeline/query_objects.rb
fog-aws-3.12.0 lib/fog/aws/requests/data_pipeline/query_objects.rb