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