Skip to content

Commit c231442

Browse files
Merge pull request #199 from cisco-en-programmability/develop
Modification of the data type in offset and limit. In the get_ap_prof…
2 parents 065ad15 + 933caab commit c231442

File tree

6 files changed

+86
-69
lines changed

6 files changed

+86
-69
lines changed

CHANGELOG.md

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

77
## [Unreleased]
88

9+
## [2.8.8] - 2025-03-10
10+
### Fix
11+
- Modification of the data type in offset and limit. In the get_ap_profiles function of the wireless family.
12+
913
## [2.8.7] - 2025-03-05
1014
### Fix
1115
- Error correction in the user_and_roles module

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.7
165+
- 2.8.8
166166

167167

168168

dnacentersdk/api/v2_3_7_9/task.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1013,7 +1013,7 @@ def get_task_details_by_id_v1(self,
10131013
MalformedRequest: If the request body created is invalid.
10141014
ApiError: If the Catalyst Center cloud returns an error.
10151015
Documentation Link:
1016-
https://developer.cisco.com/docs/dna-center/#!get-task-details-by-i-d
1016+
https://developer.cisco.com/docs/dna-center/#!get-task-details-by-id
10171017
"""
10181018
check_type(headers, dict)
10191019
check_type(id, str,

dnacentersdk/api/v2_3_7_9/wireless.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7549,11 +7549,11 @@ def get_ap_profiles_v1(self,
75497549
MalformedRequest: If the request body created is invalid.
75507550
ApiError: If the Catalyst Center cloud returns an error.
75517551
Documentation Link:
7552-
https://developer.cisco.com/docs/dna-center/#!get-a-p-profiles
7552+
https://developer.cisco.com/docs/dna-center/#!get-ap-profiles
75537553
"""
75547554
check_type(headers, dict)
7555-
check_type(limit, str)
7556-
check_type(offset, str)
7555+
check_type(limit, int)
7556+
check_type(offset, int)
75577557
check_type(ap_profile_name, str)
75587558
if headers is not None:
75597559
if 'X-Auth-Token' in headers:

0 commit comments

Comments
 (0)