Sha256: 0b65e843cd6c024cf824c152fb57617019d1782e0701e244a9553fa2a51498a8
Contents?: true
Size: 1.3 KB
Versions: 47
Compression:
Stored size: 1.3 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_DescribeObjects.html # ==== Parameters # * PipelineId <~String> - The ID of the pipeline # * ObjectIds <~Array> - Identifiers of the pipeline objects that contain the definitions # to be described. You can pass as many as 25 identifiers in a # single call to DescribeObjects. # * Options <~Hash> - A Hash of additional options desrcibed in the API docs. # ==== Returns # * response<~Excon::Response>: # * body<~Hash>: def describe_objects(id, objectIds, options={}) params = options.merge({ 'pipelineId' => id, 'objectIds' => objectIds, }) response = request({ :body => Fog::JSON.encode(params), :headers => { 'X-Amz-Target' => 'DataPipeline.DescribeObjects' }, }) Fog::JSON.decode(response.body) end end class Mock def describe_objects(id, objects, options={}) Fog::Mock.not_implemented end end end end end
Version data entries
47 entries across 47 versions & 5 rubygems