Skip to content

Commit

Permalink
Merge pull request #146 from cisco-en-programmability/develop
Browse files Browse the repository at this point in the history
Develop v6.10.2
  • Loading branch information
fmunozmiranda authored Jan 25, 2024
2 parents da92c20 + 130e72d commit aab284f
Show file tree
Hide file tree
Showing 9 changed files with 518 additions and 233 deletions.
8 changes: 8 additions & 0 deletions changelogs/changelog.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -770,3 +770,11 @@ releases:
minor_changes:
- Introducing config_verify to verify the state operations in Catalyst Center in network settings and site intent module
- Changes to support inventory and provisioning intent modules
6.10.2:
release_date: "2024-01-24"
changes:
release_summary: Set dnac log level if it is not set in the playbook.
minor_changes:
- Set dnac log level if it is not set in the playbook.
- Handle provisioning of device if it is not in managed state for longer.
- Set the logging levels for device credentails intent module.
2 changes: 1 addition & 1 deletion galaxy.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
namespace: cisco
name: dnac
version: 6.10.1
version: 6.10.2
readme: README.md
authors:
- Rafael Campos <[email protected]>
Expand Down
6 changes: 5 additions & 1 deletion plugins/module_utils/dnac.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,11 @@ def __init__(self, module):
'parsed': self.verify_diff_parsed
}
self.dnac_log = dnac_params.get("dnac_log")
self.dnac_log_level = dnac_params.get("dnac_log_level").upper()

# Check if 'dnac_log_level' in the playbook params. If available,
# convert it to uppercase; otherwise, set it to 'INFO'
self.dnac_log_level = dnac_params.get("dnac_log_level", "INFO").upper()

log(str(dnac_params))
self.supported_states = ["merged", "deleted", "replaced", "overridden", "gathered", "rendered", "parsed"]
self.result = {"changed": False, "diff": [], "response": [], "warnings": []}
Expand Down
115 changes: 75 additions & 40 deletions plugins/modules/device_credential_intent.py

Large diffs are not rendered by default.

Loading

0 comments on commit aab284f

Please sign in to comment.