class Fog::AWS::DataPipeline::Pipelines

Public Instance Methods

all() click to toggle source
# File lib/fog/aws/models/data_pipeline/pipelines.rb, line 9
def all
  ids = []

  begin
    result = service.list_pipelines
    ids << result['pipelineIdList'].map { |id| id['id'] }
  end while (result['hasMoreResults'] && result['marker'])

  load(service.describe_pipelines(ids.flatten)['pipelineDescriptionList'])
end
get(id) click to toggle source
# File lib/fog/aws/models/data_pipeline/pipelines.rb, line 20
def get(id)
  data = service.describe_pipelines([id])['pipelineDescriptionList'].first
  new(data)
rescue Excon::Errors::BadRequest => error
  data = Fog::JSON.decode(error.response.body)
  raise unless data['__type'] == 'PipelineDeletedException' || data['__type'] == 'PipelineNotFoundException'

  nil
end