Skip to content

Commit a23c014

Browse files
Generator: Update SDK /services/iaas (#3598)
Co-authored-by: Marcel Jacek <Marcel.Jacek@digits.schwarz>
1 parent 3d0e6a5 commit a23c014

File tree

5 files changed

+10
-3
lines changed

5 files changed

+10
-3
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## Release (2026-MM-DD)
2+
- `iaas`: [v1.2.2](services/iaas/CHANGELOG.md#v122)
3+
- **Docs:** Extend description of `PortRange` class
4+
15
## Release (2026-03-27)
26

37
- `auditlog`: [v0.1.2](services/auditlog/CHANGELOG.md#v012)

services/iaas/CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
## v1.2.2
2+
- **Docs:** Extend description of `PortRange` class
3+
14
## v1.2.1
25
- **Feature:** client now supports UUID and decimal types
36
- **Bugfix:** timeouts now passed to requests library

services/iaas/oas_commit

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0e64886dd0847341800d7191ed193b75413be998
1+
467fe4d305e48699c34835e45fd1c7b486be01d2

services/iaas/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-iaas"
3-
version = "v1.2.1"
3+
version = "v1.2.2"
44
description = "IaaS-API"
55
authors = [{ name = "STACKIT Developer Tools", email = "developer-tools@stackit.cloud" }]
66
requires-python = ">=3.9,<4.0"

services/iaas/src/stackit/iaas/models/port_range.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424

2525
class PortRange(BaseModel):
2626
"""
27-
Object that represents a range of ports.
27+
Object that represents a range of ports (this will be omitted if it covers the full default range 0/1-65535).
2828
""" # noqa: E501
2929

3030
max: Annotated[int, Field(le=65535, strict=True, ge=0)] = Field(

0 commit comments

Comments
 (0)