Skip to content

Commit 0ddab10

Browse files
stackit-pipelinemarceljk
authored andcommitted
Generate iaas
1 parent 6ee4b0b commit 0ddab10

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

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)