Skip to content

Commit 59257ec

Browse files
Generator: Update SDK /services/ske (#4693)
Co-authored-by: Manuel Vaas <manuel.vaas@stackit.cloud>
1 parent 9d3e4e8 commit 59257ec

5 files changed

Lines changed: 10 additions & 2 deletions

File tree

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -94,6 +94,8 @@
9494
- **Feature:** new models: `DisableLockResponse`, `EnableLockResponse`, `GetLockResponse`, `GetScheduleResponse`, `GetSnapshotPolicyResponse`, `ListSchedulesResponse`, `ListSnapshotPoliciesResponse`, `ResourcePoolSnapshotPolicy`, `Schedule`, `SnapshotPolicy`, `SnapshotPolicySchedule`, `UpdateResourcePoolSnapshotPayload`, `UpdateResourcePoolSnapshotResponse`
9595
- **Feature:** new operations: `UpdateResourcePoolSnapshot`, `ListSchedules`, `GetSchedule`, `ListSnapshotPolicies`, `GetSnapshotPolicy`, `DisableLock`, `GetLock`, `EnableLock`,
9696
- `ske`:
97+
- [v1.11.0](services/ske/CHANGELOG.md#v1110)
98+
- **Feature:** Add attribute `service_account_issuer` to model `ClusterStatus`
9799
- [v1.10.0](services/ske/CHANGELOG.md#v1100)
98100
- **Improvement:** Update description of `code` attribute in `ClusterError`
99101
- **Feature:** Add attribute `GatewayApi` to model `DNS`

services/ske/CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
## v1.11.0
2+
- **Feature:** Add attribute `service_account_issuer` to model `ClusterStatus`
3+
14
## v1.10.0
25
- **Improvement:** Update description of `code` attribute in `ClusterError`
36
- **Feature:** Add attribute `GatewayApi` to model `DNS`

services/ske/oas_commit

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
5e44a8a3aa0447f4f0511f53cc4eead9b6e6384e
1+
d2755fb2bda0e2105f920af64d7176d184b2bcb7

services/ske/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "stackit-ske"
3-
version = "v1.10.0"
3+
version = "v1.11.0"
44
description = "SKE-API"
55
authors = [{ name = "STACKIT Developer Tools", email = "developer-tools@stackit.cloud" }]
66
requires-python = ">=3.9,<4.0"

services/ske/src/stackit/ske/models/cluster_status.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,7 @@ class ClusterStatus(BaseModel):
6262
description="The network ranges (in CIDR notation) used by pods of the cluster.",
6363
alias="podAddressRanges",
6464
)
65+
service_account_issuer: Optional[StrictStr] = Field(default=None, alias="serviceAccountIssuer")
6566
__properties: ClassVar[List[str]] = [
6667
"aggregated",
6768
"creationTime",
@@ -73,6 +74,7 @@ class ClusterStatus(BaseModel):
7374
"hibernated",
7475
"identity",
7576
"podAddressRanges",
77+
"serviceAccountIssuer",
7678
]
7779

7880
@field_validator("creation_time", mode="before")
@@ -174,6 +176,7 @@ def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]:
174176
"hibernated": obj.get("hibernated"),
175177
"identity": obj.get("identity"),
176178
"podAddressRanges": obj.get("podAddressRanges"),
179+
"serviceAccountIssuer": obj.get("serviceAccountIssuer"),
177180
}
178181
)
179182
return _obj

0 commit comments

Comments
 (0)