Skip to content

Commit 0e99cd5

Browse files
get_reserve_ip_subpool_v1 function.
Modification of the get_reserve_ip_subpool_v1 function.
2 parents 3044d91 + dec8089 commit 0e99cd5

File tree

5 files changed

+101
-82
lines changed

5 files changed

+101
-82
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.9.1] - 2025-05-09
10+
### Fix
11+
- Modification of the get_reserve_ip_subpool_v1 function.
12+
913
## [2.9.0] - 2025-05-09
1014
### Added
1115
- Add support of DNA Center versions ('3.1.3.0')

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ The following table shows the supported versions.
158158
* - 2.3.7.9
159159
- 2.8.14
160160
* - 3.1.3.0
161-
- 2.9.0
161+
- 2.9.1
162162

163163

164164

dnacentersdk/api/v2_3_7_9/network_settings.py

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2083,7 +2083,7 @@ def get_reserve_ip_subpool_v1(self,
20832083
MalformedRequest: If the request body created is invalid.
20842084
ApiError: If the Catalyst Center cloud returns an error.
20852085
Documentation Link:
2086-
https://developer.cisco.com/docs/dna-center/#!get-reserve-i-p-subpool
2086+
https://developer.cisco.com/docs/dna-center/#!get-reserve-ip-subpool
20872087
"""
20882088
check_type(headers, dict)
20892089
check_type(site_id, str)
@@ -2097,6 +2097,9 @@ def get_reserve_ip_subpool_v1(self,
20972097
check_type(headers.get('X-Auth-Token'),
20982098
str, may_be_none=False)
20992099

2100+
if ignore_inherited_groups != None:
2101+
ignore_inherited_groups = str(ignore_inherited_groups).lower()
2102+
21002103
_params = {
21012104
'siteId':
21022105
site_id,
@@ -2424,7 +2427,7 @@ def update_reserve_ip_subpool_v1(self,
24242427
MalformedRequest: If the request body created is invalid.
24252428
ApiError: If the Catalyst Center cloud returns an error.
24262429
Documentation Link:
2427-
https://developer.cisco.com/docs/dna-center/#!update-reserve-i-p-subpool
2430+
https://developer.cisco.com/docs/dna-center/#!update-reserve-ip-subpool
24282431
"""
24292432
check_type(headers, dict)
24302433
check_type(payload, dict)

0 commit comments

Comments
 (0)