module Digdag::Client::Log

Public Instance Methods

direct_upload_handle(attempt_id, params={}) click to toggle source
# File lib/digdag_client/client/log.rb, line 9
def direct_upload_handle(attempt_id, params={})
  raise NotImplementedError, "TODO"
end
get_file(attempt_id, file_name) click to toggle source
# File lib/digdag_client/client/log.rb, line 22
def get_file(attempt_id, file_name)
  get("logs/#{attempt_id}/files/#{file_name}")
end
log_file_handle_collection(attempt_id, params={}) click to toggle source
# File lib/digdag_client/client/log.rb, line 13
def log_file_handle_collection(attempt_id, params={})
  options = {}
  if params[:task]
    options[:task] = params[:task]
  end

  get("logs/#{attempt_id}/files", params)
end
log_file_put_result(attempt_id, params={}) click to toggle source
# File lib/digdag_client/client/log.rb, line 5
def log_file_put_result(attempt_id, params={})
  raise NotImplementedError, "TODO"
end