module NgpVan::Client::ExportJobs

Public Instance Methods

create_export_job(body: {}) click to toggle source
# File lib/ngp_van/client/export_jobs.rb, line 6
def create_export_job(body: {})
  post(path: 'exportJobs', body: body)
end
export_job(id:) click to toggle source
# File lib/ngp_van/client/export_jobs.rb, line 10
def export_job(id:)
  verify_id(id)
  get(path: "exportJobs/#{id}")
end
export_job_types() click to toggle source
# File lib/ngp_van/client/export_jobs.rb, line 15
def export_job_types
  get(path: 'exportJobTypes')
end