Skip to content

Commit b2e8910

Browse files
Generator: Update SDK /services/iaas (#1219)
* Generate iaas * Update CHANGELOG.md and pyproject.toml --------- Co-authored-by: Marcel Jacek <[email protected]>
1 parent 6ee4b0b commit b2e8910

File tree

6 files changed

+9
-4
lines changed

6 files changed

+9
-4
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@
33
- **Feature:** New field `Path` for `Rule`
44
- `authorization`: [v0.2.4](services/authorization/CHANGELOG.md#v024-2025-05-13)
55
- **Bugfix:** Updated regex validator
6+
- `iaas`: [v0.5.2](services/iaas/CHANGELOG.md#v052-2025-05-19)
7+
- **Improvement:** Update descriptions
68
- `lbapplication`: [v0.3.2](services/lbapplication/CHANGELOG.md#v032-2025-05-14)
79
- **Deprecated:** `lbapplication` service is deprecated and no longer maintained. Use the `alb` service instead
810
- `resourcemanager` [v0.4.0](services/resourcemanager/CHANGELOG.md#v040-2025-05-14)

services/iaas/CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
## v0.5.2 (2025-05-19)
2+
- **Improvement:** Update descriptions
3+
14
## v0.5.1 (2025-05-09)
25
- **Feature:** Update user-agent header
36

services/iaas/pyproject.toml

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

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

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ class CreateNicPayload(BaseModel):
5050
default=None, description="Object that represents an IP address."
5151
)
5252
ipv6: Optional[Annotated[str, Field(strict=True)]] = Field(
53-
default=None, description="Object that represents an IPv6 address."
53+
default=None, description="String that represents an IPv6 address."
5454
)
5555
labels: Optional[Dict[str, Any]] = Field(
5656
default=None,

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ class NIC(BaseModel):
5050
default=None, description="Object that represents an IP address."
5151
)
5252
ipv6: Optional[Annotated[str, Field(strict=True)]] = Field(
53-
default=None, description="Object that represents an IPv6 address."
53+
default=None, description="String that represents an IPv6 address."
5454
)
5555
labels: Optional[Dict[str, Any]] = Field(
5656
default=None,

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ class ServerNetwork(BaseModel):
3737
default=None, description="Object that represents an IP address."
3838
)
3939
ipv6: Optional[Annotated[str, Field(strict=True)]] = Field(
40-
default=None, description="Object that represents an IPv6 address."
40+
default=None, description="String that represents an IPv6 address."
4141
)
4242
mac: Annotated[str, Field(strict=True)] = Field(description="Object that represents an MAC address.")
4343
network_id: Annotated[str, Field(min_length=36, strict=True, max_length=36)] = Field(

0 commit comments

Comments
 (0)