Skip to content
This repository has been archived by the owner on Nov 21, 2024. It is now read-only.

Commit

Permalink
Merge pull request #831 from cisco-open/fix/model-fixes
Browse files Browse the repository at this point in the history
dev: Fix bgp, ethernet
  • Loading branch information
jpkrajewski authored Sep 24, 2024
2 parents 4057b3e + 1bf00f9 commit 536473f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -500,7 +500,7 @@ class RoutingBgpParcel(_ParcelBase):
extra="forbid",
populate_by_name=True,
)
as_num: Union[Global[int], Global[str], Variable] = Field(
as_num: Union[Global[int], Variable] = Field(
validation_alias=AliasPath("data", "asNum"),
description="Set autonomous system number <1..4294967295> or <XX.YY>",
)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@


class Static(BaseModel):
model_config = ConfigDict(populate_by_name=True, extra="forbid")
primary_ip_v6_address: Optional[StaticIPv6Address] = Field(
default=None,
validation_alias="primaryIpV6Address",
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "catalystwan"
version = "0.35.4dev4"
version = "0.35.4dev5"
description = "Cisco Catalyst WAN SDK for Python"
authors = ["kagorski <[email protected]>"]
readme = "README.md"
Expand Down

0 comments on commit 536473f

Please sign in to comment.