File tree Expand file tree Collapse file tree 2 files changed +2
-6
lines changed
catalystwan/models/configuration/feature_profile/sdwan/service/lan Expand file tree Collapse file tree 2 files changed +2
-6
lines changed Original file line number Diff line number Diff line change 55from uuid import UUID
66
77from pydantic import (
8- AliasChoices ,
98 AliasPath ,
109 BaseModel ,
1110 ConfigDict ,
@@ -103,10 +102,7 @@ class VrrpIPv6(BaseModel):
103102class VrrpIPv4 (BaseModel ):
104103 model_config = ConfigDict (arbitrary_types_allowed = True , populate_by_name = True , extra = "forbid" )
105104
106- group_id : Annotated [
107- Union [Variable , Global [int ]],
108- VersionedField (versions = "<=20.12" , serialization_alias = "group_id" ),
109- ] = Field (serialization_alias = "groupId" , validation_alias = AliasChoices ("groupId" , "group_id" ))
105+ group_id : Union [Variable , Global [int ]]
110106 priority : Union [Variable , Global [int ], Default [int ]] = Default [int ](value = 100 )
111107 timer : Union [Variable , Global [int ], Default [int ]] = Default [int ](value = 1000 )
112108 track_omp : Union [Global [bool ], Default [bool ]] = Field (
Original file line number Diff line number Diff line change 11[tool .poetry ]
22name = " catalystwan"
3- version = " 0.40.0dev3 "
3+ version = " 0.40.0dev4 "
44description = " Cisco Catalyst WAN SDK for Python"
55authors = [" kagorski <kagorski@cisco.com>" ]
66readme = " README.md"
You can’t perform that action at this time.
0 commit comments