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 #826 from cisco-open/fix/route-policy-fields
Browse files Browse the repository at this point in the history
dev: Fix tablemap - add refiditem
  • Loading branch information
jpkrajewski authored Sep 13, 2024
2 parents e9f8dfd + 66d338c commit 096ad0f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
# Copyright 2024 Cisco Systems, Inc. and its affiliates

from typing import List, Literal, Optional, Union
from uuid import UUID

from pydantic import AliasPath, BaseModel, ConfigDict, Field

Expand Down Expand Up @@ -47,7 +46,7 @@ class EigrpAuthentication(BaseModel):
class TableMap(BaseModel):
model_config = ConfigDict(arbitrary_types_allowed=True, populate_by_name=True, extra="forbid")

name: Optional[Union[Default[None], Global[UUID]]] = Default[None](value=None)
name: Optional[Union[Default[None], RefIdItem]] = Default[None](value=None)
filter: Optional[Union[Global[bool], Variable, Default[bool]]] = Default[bool](value=False)


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.4dev0"
version = "0.35.4dev1"
description = "Cisco Catalyst WAN SDK for Python"
authors = ["kagorski <[email protected]>"]
readme = "README.md"
Expand Down

0 comments on commit 096ad0f

Please sign in to comment.