Skip to content

Commit

Permalink
Merge pull request #89 from cisco-en-programmability/develop
Browse files Browse the repository at this point in the history
Develop v2.6.1
  • Loading branch information
fmunozmiranda authored Apr 12, 2023
2 parents e12b9ce + 67e6653 commit 617e686
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 45 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,11 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]
## [2.6.1] - 2023-04-12
### Changed
- Remove some families bug in 2.3.3.0
- Correct families names in 2.3.5.3
- Removing duplicate params

## [2.6.0] - 2023-04-12
### Added
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ The following table shows the supported versions.
* - 2.3.3.0
- 2.5.6
* - 2.3.5.3
- 2.6.0
- 2.6.1


If your SDK is older please consider updating it first.
Expand Down
40 changes: 3 additions & 37 deletions dnacentersdk/api/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -482,8 +482,6 @@
ApplicationPolicy as ApplicationPolicy_v2_3_3_0
from .v2_3_3_0.applications import \
Applications as Applications_v2_3_3_0
from .v2_3_3_0.authentication_management import \
AuthenticationManagement as AuthenticationManagement_v2_3_3_0
from .v2_3_3_0.cisco_dna_center_system import \
CiscoDnaCenterSystem as CiscoDnaCenterSystem_v2_3_3_0
from .v2_3_3_0.clients import \
Expand All @@ -504,8 +502,6 @@
Devices as Devices_v2_3_3_0
from .v2_3_3_0.discovery import \
Discovery as Discovery_v2_3_3_0
from .v2_3_3_0.eo_x import \
EoX as EoX_v2_3_3_0
from .v2_3_3_0.event_management import \
EventManagement as EventManagement_v2_3_3_0
from .v2_3_3_0.fabric_wireless import \
Expand All @@ -516,8 +512,6 @@
HealthAndPerformance as HealthAndPerformance_v2_3_3_0
from .v2_3_3_0.itsm import \
Itsm as Itsm_v2_3_3_0
from .v2_3_3_0.itsm_integration import \
ItsmIntegration as ItsmIntegration_v2_3_3_0
from .v2_3_3_0.issues import \
Issues as Issues_v2_3_3_0
from .v2_3_3_0.lan_automation import \
Expand All @@ -528,8 +522,6 @@
NetworkSettings as NetworkSettings_v2_3_3_0
from .v2_3_3_0.path_trace import \
PathTrace as PathTrace_v2_3_3_0
from .v2_3_3_0.platform import \
Platform as Platform_v2_3_3_0
from .v2_3_3_0.reports import \
Reports as Reports_v2_3_3_0
from .v2_3_3_0.sda import \
Expand All @@ -552,8 +544,6 @@
Task as Task_v2_3_3_0
from .v2_3_3_0.topology import \
Topology as Topology_v2_3_3_0
from .v2_3_3_0.userand_roles import \
UserandRoles as UserandRoles_v2_3_3_0
from .v2_3_3_0.users import \
Users as Users_v2_3_3_0
from .v2_3_3_0.wireless import \
Expand Down Expand Up @@ -584,7 +574,7 @@
Devices as Devices_v2_3_5_3
from .v2_3_5_3.discovery import \
Discovery as Discovery_v2_3_5_3
from .v2_3_5_3.eo_x import \
from .v2_3_5_3.eox import \
EoX as EoX_v2_3_5_3
from .v2_3_5_3.event_management import \
EventManagement as EventManagement_v2_3_5_3
Expand Down Expand Up @@ -632,7 +622,7 @@
Task as Task_v2_3_5_3
from .v2_3_5_3.topology import \
Topology as Topology_v2_3_5_3
from .v2_3_5_3.userand_roles import \
from .v2_3_5_3.user_and_roles import \
UserandRoles as UserandRoles_v2_3_5_3
from .v2_3_5_3.users import \
Users as Users_v2_3_5_3
Expand Down Expand Up @@ -1719,10 +1709,6 @@ def get_access_token():
Applications_v2_3_3_0(
self._session, object_factory, _validator
)
self.authentication_management = \
AuthenticationManagement_v2_3_3_0(
self._session, object_factory, _validator
)
self.cisco_dna_center_system = \
CiscoDnaCenterSystem_v2_3_3_0(
self._session, object_factory, _validator
Expand Down Expand Up @@ -1763,10 +1749,6 @@ def get_access_token():
Discovery_v2_3_3_0(
self._session, object_factory, _validator
)
self.eo_x = \
EoX_v2_3_3_0(
self._session, object_factory, _validator
)
self.event_management = \
EventManagement_v2_3_3_0(
self._session, object_factory, _validator
Expand All @@ -1787,14 +1769,6 @@ def get_access_token():
Itsm_v2_3_3_0(
self._session, object_factory, _validator
)
self.itsm_integration = \
ItsmIntegration_v2_3_3_0(
self._session, object_factory, _validator
)
self.issues = \
Issues_v2_3_3_0(
self._session, object_factory, _validator
)
self.lan_automation = \
LanAutomation_v2_3_3_0(
self._session, object_factory, _validator
Expand All @@ -1811,10 +1785,6 @@ def get_access_token():
PathTrace_v2_3_3_0(
self._session, object_factory, _validator
)
self.platform = \
Platform_v2_3_3_0(
self._session, object_factory, _validator
)
self.reports = \
Reports_v2_3_3_0(
self._session, object_factory, _validator
Expand Down Expand Up @@ -1859,10 +1829,6 @@ def get_access_token():
Topology_v2_3_3_0(
self._session, object_factory, _validator
)
self.userand_roles = \
UserandRoles_v2_3_3_0(
self._session, object_factory, _validator
)
self.users = \
Users_v2_3_3_0(
self._session, object_factory, _validator
Expand Down Expand Up @@ -1924,7 +1890,7 @@ def get_access_token():
Discovery_v2_3_5_3(
self._session, object_factory, _validator
)
self.eo_x = \
self.eox = \
EoX_v2_3_5_3(
self._session, object_factory, _validator
)
Expand Down
2 changes: 0 additions & 2 deletions dnacentersdk/api/v2_3_5_3/devices.py
Original file line number Diff line number Diff line change
Expand Up @@ -1208,15 +1208,13 @@ def clear_mac_address_table(self,
operation=None,
payload=None,
headers=None,
payload=None,
active_validation=True,
**request_parameters):
"""Clear mac-address on an individual port. In request body, operation needs to be specified as 'ClearMacAddress'.
In the future more possible operations will be added to this API .
Args:
operation(string): Devices's Operation.
payload(object): Devices's Payload.
interface_uuid(basestring): interfaceUuid path parameter. Interface Id .
deployment_mode(basestring): deploymentMode query parameter. Preview/Deploy ['Preview' means the
configuration is not pushed to the device. 'Deploy' makes the configuration pushed to
Expand Down
4 changes: 0 additions & 4 deletions dnacentersdk/api/v2_3_5_3/event_management.py
Original file line number Diff line number Diff line change
Expand Up @@ -2796,15 +2796,13 @@ def create_webhook_destination(self,
trustCert=None,
url=None,
webhookId=None,
headers=None,
payload=None,
active_validation=True,
**request_parameters):
"""Create Webhook Destination .
Args:
description(string): Event Management's Description.
headers(list): Event Management's headers (list of objects).
method(string): Event Management's Method. Available values are 'POST' and 'PUT'.
name(string): Event Management's Name.
trustCert(boolean): Event Management's Trust Cert.
Expand Down Expand Up @@ -2896,15 +2894,13 @@ def update_webhook_destination(self,
trustCert=None,
url=None,
webhookId=None,
headers=None,
payload=None,
active_validation=True,
**request_parameters):
"""Update Webhook Destination .
Args:
description(string): Event Management's Description.
headers(list): Event Management's headers (list of objects).
method(string): Event Management's Method. Available values are 'POST' and 'PUT'.
name(string): Event Management's Name.
trustCert(boolean): Event Management's Trust Cert.
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "dnacentersdk"
version = "2.6.0"
version = "2.6.1"
description = "Cisco DNA Center Platform SDK"
authors = ["Jose Bogarin Solano <jbogarin@altus.cr>", "William Astorga <wastorga@altus.cr>", "Francisco Muñoz <fmunoz@altus.cr>", "Francisco Muñoz <fmunoz@altus.cr>", "Bryan Vargas <bvargas@altus.cr>"]
license = "MIT"
Expand Down

0 comments on commit 617e686

Please sign in to comment.