Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/AdminProjectManagementApi.md
Original file line number Diff line number Diff line change
Expand Up @@ -402,7 +402,7 @@ Name | Type | Description | Notes
| Status code | Description | Response headers |
|-------------|-------------|------------------|
**200** | successful operation | - |
**400** | Bad reqest, JSON required or not enough parameters | - |
**400** | Bad request, JSON required or not enough parameters | - |
**401** | The user needs to be logged in | - |
**403** | The user needs to be a superadmin | - |
**404** | Project not found | - |
Expand Down
2 changes: 1 addition & 1 deletion docs/AdminUserManagementApi.md
Original file line number Diff line number Diff line change
Expand Up @@ -402,7 +402,7 @@ Name | Type | Description | Notes
| Status code | Description | Response headers |
|-------------|-------------|------------------|
**200** | successful operation | - |
**400** | Bad reqest, JSON required or not enough parameters | - |
**400** | Bad request, JSON required or not enough parameters | - |
**401** | The user needs to be logged in | - |
**403** | The user needs to be a superadmin | - |
**404** | User not found | - |
Expand Down
8 changes: 4 additions & 4 deletions docs/ArtifactApi.md
Original file line number Diff line number Diff line change
Expand Up @@ -358,8 +358,8 @@ with ibutsu_client.ApiClient(configuration) as api_client:
api_instance = ibutsu_client.ArtifactApi(api_client)
filename = 'filename_example' # str | name of the file
file = None # bytearray | file to upload
result_id = 'result_id_example' # str | ID of result to attach artifact to (optional)
run_id = 'run_id_example' # str | ID of run to attach artifact to (optional)
result_id = 'result_id_example' # str | ID of result to attach artifact to (mutually exclusive with runId) (optional)
run_id = 'run_id_example' # str | ID of run to attach artifact to (mutually exclusive with resultId) (optional)
additional_metadata = None # object | Additional data to pass to server (optional)

try:
Expand All @@ -380,8 +380,8 @@ Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
**filename** | **str**| name of the file |
**file** | **bytearray**| file to upload |
**result_id** | **str**| ID of result to attach artifact to | [optional]
**run_id** | **str**| ID of run to attach artifact to | [optional]
**result_id** | **str**| ID of result to attach artifact to (mutually exclusive with runId) | [optional]
**run_id** | **str**| ID of run to attach artifact to (mutually exclusive with resultId) | [optional]
**additional_metadata** | [**object**](object.md)| Additional data to pass to server | [optional]

### Return type
Expand Down
2 changes: 1 addition & 1 deletion docs/ResultApi.md
Original file line number Diff line number Diff line change
Expand Up @@ -356,7 +356,7 @@ Name | Type | Description | Notes
| Status code | Description | Response headers |
|-------------|-------------|------------------|
**200** | successful operation | - |
**400** | Bad reqest, JSON required or not enough parameters | - |
**400** | Bad request, JSON required or not enough parameters | - |
**404** | Result not found | - |

