Sha256: c652f2539d6030b43d1903f2accf399993e0f6ca09d82f59e017cedb9aa04b21
Contents?: true
Size: 744 Bytes
Versions: 71
Compression:
Stored size: 744 Bytes
Contents
module Bearcat class Client < Footrest::Client module Reports def report_list(account) get("/api/v1/accounts/#{account}/reports") end def start_report(account, report_name, params = {}) post("/api/v1/accounts/#{account}/reports/#{report_name}", params) end def report_history(account, report_name) get("/api/v1/accounts/#{account}/reports/#{report_name}") end def report_status(account, report_name, report_id) get("/api/v1/accounts/#{account}/reports/#{report_name}/#{report_id}") end def delete_report(account, report_name, report_id) delete("/api/v1/accounts/#{account}/reports/#{report_name}/#{report_id}") end end end end
Version data entries
71 entries across 71 versions & 1 rubygems