Skip to content

Commit 57374e1

Browse files
authored
dev: fix dig voice card (#69)
* fix cableLength enum for digital voicecard * release-0.40.2dev5
1 parent a95ea65 commit 57374e1

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

ENDPOINTS.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
**THIS FILE WAS AUTO-GENERATED DO NOT EDIT**
22

3-
Generated for: catalystwan-0.40.2.dev4
3+
Generated for: catalystwan-0.40.2.dev5
44

55
All URIs are relative to */dataservice*
66
HTTP request | Supported Versions | Method | Payload Type | Return Type | Tenancy Mode

catalystwan/models/configuration/feature_profile/sdwan/uc_voice/digital_interface.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,14 +65,14 @@ class Interface(BaseModel):
6565
]
6666

6767

68-
Value = Literal[
68+
ShortCableLengthValue = Literal[
6969
"-15",
7070
"-22.5",
7171
"-7.5",
7272
"0",
7373
]
7474

75-
CableLengthValue = Literal[
75+
LongCableLengthValue = Literal[
7676
"0",
7777
"110",
7878
"220",
@@ -82,6 +82,8 @@ class Interface(BaseModel):
8282
"660",
8383
]
8484

85+
CableLengthValue = Literal[ShortCableLengthValue, LongCableLengthValue]
86+
8587

8688
LineTermination = Literal[
8789
"120-ohm",

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "catalystwan"
3-
version = "0.40.2dev4"
3+
version = "0.40.2dev5"
44
description = "Cisco Catalyst WAN SDK for Python"
55
authors = ["kagorski <kagorski@cisco.com>"]
66
readme = "README.md"

0 commit comments

Comments
 (0)