Sha256: be0942b8c361945193d47fb81f449dfb3164b2fc097d5b1c210ee4bb85e50e0d
Contents?: true
Size: 1.12 KB
Versions: 1
Compression:
Stored size: 1.12 KB
Contents
# Dkron::ExecutionsApi All URIs are relative to *http://localhost:8080/v1* Method | HTTP request | Description ------------- | ------------- | ------------- [**list_executions_by_job**](ExecutionsApi.md#list_executions_by_job) | **GET** /executions/{job_name} | # **list_executions_by_job** > Array<Execution> list_executions_by_job(job_name) List executions. ### Example ```ruby # load the gem require 'dkron-rb' 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 ``` ### Parameters Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- **job_name** | **String**| The job that owns the executions to be fetched. | ### Return type [**Array<Execution>**](Execution.md) ### Authorization No authorization required ### HTTP request headers - **Content-Type**: application/json - **Accept**: application/json
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
dkron-rb-0.9.2 | docs/ExecutionsApi.md |