diff --git a/CHANGELOG.md b/CHANGELOG.md index 17e9c5cc..de13a8ee 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [2.5.3] - 2022-08-09 + +### Fixed +- `virtualNetwork` on `sda.adds_border_device` parameter comes from `array` to `object`. +- Parameters `borderWithExternalConnectivity` and `connectedToInternet` on `sda.adds_border_device` comes from `boolean` to `string`. + ## [2.5.2] - 2022-07-29 ### Fixed @@ -338,4 +344,5 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 [2.5.0]: https://github.com/cisco-en-programmability/dnacentersdk/compare/v2.4.11...v2.5.0 [2.5.1]: https://github.com/cisco-en-programmability/dnacentersdk/compare/v2.5.0...v2.5.1 [2.5.2]: https://github.com/cisco-en-programmability/dnacentersdk/compare/v2.5.1...v2.5.2 -[Unreleased]: https://github.com/cisco-en-programmability/dnacentersdk/compare/v2.5.2...master +[2.5.3]: https://github.com/cisco-en-programmability/dnacentersdk/compare/v2.5.2...v2.5.3 +[Unreleased]: https://github.com/cisco-en-programmability/dnacentersdk/compare/v2.5.3...master diff --git a/dnacentersdk/models/validators/v2_3_3_0/jsd_b6f2d8e46cdd5f05bb06f52cd1b26fb2.py b/dnacentersdk/models/validators/v2_3_3_0/jsd_b6f2d8e46cdd5f05bb06f52cd1b26fb2.py index 92b69c25..28d47b71 100644 --- a/dnacentersdk/models/validators/v2_3_3_0/jsd_b6f2d8e46cdd5f05bb06f52cd1b26fb2.py +++ b/dnacentersdk/models/validators/v2_3_3_0/jsd_b6f2d8e46cdd5f05bb06f52cd1b26fb2.py @@ -50,10 +50,10 @@ def __init__(self): "type": "string" }, "borderWithExternalConnectivity": { - "type": "boolean" + "type": "string" }, "connectedToInternet": { - "type": "boolean" + "type": "string" }, "deviceManagementIpAddress": { "type": "string" @@ -97,7 +97,6 @@ def __init__(self): "items": { "properties": { "virtualNetwork": { - "items": { "properties": { "virtualNetworkName": { "type": "string" @@ -107,8 +106,6 @@ def __init__(self): } }, "type": "object" - }, - "type": "array" } }, "type": "object" diff --git a/pyproject.toml b/pyproject.toml index eb453c11..36a98cfb 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "dnacentersdk" -version = "2.5.2" +version = "2.5.3" description = "Cisco DNA Center Platform SDK" authors = ["Jose Bogarin Solano ", "William Astorga "] license = "MIT"