Skip to content

Commit 8f71ab5

Browse files
Generator: Update SDK /services/ske (#1259)
* Generate ske * Update CHANGELOG.md and pyproject.toml --------- Co-authored-by: Marcel Jacek <[email protected]> Co-authored-by: Marcel Jacek <[email protected]>
1 parent 67488de commit 8f71ab5

File tree

4 files changed

+13
-1
lines changed

4 files changed

+13
-1
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@
66
- **Feature:** Delete Project labels using the new method `DeleteProjectLabels`
77
- **Feature:** List folders using the new method `ListFolders`
88
- **Feature:** Partial Update Organization using the new method `PartialUpdateOrganization`
9+
- `ske`: [v0.5.0](services/ske/CHANGELOG.md#v050-2025-06-10)
10+
- **Feature:** Add new field `pod_address_ranges` to `ClusterStatus`
911
- `stackitmarketplace`:
1012
- [v1.3.0](services/stackitmarketplace/CHANGELOG.md#v130-2025-06-10)
1113
- **Feature:** Add new field `facets` in `ListCatalogProductsResponse`

services/ske/CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
## v0.5.0 (2025-06-10)
2+
- **Feature:** Add new field `pod_address_ranges` to `ClusterStatus`
3+
14
## v0.4.3 (2025-05-14)
25
- **Feature:** Added enum `SKE_NODE_MACHINE_TYPE_NOT_FOUND` to `ClusterError`
36

services/ske/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "stackit-ske"
33

44
[tool.poetry]
55
name = "stackit-ske"
6-
version = "v0.4.3"
6+
version = "v0.5.0"
77
authors = [
88
"STACKIT Developer Tools <[email protected]>",
99
]

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

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,11 @@ class ClusterStatus(BaseModel):
4545
error: Optional[RuntimeError] = None
4646
errors: Optional[List[ClusterError]] = None
4747
hibernated: Optional[StrictBool] = None
48+
pod_address_ranges: Optional[List[StrictStr]] = Field(
49+
default=None,
50+
description="The network ranges (in CIDR notation) used by pods of the cluster.",
51+
alias="podAddressRanges",
52+
)
4853
__properties: ClassVar[List[str]] = [
4954
"aggregated",
5055
"creationTime",
@@ -53,6 +58,7 @@ class ClusterStatus(BaseModel):
5358
"error",
5459
"errors",
5560
"hibernated",
61+
"podAddressRanges",
5662
]
5763

5864
model_config = ConfigDict(
@@ -135,6 +141,7 @@ def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]:
135141
else None
136142
),
137143
"hibernated": obj.get("hibernated"),
144+
"podAddressRanges": obj.get("podAddressRanges"),
138145
}
139146
)
140147
return _obj

0 commit comments

Comments
 (0)