Skip to content

Commit 065ad15

Browse files
Merge pull request #197 from cisco-en-programmability/develop
Error correction in the user_and_roles module
2 parents 29d34e8 + 2a5ac98 commit 065ad15

File tree

6 files changed

+81
-66
lines changed

6 files changed

+81
-66
lines changed

CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
## [2.8.7] - 2025-03-05
10+
### Fix
11+
- Error correction in the user_and_roles module
12+
913
## [2.8.6] - 2025-02-27
1014
### Added
1115
- Add support of DNA Center versions ('2.3.7.7')
1216

1317
## [2.8.5] - 2025-02-21
14-
1518
### Fix
1619
- correction in the request validation structures. In the deploy_template functions in version 1 and 2. In 2.3.5.3, 2.3.7.6 and 2.3.7.9.
1720

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ The following table shows the supported versions.
162162
* - 2.3.7.7
163163
- 2.8.6
164164
* - 2.3.7.9
165-
- 2.8.6
165+
- 2.8.7
166166

167167

168168

dnacentersdk/api/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1623,7 +1623,7 @@ def get_access_token():
16231623
Topology_v2_3_7_9(
16241624
self._session, object_factory, _validator
16251625
)
1626-
self.userand_roles = \
1626+
self.user_and_roles = \
16271627
UserandRoles_v2_3_7_9(
16281628
self._session, object_factory, _validator
16291629
)

dnacentersdk/api/v2_3_7_9/user_and_roles.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -358,7 +358,7 @@ def get_roles_api_v1(self,
358358
MalformedRequest: If the request body created is invalid.
359359
ApiError: If the Catalyst Center cloud returns an error.
360360
Documentation Link:
361-
https://developer.cisco.com/docs/dna-center/#!get-roles-a-p-i
361+
https://developer.cisco.com/docs/dna-center/#!get-roles-api
362362
"""
363363
check_type(headers, dict)
364364
if headers is not None:

0 commit comments

Comments
 (0)