All URIs are relative to /api
Method | HTTP request | Description |
---|---|---|
add_report | POST /report | Create a new report |
delete_report | DELETE /report/{id} | Delete a report |
download_report | GET /report/{id}/download/{filename} | Download a report |
get_report | GET /report/{id} | Get a report |
get_report_list | GET /report | Get a list of reports |
get_report_types | GET /report/types | Get a list of report types |
view_report | GET /report/{id}/view/{filename} | View a report |
Report add_report(report_parameters)
Create a new report
- Bearer (JWT) Authentication (jwt):
import time
import ibutsu_client
from ibutsu_client.api import report_api
from ibutsu_client.model.report_parameters import ReportParameters
from ibutsu_client.model.report import Report
from pprint import pprint
# Defining the host is optional and defaults to /api
# See configuration.py for a list of all supported configuration parameters.
configuration = ibutsu_client.Configuration(
host = "/api"
)
# The client must configure the authentication and authorization parameters
# in accordance with the API server security policy.
# Examples for each auth method are provided below, use the example that
# satisfies your auth use case.
# Configure Bearer authorization (JWT): jwt
configuration = ibutsu_client.Configuration(
access_token = 'YOUR_BEARER_TOKEN'
)
# Enter a context with an instance of the API client
with ibutsu_client.ApiClient(configuration) as api_client:
# Create an instance of the API class
api_instance = report_api.ReportApi(api_client)
report_parameters = ReportParameters(
type="dashboard",
filter="test_navigation",
source="iqe-jenkins",
) # ReportParameters | The parameters for the report
# example passing only required values which don't have defaults set
try:
# Create a new report
api_response = api_instance.add_report(report_parameters)
pprint(api_response)
except ibutsu_client.ApiException as e:
print("Exception when calling ReportApi->add_report: %s\n" % e)
Name | Type | Description | Notes |
---|---|---|---|
report_parameters | ReportParameters | The parameters for the report |
- Content-Type: application/json
- Accept: application/json
Status code | Description | Response headers |
---|---|---|
201 | Report created | - |
400 | Bad request, probably not enough parameters | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
delete_report(id)
Delete a report
- Bearer (JWT) Authentication (jwt):
import time
import ibutsu_client
from ibutsu_client.api import report_api
from pprint import pprint
# Defining the host is optional and defaults to /api
# See configuration.py for a list of all supported configuration parameters.
configuration = ibutsu_client.Configuration(
host = "/api"
)
# The client must configure the authentication and authorization parameters
# in accordance with the API server security policy.
# Examples for each auth method are provided below, use the example that
# satisfies your auth use case.
# Configure Bearer authorization (JWT): jwt
configuration = ibutsu_client.Configuration(
access_token = 'YOUR_BEARER_TOKEN'
)
# Enter a context with an instance of the API client
with ibutsu_client.ApiClient(configuration) as api_client:
# Create an instance of the API class
api_instance = report_api.ReportApi(api_client)
id = "id_example" # str | ID of report to delete
# example passing only required values which don't have defaults set
try:
# Delete a report
api_instance.delete_report(id)
except ibutsu_client.ApiException as e:
print("Exception when calling ReportApi->delete_report: %s\n" % e)
Name | Type | Description | Notes |
---|---|---|---|
id | str | ID of report to delete |
void (empty response body)
- Content-Type: Not defined
- Accept: Not defined
Status code | Description | Response headers |
---|---|---|
200 | The report was deleted | - |
404 | The report was not found | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
file_type download_report(id, filename)
Download a report
- Bearer (JWT) Authentication (jwt):
import time
import ibutsu_client
from ibutsu_client.api import report_api
from pprint import pprint
# Defining the host is optional and defaults to /api
# See configuration.py for a list of all supported configuration parameters.
configuration = ibutsu_client.Configuration(
host = "/api"
)
# The client must configure the authentication and authorization parameters
# in accordance with the API server security policy.
# Examples for each auth method are provided below, use the example that
# satisfies your auth use case.
# Configure Bearer authorization (JWT): jwt
configuration = ibutsu_client.Configuration(
access_token = 'YOUR_BEARER_TOKEN'
)
# Enter a context with an instance of the API client
with ibutsu_client.ApiClient(configuration) as api_client:
# Create an instance of the API class
api_instance = report_api.ReportApi(api_client)
id = "id_example" # str | The ID of the report
filename = "filename_example" # str | The file name of the downloadable report
# example passing only required values which don't have defaults set
try:
# Download a report
api_response = api_instance.download_report(id, filename)
pprint(api_response)
except ibutsu_client.ApiException as e:
print("Exception when calling ReportApi->download_report: %s\n" % e)
Name | Type | Description | Notes |
---|---|---|---|
id | str | The ID of the report | |
filename | str | The file name of the downloadable report |
file_type
- Content-Type: Not defined
- Accept: text/plain, application/csv, application/json, text/html, application/zip
Status code | Description | Response headers |
---|---|---|
200 | File contents | - |
404 | Artifact not found | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
Report get_report(id)
Get a report
- Bearer (JWT) Authentication (jwt):
import time
import ibutsu_client
from ibutsu_client.api import report_api
from ibutsu_client.model.report import Report
from pprint import pprint
# Defining the host is optional and defaults to /api
# See configuration.py for a list of all supported configuration parameters.
configuration = ibutsu_client.Configuration(
host = "/api"
)
# The client must configure the authentication and authorization parameters
# in accordance with the API server security policy.
# Examples for each auth method are provided below, use the example that
# satisfies your auth use case.
# Configure Bearer authorization (JWT): jwt
configuration = ibutsu_client.Configuration(
access_token = 'YOUR_BEARER_TOKEN'
)
# Enter a context with an instance of the API client
with ibutsu_client.ApiClient(configuration) as api_client:
# Create an instance of the API class
api_instance = report_api.ReportApi(api_client)
id = "id_example" # str | The ID of the report
# example passing only required values which don't have defaults set
try:
# Get a report
api_response = api_instance.get_report(id)
pprint(api_response)
except ibutsu_client.ApiException as e:
print("Exception when calling ReportApi->get_report: %s\n" % e)
Name | Type | Description | Notes |
---|---|---|---|
id | str | The ID of the report |
- Content-Type: Not defined
- Accept: application/json
Status code | Description | Response headers |
---|---|---|
200 | Report item | - |
404 | Report not found | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
ReportList get_report_list()
Get a list of reports
- Bearer (JWT) Authentication (jwt):
import time
import ibutsu_client
from ibutsu_client.api import report_api
from ibutsu_client.model.report_list import ReportList
from pprint import pprint
# Defining the host is optional and defaults to /api
# See configuration.py for a list of all supported configuration parameters.
configuration = ibutsu_client.Configuration(
host = "/api"
)
# The client must configure the authentication and authorization parameters
# in accordance with the API server security policy.
# Examples for each auth method are provided below, use the example that
# satisfies your auth use case.
# Configure Bearer authorization (JWT): jwt
configuration = ibutsu_client.Configuration(
access_token = 'YOUR_BEARER_TOKEN'
)
# Enter a context with an instance of the API client
with ibutsu_client.ApiClient(configuration) as api_client:
# Create an instance of the API class
api_instance = report_api.ReportApi(api_client)
page = 1 # int | Set the page of items to return, defaults to 1 (optional)
page_size = 1 # int | Set the number of items per page, defaults to 25 (optional)
project = "project_example" # str | Filter reports by project ID (optional)
# example passing only required values which don't have defaults set
# and optional values
try:
# Get a list of reports
api_response = api_instance.get_report_list(page=page, page_size=page_size, project=project)
pprint(api_response)
except ibutsu_client.ApiException as e:
print("Exception when calling ReportApi->get_report_list: %s\n" % e)
Name | Type | Description | Notes |
---|---|---|---|
page | int | Set the page of items to return, defaults to 1 | [optional] |
page_size | int | Set the number of items per page, defaults to 25 | [optional] |
project | str | Filter reports by project ID | [optional] |
- Content-Type: Not defined
- Accept: application/json
Status code | Description | Response headers |
---|---|---|
200 | A list of reports | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
[GetReportTypes200ResponseInner] get_report_types()
Get a list of report types
- Bearer (JWT) Authentication (jwt):
import time
import ibutsu_client
from ibutsu_client.api import report_api
from ibutsu_client.model.get_report_types200_response_inner import GetReportTypes200ResponseInner
from pprint import pprint
# Defining the host is optional and defaults to /api
# See configuration.py for a list of all supported configuration parameters.
configuration = ibutsu_client.Configuration(
host = "/api"
)
# The client must configure the authentication and authorization parameters
# in accordance with the API server security policy.
# Examples for each auth method are provided below, use the example that
# satisfies your auth use case.
# Configure Bearer authorization (JWT): jwt
configuration = ibutsu_client.Configuration(
access_token = 'YOUR_BEARER_TOKEN'
)
# Enter a context with an instance of the API client
with ibutsu_client.ApiClient(configuration) as api_client:
# Create an instance of the API class
api_instance = report_api.ReportApi(api_client)
# example, this endpoint has no required or optional parameters
try:
# Get a list of report types
api_response = api_instance.get_report_types()
pprint(api_response)
except ibutsu_client.ApiException as e:
print("Exception when calling ReportApi->get_report_types: %s\n" % e)
This endpoint does not need any parameter.
[GetReportTypes200ResponseInner]
- Content-Type: Not defined
- Accept: application/json
Status code | Description | Response headers |
---|---|---|
200 | A list of types of reports available | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
file_type view_report(id, filename)
View a report
- Bearer (JWT) Authentication (jwt):
import time
import ibutsu_client
from ibutsu_client.api import report_api
from pprint import pprint
# Defining the host is optional and defaults to /api
# See configuration.py for a list of all supported configuration parameters.
configuration = ibutsu_client.Configuration(
host = "/api"
)
# The client must configure the authentication and authorization parameters
# in accordance with the API server security policy.
# Examples for each auth method are provided below, use the example that
# satisfies your auth use case.
# Configure Bearer authorization (JWT): jwt
configuration = ibutsu_client.Configuration(
access_token = 'YOUR_BEARER_TOKEN'
)
# Enter a context with an instance of the API client
with ibutsu_client.ApiClient(configuration) as api_client:
# Create an instance of the API class
api_instance = report_api.ReportApi(api_client)
id = "id_example" # str | The ID of the report
filename = "filename_example" # str | The file name of the downloadable report
# example passing only required values which don't have defaults set
try:
# View a report
api_response = api_instance.view_report(id, filename)
pprint(api_response)
except ibutsu_client.ApiException as e:
print("Exception when calling ReportApi->view_report: %s\n" % e)
Name | Type | Description | Notes |
---|---|---|---|
id | str | The ID of the report | |
filename | str | The file name of the downloadable report |
file_type
- Content-Type: Not defined
- Accept: text/plain, application/csv, application/json, text/html, application/zip
Status code | Description | Response headers |
---|---|---|
200 | File contents | - |
404 | Artifact not found | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]