From 72be51a733f8cd9de537a702d59142c90f7682bc Mon Sep 17 00:00:00 2001 From: SDK Generator Bot Date: Wed, 1 Apr 2026 14:14:11 +0000 Subject: [PATCH] Generate serviceaccount --- services/serviceaccount/oas_commit | 2 +- .../src/stackit/serviceaccount/models/service_account.py | 6 +++++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/services/serviceaccount/oas_commit b/services/serviceaccount/oas_commit index 3423bbfe..32bbf4fb 100644 --- a/services/serviceaccount/oas_commit +++ b/services/serviceaccount/oas_commit @@ -1 +1 @@ -f15f0e449d347f36dde5feac11c328b72d7f10dc +7df21609559f3652a7fee05149a6c1b729428532 diff --git a/services/serviceaccount/src/stackit/serviceaccount/models/service_account.py b/services/serviceaccount/src/stackit/serviceaccount/models/service_account.py index e086e264..53b797a0 100644 --- a/services/serviceaccount/src/stackit/serviceaccount/models/service_account.py +++ b/services/serviceaccount/src/stackit/serviceaccount/models/service_account.py @@ -41,7 +41,10 @@ class ServiceAccount(BaseModel): ) internal: StrictBool = Field(description="Flag indicating internal service accounts") project_id: StrictStr = Field(description="ID of the related project", alias="projectId") - __properties: ClassVar[List[str]] = ["email", "id", "internal", "projectId"] + token_endpoint: StrictStr = Field( + description="Endpoint used to obtain access tokens for the service account", alias="tokenEndpoint" + ) + __properties: ClassVar[List[str]] = ["email", "id", "internal", "projectId", "tokenEndpoint"] model_config = ConfigDict( populate_by_name=True, @@ -97,6 +100,7 @@ def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]: "id": obj.get("id"), "internal": obj.get("internal"), "projectId": obj.get("projectId"), + "tokenEndpoint": obj.get("tokenEndpoint"), } ) return _obj