Skip to content

Commit

Permalink
Merge pull request #61 from CiscoISE/develop
Browse files Browse the repository at this point in the history
New version 2.1.2
  • Loading branch information
bvargasre authored Nov 11, 2023
2 parents 85df7a6 + 218384a commit a38f3f7
Show file tree
Hide file tree
Showing 5 changed files with 56 additions and 67 deletions.
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [2.1.2] - 2023-11-10
### Fixed
- Fix configuration import

## [2.1.1] - 2023-11-09
### Fixed
- some imports that caused problems were removed
Expand Down Expand Up @@ -429,4 +433,5 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
[2.0.12]: https://github.com/CiscoISE/ciscoisesdk/compare/v2.0.11...v2.0.12
[2.1.0]: https://github.com/CiscoISE/ciscoisesdk/compare/v2.0.12...v2.1.0
[2.1.1]: https://github.com/CiscoISE/ciscoisesdk/compare/v2.1.0...v2.1.1
[Unreleased]: https://github.com/CiscoISE/ciscoisesdk/compare/v2.1.1...develop
[2.1.2]: https://github.com/CiscoISE/ciscoisesdk/compare/v2.1.1...v2.1.2
[Unreleased]: https://github.com/CiscoISE/ciscoisesdk/compare/v2.1.2...develop
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ The following table shows the supported versions.
* - 3.1_Patch_1
- 2.0.12
* - 3.2_beta
- 2.1.1
- 2.1.2

If your SDK is older please consider updating it first.

Expand Down
30 changes: 1 addition & 29 deletions ciscoisesdk/api/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -1484,9 +1484,6 @@
from .v3_2_beta.endpoint import (
Endpoint as Endpoint_v3_2_beta
)
from .v3_2_beta.nbar_app import (
NbarApp as NbarApp_v3_2_beta
)
from .v3_2_beta.portal import (
Portal as Portal_v3_2_beta
)
Expand All @@ -1496,21 +1493,12 @@
from .v3_2_beta.px_grid_node import (
PxGridNode as PxGridNode_v3_2_beta
)
from .v3_2_beta.sg_vn_mapping import (
SgVnMapping as SgVnMapping_v3_2_beta
)
from .v3_2_beta.tasks import (
Tasks as Tasks_v3_2_beta
)
from .v3_2_beta.telemetry import (
Telemetry as Telemetry_v3_2_beta
)
from .v3_2_beta.virtual_network import (
VirtualNetwork as VirtualNetwork_v3_2_beta
)
from .v3_2_beta.vn_vlan_mapping import (
VnVlanMapping as VnVlanMapping_v3_2_beta
)


class IdentityServicesEngineAPI(object):
Expand Down Expand Up @@ -3420,7 +3408,7 @@ def _initialize_api_wrappers(self):
)
self.configuration = \
Configuration_v3_2_beta(
self._session_main, self.object_factory, self._validator
self._session, self.object_factory, self._validator
)
self.consumer = \
Consumer_v3_2_beta(
Expand Down Expand Up @@ -3830,10 +3818,6 @@ def _initialize_api_wrappers(self):
Endpoint_v3_2_beta(
self._session_ers, self.object_factory, self._validator
)
self.nbar_app = \
NbarApp_v3_2_beta(
self._session_ui, self.object_factory, self._validator
)
self.portal = \
Portal_v3_2_beta(
self._session_ers, self.object_factory, self._validator
Expand All @@ -3846,10 +3830,6 @@ def _initialize_api_wrappers(self):
PxGridNode_v3_2_beta(
self._session_ers, self.object_factory, self._validator
)
self.sg_vn_mapping = \
SgVnMapping_v3_2_beta(
self._session_ui, self.object_factory, self._validator
)
self.tasks = \
Tasks_v3_2_beta(
self._session_ui, self.object_factory, self._validator
Expand All @@ -3858,14 +3838,6 @@ def _initialize_api_wrappers(self):
Telemetry_v3_2_beta(
self._session_ui, self.object_factory, self._validator
)
self.virtual_network = \
VirtualNetwork_v3_2_beta(
self._session_ui, self.object_factory, self._validator
)
self.vn_vlan_mapping = \
VnVlanMapping_v3_2_beta(
self._session_ui, self.object_factory, self._validator
)
self.custom_caller = \
CustomCaller(self._session, self.object_factory)

Expand Down
Loading

0 comments on commit a38f3f7

Please sign in to comment.