Skip to content

Commit 406d44c

Browse files
-e Update API Client
#### What's Changed --- ##### `GET` /root/config/ ###### Return Type: Changed response : **200 OK** * Changed content type : `application/json` New optional properties: - `cache_timeout_reputation` * Deleted property `cache_timeout_reputation` (integer)
1 parent 8225102 commit 406d44c

File tree

10 files changed

+9
-17
lines changed

10 files changed

+9
-17
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-1760107121
19+
- Package version: 2025.10.0-rc1-1760140185
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-1760107121"
18+
__version__ = "2025.10.0-rc1-1760140185"
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-1760107121/python'
95+
self.user_agent = 'OpenAPI-Generator/2025.10.0-rc1-1760140185/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-1760107121".\
514+
"SDK Package Version: 2025.10.0-rc1-1760140185".\
515515
format(env=sys.platform, pyversion=sys.version)
516516

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

authentik_client/models/config.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,7 @@ class Config(BaseModel):
3434
cache_timeout: StrictInt
3535
cache_timeout_flows: StrictInt
3636
cache_timeout_policies: StrictInt
37-
cache_timeout_reputation: StrictInt
38-
__properties: ClassVar[List[str]] = ["error_reporting", "capabilities", "cache_timeout", "cache_timeout_flows", "cache_timeout_policies", "cache_timeout_reputation"]
37+
__properties: ClassVar[List[str]] = ["error_reporting", "capabilities", "cache_timeout", "cache_timeout_flows", "cache_timeout_policies"]
3938

4039
model_config = ConfigDict(
4140
populate_by_name=True,
@@ -95,8 +94,7 @@ def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]:
9594
"capabilities": obj.get("capabilities"),
9695
"cache_timeout": obj.get("cache_timeout"),
9796
"cache_timeout_flows": obj.get("cache_timeout_flows"),
98-
"cache_timeout_policies": obj.get("cache_timeout_policies"),
99-
"cache_timeout_reputation": obj.get("cache_timeout_reputation")
97+
"cache_timeout_policies": obj.get("cache_timeout_policies")
10098
})
10199
return _obj
102100

docs/Config.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ Name | Type | Description | Notes
1111
**cache_timeout** | **int** | |
1212
**cache_timeout_flows** | **int** | |
1313
**cache_timeout_policies** | **int** | |
14-
**cache_timeout_reputation** | **int** | |
1514

1615
## Example
1716

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "authentik_client"
3-
version = "2025.10.0-rc1-1760107121"
3+
version = "2025.10.0-rc1-1760140185"
44
description = "authentik"
55
authors = [
66
{name = "authentik Team",email = "hello@goauthentik.io"},

schema.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33416,13 +33416,10 @@ components:
3341633416
type: integer
3341733417
cache_timeout_policies:
3341833418
type: integer
33419-
cache_timeout_reputation:
33420-
type: integer
3342133419
required:
3342233420
- cache_timeout
3342333421
- cache_timeout_flows
3342433422
- cache_timeout_policies
33425-
- cache_timeout_reputation
3342633423
- capabilities
3342733424
- error_reporting
3342833425
ConnectionToken:

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
# prerequisite: setuptools
2323
# http://pypi.python.org/pypi/setuptools
2424
NAME = "authentik-client"
25-
VERSION = "2025.10.0-rc1-1760107121"
25+
VERSION = "2025.10.0-rc1-1760140185"
2626
PYTHON_REQUIRES = ">= 3.9"
2727
REQUIRES = [
2828
"urllib3 >= 2.1.0, < 3.0.0",

test/test_config.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,7 @@ def make_instance(self, include_optional) -> Config:
4747
],
4848
cache_timeout = 56,
4949
cache_timeout_flows = 56,
50-
cache_timeout_policies = 56,
51-
cache_timeout_reputation = 56
50+
cache_timeout_policies = 56
5251
)
5352
else:
5453
return Config(
@@ -64,7 +63,6 @@ def make_instance(self, include_optional) -> Config:
6463
cache_timeout = 56,
6564
cache_timeout_flows = 56,
6665
cache_timeout_policies = 56,
67-
cache_timeout_reputation = 56,
6866
)
6967
"""
7068

0 commit comments

Comments
 (0)