1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00
fog--fog/lib/fog/aws/requests/data_pipeline/query_objects.rb

41 lines
1.1 KiB
Ruby

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.
# ==== Returns
# * response<~Excon::Response>:
# * body<~Hash>:
def query_objects(id, sphere)
params = {
'pipelineId' => id,
'sphere' => sphere,
}
response = request({
:body => Fog::JSON.encode(params),
:headers => { 'X-Amz-Target' => 'DataPipeline.QueryObjects' },
})
Fog::JSON.decode(response.body)
end
end
class Mock
def query_objects(id, objects)
Fog::Mock.not_implemented
end
end
end
end
end