Skip to content

Generator: Update SDK /services/iaas #1219

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
May 19, 2025
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 @@ -3,6 +3,8 @@
- **Feature:** New field `Path` for `Rule`
- `authorization`: [v0.2.4](services/authorization/CHANGELOG.md#v024-2025-05-13)
- **Bugfix:** Updated regex validator
- `iaas`: [v0.5.2](services/iaas/CHANGELOG.md#v052-2025-05-19)
- **Improvement:** Update descriptions
- `lbapplication`: [v0.3.2](services/lbapplication/CHANGELOG.md#v032-2025-05-14)
- **Deprecated:** `lbapplication` service is deprecated and no longer maintained. Use the `alb` service instead
- `resourcemanager` [v0.4.0](services/resourcemanager/CHANGELOG.md#v040-2025-05-14)
Expand Down
3 changes: 3 additions & 0 deletions services/iaas/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## v0.5.2 (2025-05-19)
- **Improvement:** Update descriptions

## v0.5.1 (2025-05-09)
- **Feature:** Update user-agent header

Expand Down
2 changes: 1 addition & 1 deletion services/iaas/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "stackit-iaas"

[tool.poetry]
name = "stackit-iaas"
version = "v0.5.1"
version = "v0.5.2"
authors = [
"STACKIT Developer Tools <[email protected]>",
]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ class CreateNicPayload(BaseModel):
default=None, description="Object that represents an IP address."
)
ipv6: Optional[Annotated[str, Field(strict=True)]] = Field(
default=None, description="Object that represents an IPv6 address."
default=None, description="String that represents an IPv6 address."
)
labels: Optional[Dict[str, Any]] = Field(
default=None,
Expand Down
2 changes: 1 addition & 1 deletion services/iaas/src/stackit/iaas/models/nic.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ class NIC(BaseModel):
default=None, description="Object that represents an IP address."
)
ipv6: Optional[Annotated[str, Field(strict=True)]] = Field(
default=None, description="Object that represents an IPv6 address."
default=None, description="String that represents an IPv6 address."
)
labels: Optional[Dict[str, Any]] = Field(
default=None,
Expand Down
2 changes: 1 addition & 1 deletion services/iaas/src/stackit/iaas/models/server_network.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ class ServerNetwork(BaseModel):
default=None, description="Object that represents an IP address."
)
ipv6: Optional[Annotated[str, Field(strict=True)]] = Field(
default=None, description="Object that represents an IPv6 address."
default=None, description="String that represents an IPv6 address."
)
mac: Annotated[str, Field(strict=True)] = Field(description="Object that represents an MAC address.")
network_id: Annotated[str, Field(min_length=36, strict=True, max_length=36)] = Field(
Expand Down
Loading