2013-02-16 17:11:02 -05:00
|
|
|
module Fog
|
|
|
|
module AWS
|
|
|
|
class DataPipeline
|
|
|
|
|
|
|
|
class Real
|
|
|
|
|
|
|
|
# Delete a pipeline
|
|
|
|
# http://docs.aws.amazon.com/datapipeline/latest/APIReference/API_DeletePipeline.html
|
|
|
|
# ==== Parameters
|
|
|
|
# * PipelineId <~String> - The id of the pipeline to delete
|
|
|
|
# ==== Returns
|
2013-09-10 12:10:57 -04:00
|
|
|
# * success<~Boolean> - Whether the delete was successful
|
2013-02-16 17:11:02 -05:00
|
|
|
def delete_pipeline(id)
|
|
|
|
params = { 'pipelineId' => id }
|
|
|
|
|
|
|
|
response = request({
|
|
|
|
:body => Fog::JSON.encode(params),
|
|
|
|
:headers => { 'X-Amz-Target' => 'DataPipeline.DeletePipeline' },
|
|
|
|
})
|
|
|
|
|
2013-09-10 12:10:57 -04:00
|
|
|
200 == response.status
|
2013-02-16 17:11:02 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
class Mock
|
|
|
|
def delete_pipeline(id)
|
|
|
|
Fog::Mock.not_implemented
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|