[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
Expand Down
2 changes: 1 addition & 1 deletion docs/WidgetConfigApi.md
Original file line number Diff line number Diff line change
Expand Up @@ -396,7 +396,7 @@ Name | Type | Description | Notes
| Status code | Description | Response headers |
|-------------|-------------|------------------|
**200** | successful operation | - |
**400** | Bad reqest, JSON required or not enough parameters | - |
**400** | Bad request, JSON required or not enough parameters | - |
**404** | Widget configuration not found | - |

[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
Expand Down
4 changes: 2 additions & 2 deletions ibutsu_client/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@

A system to store and query test results

The version of the OpenAPI document: 2.8.1
The version of the OpenAPI document: 2.8.3
Generated by OpenAPI Generator (https://openapi-generator.tech)

Do not edit the class manually.
""" # noqa: E501

__version__ = "3.1.0"
__version__ = "3.1.1"

# Define package exports
__all__ = [
Expand Down
2 changes: 1 addition & 1 deletion ibutsu_client/api/admin_project_management_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

A system to store and query test results

The version of the OpenAPI document: 2.8.1
The version of the OpenAPI document: 2.8.3
Generated by OpenAPI Generator (https://openapi-generator.tech)

Do not edit the class manually.
Expand Down
2 changes: 1 addition & 1 deletion ibutsu_client/api/admin_user_management_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

A system to store and query test results

The version of the OpenAPI document: 2.8.1
The version of the OpenAPI document: 2.8.3
Generated by OpenAPI Generator (https://openapi-generator.tech)

Do not edit the class manually.
Expand Down
44 changes: 31 additions & 13 deletions ibutsu_client/api/artifact_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

A system to store and query test results

The version of the OpenAPI document: 2.8.1
The version of the OpenAPI document: 2.8.3
Generated by OpenAPI Generator (https://openapi-generator.tech)

Do not edit the class manually.
Expand Down Expand Up @@ -977,10 +977,16 @@ def upload_artifact(
Field(description="file to upload"),
],
result_id: Annotated[
UUID | None, Field(description="ID of result to attach artifact to")
UUID | None,
Field(
description="ID of result to attach artifact to (mutually exclusive with runId)"
),
] = None,
run_id: Annotated[
UUID | None, Field(description="ID of run to attach artifact to")
UUID | None,
Field(
description="ID of run to attach artifact to (mutually exclusive with resultId)"
Comment thread
mshriver marked this conversation as resolved.
),
] = None,
additional_metadata: Annotated[
dict[str, Any] | None, Field(description="Additional data to pass to server")
Expand All @@ -1000,9 +1006,9 @@ def upload_artifact(
:type filename: str
:param file: file to upload (required)
:type file: bytearray
:param result_id: ID of result to attach artifact to
:param result_id: ID of result to attach artifact to (mutually exclusive with runId)
:type result_id: str
:param run_id: ID of run to attach artifact to
:param run_id: ID of run to attach artifact to (mutually exclusive with resultId)
:type run_id: str
:param additional_metadata: Additional data to pass to server
:type additional_metadata: object
Expand Down Expand Up @@ -1060,10 +1066,16 @@ def upload_artifact_with_http_info(
Field(description="file to upload"),
],
result_id: Annotated[
UUID | None, Field(description="ID of result to attach artifact to")
UUID | None,
Field(
description="ID of result to attach artifact to (mutually exclusive with runId)"
),
] = None,
run_id: Annotated[
UUID | None, Field(description="ID of run to attach artifact to")
UUID | None,
Field(
description="ID of run to attach artifact to (mutually exclusive with resultId)"
),
] = None,
additional_metadata: Annotated[
dict[str, Any] | None, Field(description="Additional data to pass to server")
Expand All @@ -1083,9 +1095,9 @@ def upload_artifact_with_http_info(
:type filename: str
:param file: file to upload (required)
:type file: bytearray
:param result_id: ID of result to attach artifact to
:param result_id: ID of result to attach artifact to (mutually exclusive with runId)
:type result_id: str
:param run_id: ID of run to attach artifact to
:param run_id: ID of run to attach artifact to (mutually exclusive with resultId)
:type run_id: str
:param additional_metadata: Additional data to pass to server
:type additional_metadata: object
Expand Down Expand Up @@ -1143,10 +1155,16 @@ def upload_artifact_without_preload_content(
Field(description="file to upload"),
],
result_id: Annotated[
UUID | None, Field(description="ID of result to attach artifact to")
UUID | None,
Field(
description="ID of result to attach artifact to (mutually exclusive with runId)"
),
] = None,
run_id: Annotated[
UUID | None, Field(description="ID of run to attach artifact to")
UUID | None,
Field(
description="ID of run to attach artifact to (mutually exclusive with resultId)"
),
] = None,
additional_metadata: Annotated[
dict[str, Any] | None, Field(description="Additional data to pass to server")
Expand All @@ -1166,9 +1184,9 @@ def upload_artifact_without_preload_content(
:type filename: str
:param file: file to upload (required)
:type file: bytearray
:param result_id: ID of result to attach artifact to
:param result_id: ID of result to attach artifact to (mutually exclusive with runId)
:type result_id: str
:param run_id: ID of run to attach artifact to
:param run_id: ID of run to attach artifact to (mutually exclusive with resultId)
:type run_id: str
:param additional_metadata: Additional data to pass to server
:type additional_metadata: object
Expand Down
2 changes: 1 addition & 1 deletion ibutsu_client/api/dashboard_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

A system to store and query test results

The version of the OpenAPI document: 2.8.1
The version of the OpenAPI document: 2.8.3
Generated by OpenAPI Generator (https://openapi-generator.tech)

Do not edit the class manually.
Expand Down
2 changes: 1 addition & 1 deletion ibutsu_client/api/group_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

A system to store and query test results

The version of the OpenAPI document: 2.8.1
The version of the OpenAPI document: 2.8.3
Generated by OpenAPI Generator (https://openapi-generator.tech)

Do not edit the class manually.
Expand Down
2 changes: 1 addition & 1 deletion ibutsu_client/api/health_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

A system to store and query test results

The version of the OpenAPI document: 2.8.1
The version of the OpenAPI document: 2.8.3
Generated by OpenAPI Generator (https://openapi-generator.tech)

Do not edit the class manually.
Expand Down
2 changes: 1 addition & 1 deletion ibutsu_client/api/import_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

A system to store and query test results

The version of the OpenAPI document: 2.8.1
The version of the OpenAPI document: 2.8.3
Generated by OpenAPI Generator (https://openapi-generator.tech)

Do not edit the class manually.
Expand Down
2 changes: 1 addition & 1 deletion ibutsu_client/api/login_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

A system to store and query test results

The version of the OpenAPI document: 2.8.1
The version of the OpenAPI document: 2.8.3
Generated by OpenAPI Generator (https://openapi-generator.tech)

Do not edit the class manually.
Expand Down
2 changes: 1 addition & 1 deletion ibutsu_client/api/project_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

A system to store and query test results

The version of the OpenAPI document: 2.8.1
The version of the OpenAPI document: 2.8.3
Generated by OpenAPI Generator (https://openapi-generator.tech)

Do not edit the class manually.
Expand Down
2 changes: 1 addition & 1 deletion ibutsu_client/api/result_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

A system to store and query test results

The version of the OpenAPI document: 2.8.1
The version of the OpenAPI document: 2.8.3
Generated by OpenAPI Generator (https://openapi-generator.tech)

Do not edit the class manually.
Expand Down
2 changes: 1 addition & 1 deletion ibutsu_client/api/run_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

A system to store and query test results

The version of the OpenAPI document: 2.8.1
The version of the OpenAPI document: 2.8.3
Generated by OpenAPI Generator (https://openapi-generator.tech)

Do not edit the class manually.
Expand Down
2 changes: 1 addition & 1 deletion ibutsu_client/api/task_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

A system to store and query test results

The version of the OpenAPI document: 2.8.1
The version of the OpenAPI document: 2.8.3
Generated by OpenAPI Generator (https://openapi-generator.tech)

Do not edit the class manually.
Expand Down
2 changes: 1 addition & 1 deletion ibutsu_client/api/user_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

A system to store and query test results

The version of the OpenAPI document: 2.8.1
The version of the OpenAPI document: 2.8.3
Generated by OpenAPI Generator (https://openapi-generator.tech)

Do not edit the class manually.
Expand Down
2 changes: 1 addition & 1 deletion ibutsu_client/api/widget_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

A system to store and query test results

The version of the OpenAPI document: 2.8.1
The version of the OpenAPI document: 2.8.3
Generated by OpenAPI Generator (https://openapi-generator.tech)

Do not edit the class manually.
Expand Down
2 changes: 1 addition & 1 deletion ibutsu_client/api/widget_config_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

A system to store and query test results

The version of the OpenAPI document: 2.8.1
The version of the OpenAPI document: 2.8.3
Generated by OpenAPI Generator (https://openapi-generator.tech)

Do not edit the class manually.
Expand Down
4 changes: 2 additions & 2 deletions ibutsu_client/api_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

A system to store and query test results

The version of the OpenAPI document: 2.8.1
The version of the OpenAPI document: 2.8.3
Generated by OpenAPI Generator (https://openapi-generator.tech)

Do not edit the class manually.
Expand Down Expand Up @@ -80,7 +80,7 @@ def __init__(
self.default_headers[header_name] = header_value
self.cookie = cookie
# Set default User-Agent.
self.user_agent = "OpenAPI-Generator/3.1.0/python"
self.user_agent = "OpenAPI-Generator/3.1.1/python"
self.client_side_validation = configuration.client_side_validation

def __enter__(self):
Expand Down
6 changes: 3 additions & 3 deletions ibutsu_client/configuration.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

A system to store and query test results

The version of the OpenAPI document: 2.8.1
The version of the OpenAPI document: 2.8.3
Generated by OpenAPI Generator (https://openapi-generator.tech)

Do not edit the class manually.
Expand Down Expand Up @@ -505,8 +505,8 @@ def to_debug_report(self) -> str:
"Python SDK Debug Report:\n"
f"OS: {sys.platform}\n"
f"Python Version: {sys.version}\n"
"Version of the API: 2.8.1\n"
"SDK Package Version: 3.1.0"
"Version of the API: 2.8.3\n"
"SDK Package Version: 3.1.1"
)

def get_host_settings(self) -> list[HostSetting]:
Expand Down
2 changes: 1 addition & 1 deletion ibutsu_client/exceptions.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

A system to store and query test results

The version of the OpenAPI document: 2.8.1
The version of the OpenAPI document: 2.8.3
Generated by OpenAPI Generator (https://openapi-generator.tech)

Do not edit the class manually.
Expand Down
2 changes: 1 addition & 1 deletion ibutsu_client/models/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

A system to store and query test results

The version of the OpenAPI document: 2.8.1
The version of the OpenAPI document: 2.8.3
Generated by OpenAPI Generator (https://openapi-generator.tech)

Do not edit the class manually.
Expand Down
2 changes: 1 addition & 1 deletion ibutsu_client/models/account_recovery.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

A system to store and query test results

The version of the OpenAPI document: 2.8.1
The version of the OpenAPI document: 2.8.3
Generated by OpenAPI Generator (https://openapi-generator.tech)

Do not edit the class manually.
Expand Down
2 changes: 1 addition & 1 deletion ibutsu_client/models/account_registration.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

A system to store and query test results

The version of the OpenAPI document: 2.8.1
The version of the OpenAPI document: 2.8.3
Generated by OpenAPI Generator (https://openapi-generator.tech)

Do not edit the class manually.
Expand Down
2 changes: 1 addition & 1 deletion ibutsu_client/models/account_reset.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

A system to store and query test results

The version of the OpenAPI document: 2.8.1
The version of the OpenAPI document: 2.8.3
Generated by OpenAPI Generator (https://openapi-generator.tech)

Do not edit the class manually.
Expand Down
2 changes: 1 addition & 1 deletion ibutsu_client/models/artifact.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

A system to store and query test results

The version of the OpenAPI document: 2.8.1
The version of the OpenAPI document: 2.8.3
Generated by OpenAPI Generator (https://openapi-generator.tech)

Do not edit the class manually.
Expand Down
Loading
Loading