Skip to content

Commit fe0e3cf

Browse files
Merge pull request #211 from cisco-en-programmability/develop
function to correctly respond with a binary
2 parents ad9c2cb + 0e54055 commit fe0e3cf

File tree

7 files changed

+324
-270
lines changed

7 files changed

+324
-270
lines changed

CHANGELOG.md

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

77
## [Unreleased]
88

9+
## [2.8.14] - 2025-05-05
10+
### Fix
11+
- This release allows the download_unmaskedraw_device_configuration_as_z_ip_v1 function to correctly
12+
respond with a binary.
13+
914
## [2.8.13] - 2025-04-25
1015
### Fix
1116
- Correction in error handling.

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

167167

168168

dnacentersdk/api/v2_3_7_9/configuration_archive.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -592,10 +592,11 @@ def download_unmaskedraw_device_configuration_as_z_ip_v1(self,
592592
if with_custom_headers:
593593
json_data = self._session.post(endpoint_full_url, params=_params,
594594
json=_payload,
595-
headers=_headers)
595+
headers=_headers,
596+
stream=True)
596597
else:
597598
json_data = self._session.post(endpoint_full_url, params=_params,
598-
json=_payload)
599+
json=_payload, stream=True)
599600

600601
return self._object_factory('bpm_d8fcd6dbb7ff53b58f7398c49b27ded2_v2_3_7_9', json_data)
601602

dnacentersdk/api/v2_3_7_9/wireless.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5510,7 +5510,7 @@ def update_wireless_profile_connectivity_v1(self,
55105510
MalformedRequest: If the request body created is invalid.
55115511
ApiError: If the Catalyst Center cloud returns an error.
55125512
Documentation Link:
5513-
https://developer.cisco.com/docs/dna-center/#!update-wireless-profile-connectivity
5513+
https://developer.cisco.com/docs/dna-center/#!update-wireless-profile
55145514
"""
55155515
check_type(headers, dict)
55165516
check_type(payload, dict)

0 commit comments

Comments
 (0)