lib/fog/aws/requests/data_pipeline/describe_objects.rb in fog-1.22.0 vs lib/fog/aws/requests/data_pipeline/describe_objects.rb in fog-1.22.1

- old
+ new

@@ -1,11 +1,9 @@ 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 @@ -26,17 +24,15 @@ :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