All URIs are relative to http://localhost:8080/v1
Method | HTTP request | Description |
---|---|---|
list_executions_by_job | GET /jobs/{job_name}/executions |
Array<Execution> list_executions_by_job(job_name)
List executions.
# load the gem
require 'dkron-ruby'
api_instance = Dkron::ExecutionsApi.new
job_name = 'job_name_example' # String | The job that owns the executions to be fetched.
begin
result = api_instance.list_executions_by_job(job_name)
p result
rescue Dkron::ApiError => e
puts "Exception when calling ExecutionsApi->list_executions_by_job: #{e}"
end
Name | Type | Description | Notes |
---|---|---|---|
job_name | String | The job that owns the executions to be fetched. |
No authorization required
- Content-Type: application/json
- Accept: application/json