Skip to content

Commit 17bb003

Browse files
-e Update API Client
#### What's Changed --- ##### `GET` /policies/event_matcher/{policy_uuid}/ ###### Return Type: Changed response : **200 OK** * Changed content type : `application/json` * Changed property `app` (string) > Match events created by selected application. When left empty, all applications are matched. Added enum value: * `authentik.commands` ##### `PUT` /policies/event_matcher/{policy_uuid}/ ###### Request: Changed content type : `application/json` * Changed property `app` (string) > Match events created by selected application. When left empty, all applications are matched. Added enum value: * `authentik.commands` ###### Return Type: Changed response : **200 OK** * Changed content type : `application/json` * Changed property `app` (string) > Match events created by selected application. When left empty, all applications are matched. Added enum value: * `authentik.commands` ##### `PATCH` /policies/event_matcher/{policy_uuid}/ ###### Request: Changed content type : `application/json` * Changed property `app` (string) > Match events created by selected application. When left empty, all applications are matched. Added enum value: * `authentik.commands` ###### Return Type: Changed response : **200 OK** * Changed content type : `application/json` * Changed property `app` (string) > Match events created by selected application. When left empty, all applications are matched. Added enum value: * `authentik.commands` ##### `GET` /tasks/schedules/{id}/ ###### Return Type: Changed response : **200 OK** * Changed content type : `application/json` * Changed property `last_task_status` (string) Added enum values: * `preprocess` * `running` * `postprocess` ##### `PUT` /tasks/schedules/{id}/ ###### Return Type: Changed response : **200 OK** * Changed content type : `application/json` * Changed property `last_task_status` (string) Added enum values: * `preprocess` * `running` * `postprocess` ##### `PATCH` /tasks/schedules/{id}/ ###### Return Type: Changed response : **200 OK** * Changed content type : `application/json` * Changed property `last_task_status` (string) Added enum values: * `preprocess` * `running` * `postprocess` ##### `POST` /policies/event_matcher/ ###### Request: Changed content type : `application/json` * Changed property `app` (string) > Match events created by selected application. When left empty, all applications are matched. Added enum value: * `authentik.commands` ###### Return Type: Changed response : **201 Created** * Changed content type : `application/json` * Changed property `app` (string) > Match events created by selected application. When left empty, all applications are matched. Added enum value: * `authentik.commands` ##### `GET` /policies/event_matcher/ ###### Return Type: Changed response : **200 OK** * Changed content type : `application/json` * Changed property `results` (array) Changed items (object): > Event Matcher Policy Serializer * Changed property `app` (string) > Match events created by selected application. When left empty, all applications are matched. Added enum value: * `authentik.commands` ##### `GET` /providers/google_workspace/{id}/sync/status/ ###### Return Type: Changed response : **200 OK** * Changed content type : `application/json` * Changed property `last_sync_status` (string) Added enum values: * `preprocess` * `running` * `postprocess` ##### `GET` /providers/microsoft_entra/{id}/sync/status/ ###### Return Type: Changed response : **200 OK** * Changed content type : `application/json` * Changed property `last_sync_status` (string) Added enum values: * `preprocess` * `running` * `postprocess` ##### `GET` /providers/scim/{id}/sync/status/ ###### Return Type: Changed response : **200 OK** * Changed content type : `application/json` * Changed property `last_sync_status` (string) Added enum values: * `preprocess` * `running` * `postprocess` ##### `GET` /sources/kerberos/{slug}/sync/status/ ###### Return Type: Changed response : **200 OK** * Changed content type : `application/json` * Changed property `last_sync_status` (string) Added enum values: * `preprocess` * `running` * `postprocess` ##### `GET` /sources/ldap/{slug}/sync/status/ ###### Return Type: Changed response : **200 OK** * Changed content type : `application/json` * Changed property `last_sync_status` (string) Added enum values: * `preprocess` * `running` * `postprocess` ##### `GET` /tasks/schedules/ ###### Return Type: Changed response : **200 OK** * Changed content type : `application/json` * Changed property `results` (array) Changed items (object): * Changed property `last_task_status` (string) Added enum values: * `preprocess` * `running` * `postprocess` ##### `GET` /tasks/tasks/{message_id}/ ###### Return Type: Changed response : **200 OK** * Changed content type : `application/json` * Changed property `state` (string) > Task status Added enum values: * `preprocess` * `running` * `postprocess` * Changed property `aggregated_status` (string) Added enum values: * `preprocess` * `running` * `postprocess` ##### `GET` /tasks/tasks/ ###### Parameters: Changed: `aggregated_status` in `query` Changed: `state` in `query` > Task status ###### Return Type: Changed response : **200 OK** * Changed content type : `application/json` * Changed property `results` (array) Changed items (object): * Changed property `state` (string) > Task status Added enum values: * `preprocess` * `running` * `postprocess` * Changed property `aggregated_status` (string) Added enum values: * `preprocess` * `running` * `postprocess`
1 parent 2d32341 commit 17bb003

