From 8be7e89e1bebb6b86ab31d1a074eb16b2a9c53ab Mon Sep 17 00:00:00 2001 From: SDK Generator Bot Date: Wed, 3 Jun 2026 07:48:41 +0000 Subject: [PATCH 1/2] Generate ske --- services/ske/oas_commit | 2 +- services/ske/src/stackit/ske/models/cluster_status.py | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/services/ske/oas_commit b/services/ske/oas_commit index 3bdcef578..6ba71f50d 100644 --- a/services/ske/oas_commit +++ b/services/ske/oas_commit @@ -1 +1 @@ -5e44a8a3aa0447f4f0511f53cc4eead9b6e6384e +d2755fb2bda0e2105f920af64d7176d184b2bcb7 diff --git a/services/ske/src/stackit/ske/models/cluster_status.py b/services/ske/src/stackit/ske/models/cluster_status.py index f0029f9fe..f1097c7c8 100644 --- a/services/ske/src/stackit/ske/models/cluster_status.py +++ b/services/ske/src/stackit/ske/models/cluster_status.py @@ -62,6 +62,7 @@ class ClusterStatus(BaseModel): description="The network ranges (in CIDR notation) used by pods of the cluster.", alias="podAddressRanges", ) + service_account_issuer: Optional[StrictStr] = Field(default=None, alias="serviceAccountIssuer") __properties: ClassVar[List[str]] = [ "aggregated", "creationTime", @@ -73,6 +74,7 @@ class ClusterStatus(BaseModel): "hibernated", "identity", "podAddressRanges", + "serviceAccountIssuer", ] @field_validator("creation_time", mode="before") @@ -174,6 +176,7 @@ def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]: "hibernated": obj.get("hibernated"), "identity": obj.get("identity"), "podAddressRanges": obj.get("podAddressRanges"), + "serviceAccountIssuer": obj.get("serviceAccountIssuer"), } ) return _obj From 7005e9b0e1b78b6bf8358edac30b962d26a63a55 Mon Sep 17 00:00:00 2001 From: Manuel Vaas Date: Wed, 3 Jun 2026 11:08:31 +0200 Subject: [PATCH 2/2] add changelog --- CHANGELOG.md | 2 ++ services/ske/CHANGELOG.md | 3 +++ services/ske/pyproject.toml | 2 +- 3 files changed, 6 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index cd0766859..a58b08f60 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -94,6 +94,8 @@ - **Feature:** new models: `DisableLockResponse`, `EnableLockResponse`, `GetLockResponse`, `GetScheduleResponse`, `GetSnapshotPolicyResponse`, `ListSchedulesResponse`, `ListSnapshotPoliciesResponse`, `ResourcePoolSnapshotPolicy`, `Schedule`, `SnapshotPolicy`, `SnapshotPolicySchedule`, `UpdateResourcePoolSnapshotPayload`, `UpdateResourcePoolSnapshotResponse` - **Feature:** new operations: `UpdateResourcePoolSnapshot`, `ListSchedules`, `GetSchedule`, `ListSnapshotPolicies`, `GetSnapshotPolicy`, `DisableLock`, `GetLock`, `EnableLock`, - `ske`: + - [v1.11.0](services/ske/CHANGELOG.md#v1110) + - **Feature:** Add attribute `service_account_issuer` to model `ClusterStatus` - [v1.10.0](services/ske/CHANGELOG.md#v1100) - **Improvement:** Update description of `code` attribute in `ClusterError` - **Feature:** Add attribute `GatewayApi` to model `DNS` diff --git a/services/ske/CHANGELOG.md b/services/ske/CHANGELOG.md index b679dcd99..9439853c3 100644 --- a/services/ske/CHANGELOG.md +++ b/services/ske/CHANGELOG.md @@ -1,3 +1,6 @@ +## v1.11.0 +- **Feature:** Add attribute `service_account_issuer` to model `ClusterStatus` + ## v1.10.0 - **Improvement:** Update description of `code` attribute in `ClusterError` - **Feature:** Add attribute `GatewayApi` to model `DNS` diff --git a/services/ske/pyproject.toml b/services/ske/pyproject.toml index eda509f72..98def802d 100644 --- a/services/ske/pyproject.toml +++ b/services/ske/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "stackit-ske" -version = "v1.10.0" +version = "v1.11.0" description = "SKE-API" authors = [{ name = "STACKIT Developer Tools", email = "developer-tools@stackit.cloud" }] requires-python = ">=3.9,<4.0"