Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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`
Expand Down
3 changes: 3 additions & 0 deletions services/ske/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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`
Expand Down
2 changes: 1 addition & 1 deletion services/ske/oas_commit
Original file line number Diff line number Diff line change
@@ -1 +1 @@
5e44a8a3aa0447f4f0511f53cc4eead9b6e6384e
d2755fb2bda0e2105f920af64d7176d184b2bcb7
2 changes: 1 addition & 1 deletion services/ske/pyproject.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
3 changes: 3 additions & 0 deletions services/ske/src/stackit/ske/models/cluster_status.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand All @@ -73,6 +74,7 @@ class ClusterStatus(BaseModel):
"hibernated",
"identity",
"podAddressRanges",
"serviceAccountIssuer",
]

@field_validator("creation_time", mode="before")
Expand Down Expand Up @@ -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
Loading