18 files changed

+55
-9
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ This repo contains a generated API client to talk with authentik's API from Pyth
1616
This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
1717

1818
- API version: 2025.10.0-rc1
19-
- Package version: 2025.10.0-rc1-1759331314
19+
- Package version: 2025.10.0-rc1-1759847168
2020
- Generator version: 7.15.0
2121
- Build package: org.openapitools.codegen.languages.PythonClientCodegen
2222

authentik_client/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
""" # noqa: E501
1616

1717

18-
__version__ = "2025.10.0-rc1-1759331314"
18+
__version__ = "2025.10.0-rc1-1759847168"
1919

2020
# Define package exports
2121
__all__ = [

authentik_client/api_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ def __init__(
9292
self.default_headers[header_name] = header_value
9393
self.cookie = cookie
9494
# Set default User-Agent.
95-
self.user_agent = 'OpenAPI-Generator/2025.10.0-rc1-1759331314/python'
95+
self.user_agent = 'OpenAPI-Generator/2025.10.0-rc1-1759847168/python'
9696
self.client_side_validation = configuration.client_side_validation
9797

9898
def __enter__(self):

authentik_client/configuration.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -511,7 +511,7 @@ def to_debug_report(self) -> str:
511511
"OS: {env}\n"\
512512
"Python Version: {pyversion}\n"\
513513
"Version of the API: 2025.10.0-rc1\n"\
514-
"SDK Package Version: 2025.10.0-rc1-1759331314".\
514+
"SDK Package Version: 2025.10.0-rc1-1759847168".\
515515
format(env=sys.platform, pyversion=sys.version)
516516

517517
def get_host_settings(self) -> List[HostSetting]:

authentik_client/models/app_enum.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ class AppEnum(str, Enum):
2727
"""
2828
allowed enum values
2929
"""
30+
AUTHENTIK_DOT_COMMANDS = 'authentik.commands'
3031
AUTHENTIK_DOT_TENANTS = 'authentik.tenants'
3132
AUTHENTIK_DOT_TASKS = 'authentik.tasks'
3233
AUTHENTIK_DOT_ADMIN = 'authentik.admin'

authentik_client/models/last_task_status_enum.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,9 @@ class LastTaskStatusEnum(str, Enum):
2929
"""
3030
QUEUED = 'queued'
3131
CONSUMED = 'consumed'
32+
PREPROCESS = 'preprocess'
33+
RUNNING = 'running'
34+
POSTPROCESS = 'postprocess'
3235
REJECTED = 'rejected'
3336
DONE = 'done'
3437
INFO = 'info'

authentik_client/models/state_enum.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,9 @@ class StateEnum(str, Enum):
2929
"""
3030
QUEUED = 'queued'
3131
CONSUMED = 'consumed'
32+
PREPROCESS = 'preprocess'
33+
RUNNING = 'running'
34+
POSTPROCESS = 'postprocess'
3235
REJECTED = 'rejected'
3336
DONE = 'done'
3437

authentik_client/models/task_aggregated_status_enum.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,9 @@ class TaskAggregatedStatusEnum(str, Enum):
2929
"""
3030
QUEUED = 'queued'
3131
CONSUMED = 'consumed'
32+
PREPROCESS = 'preprocess'
33+
RUNNING = 'running'
34+
POSTPROCESS = 'postprocess'
3235
REJECTED = 'rejected'
3336
DONE = 'done'
3437
INFO = 'info'

docs/AppEnum.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@
33

44
## Enum
55

6+
* `AUTHENTIK_DOT_COMMANDS` (value: `'authentik.commands'`)
7+
68
* `AUTHENTIK_DOT_TENANTS` (value: `'authentik.tenants'`)
79

810
* `AUTHENTIK_DOT_TASKS` (value: `'authentik.tasks'`)

docs/LastTaskStatusEnum.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@
77

88
* `CONSUMED` (value: `'consumed'`)
99

10+
* `PREPROCESS` (value: `'preprocess'`)
11+
12+
* `RUNNING` (value: `'running'`)
13+
14+
* `POSTPROCESS` (value: `'postprocess'`)
15+
1016
* `REJECTED` (value: `'rejected'`)
1117

1218
* `DONE` (value: `'done'`)

0 commit comments

Comments
 (0)