Skip to content

Commit 0b67b01

Browse files
Generate ske
1 parent 7562d0d commit 0b67b01

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

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)