Skip to content

Commit

Permalink
Merge pull request #122 from MUTHU-RAKESH-27/main
Browse files Browse the repository at this point in the history
Added dnac_log_level and the config_verify in the documentation and elem_spec
  • Loading branch information
madhansansel authored Jan 30, 2024
2 parents 509fb77 + 621a8a0 commit 3feaf45
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions plugins/modules/provision_intent.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,16 @@
- cisco.dnac.intent_params
author: Abinash Mishra (@abimishr)
options:
dnac_log_level:
description:
- Specifies the desired log level for Cisco Catalyst Center logging.
Options - [CRITICAL, ERROR, WARNING, INFO, DEBUG]
type: str
default: WARNING
config_verify:
description: Set to True to verify the Cisco Catalyst Center config after applying the playbook config.
type: bool
default: False
state:
description: The state of DNAC after module completion.
type: str
Expand Down Expand Up @@ -582,6 +592,8 @@ def main():
'dnac_version': {'type': 'str', 'default': '2.2.3.3'},
'dnac_debug': {'type': 'bool', 'default': False},
'dnac_log': {'type': 'bool', 'default': False},
"dnac_log_level": {"type": 'str', "default": 'WARNING'},
"config_verify": {"type": 'bool', "default": False},
'validate_response_schema': {'type': 'bool', 'default': True},
'config': {'required': True, 'type': 'list', 'elements': 'dict'},
'state': {'default': 'merged', 'choices': ['merged', 'deleted']}
Expand Down

0 comments on commit 3feaf45

Please sign in to comment.