Skip to content

Commit a3f946f

Browse files
Merge pull request #207 from cisco-en-programmability/develop
Resolution of issues #206 and #205.
2 parents 5c27afa + f988fab commit a3f946f

File tree

6 files changed

+436
-75
lines changed

6 files changed

+436
-75
lines changed

CHANGELOG.md

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

77
## [Unreleased]
88

9+
## [2.8.11] - 2025-04-03
10+
### Fix
11+
- Resolution of issues #206 and #205.
12+
- sync_devices functionality has been added to devices.
13+
- Adjusted function names to avoid looping.
14+
915
## [2.8.10] - 2025-04-01
1016
### Fix
1117
- This release allows the downloads_a_specific_i_cap_packet_capture_file_v1 function to correctly

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

167167

168168

dnacentersdk/api/v2_3_7_9/device_onboarding_pnp.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -475,7 +475,7 @@ def claim_device_v1(self,
475475

476476
return self._object_factory('bpm_e722e05046d5262b55c125237e9b67d_v2_3_7_9', json_data)
477477

478-
def get_device_count(self,
478+
def get_device_count_v1(self,
479479
last_contact=None,
480480
name=None,
481481
onb_state=None,
@@ -3172,7 +3172,7 @@ def get_device_count(self,
31723172
workflow_name=None,
31733173
headers=None,
31743174
**request_parameters):
3175-
""" This function is an alias of get_device_count .
3175+
""" This function is an alias of get_device_count_v1 .
31763176
Args:
31773177
serial_number(str, list, set, tuple): serialNumber query parameter. Device Serial Number .
31783178
state(str, list, set, tuple): state query parameter. Device State .
@@ -3192,9 +3192,9 @@ def get_device_count(self,
31923192
support for parameters that may be added in the future).
31933193
31943194
Returns:
3195-
This function returns the output of get_device_count .
3195+
This function returns the output of get_device_count_v1 .
31963196
"""
3197-
return self.get_device_count(
3197+
return self.get_device_count_v1(
31983198
last_contact=last_contact,
31993199
name=name,
32003200
onb_state=onb_state,

0 commit comments

Comments
 (0)