Skip to content

Commit

Permalink
Merge pull request #124 from MUTHU-RAKESH-27/main
Browse files Browse the repository at this point in the history
Removed the dnac_log_level from the documentation.
  • Loading branch information
madhansansel authored Jan 30, 2024
2 parents d102c79 + bf9ecce commit 45a1f46
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 30 deletions.
7 changes: 1 addition & 6 deletions plugins/modules/device_credential_intent.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,6 @@
author: Muthu Rakesh (@MUTHU-RAKESH-27)
Madhan Sankaranarayanan (@madhansansel)
options:
dnac_log_level:
description: Specifies the desired log level for Cisco Catalyst Center logging.
Options - [CRITICAL, ERROR, WARNING, INFO, DEBUG]
type: str
default: INFO
config_verify:
description: Set to True to verify the Cisco DNA Center after applying the playbook config.
type: bool
Expand Down Expand Up @@ -2572,7 +2567,7 @@ 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": "INFO"},
"dnac_log_level": {"type": 'str', "default": 'WARNING'},
"config_verify": {"type": 'bool', "default": False},
"config": {"type": 'list', "required": True, "elements": 'dict'},
"state": {"default": 'merged', "choices": ['merged', 'deleted']},
Expand Down
7 changes: 1 addition & 6 deletions plugins/modules/network_settings_intent.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,6 @@
author: Muthu Rakesh (@MUTHU-RAKESH-27)
Madhan Sankaranarayanan (@madhansansel)
options:
dnac_log_level:
description: Specifies the desired log level for Cisco Catalyst Center logging.
Options - [CRITICAL, ERROR, WARNING, INFO, DEBUG]
type: str
default: INFO
config_verify:
description: Set to True to verify the Cisco DNA Center after applying the playbook config.
type: bool
Expand Down Expand Up @@ -2129,7 +2124,7 @@ 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": "INFO"},
"dnac_log_level": {"type": 'str', "default": 'WARNING'},
"config_verify": {"type": 'bool', "default": False},
"config": {"type": 'list', "required": True, "elements": 'dict'},
"state": {"default": 'merged', "choices": ['merged', 'deleted']},
Expand Down
6 changes: 0 additions & 6 deletions plugins/modules/provision_intent.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,6 @@
- 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
Expand Down
7 changes: 1 addition & 6 deletions plugins/modules/site_intent.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,6 @@
description: Set to True to verify the Cisco Catalyst Center config after applying the playbook config.
type: bool
default: False
dnac_log_level:
description: Specifies the log level for Cisco Catalyst Center logging, categorizing logs by severity.
Options- [CRITICAL, ERROR, WARNING, INFO, DEBUG]
type: str
default: INFO
state:
description: The state of Catalyst Center after module completion.
type: str
Expand Down Expand Up @@ -1030,7 +1025,7 @@ def main():
'dnac_verify': {'type': 'bool', 'default': 'True'},
'dnac_version': {'type': 'str', 'default': '2.2.3.3'},
'dnac_debug': {'type': 'bool', 'default': False},
'dnac_log_level': {'type': 'str', 'default': 'INFO'},
'dnac_log_level': {'type': 'str', 'default': 'WARNING'},
'dnac_log': {'type': 'bool', 'default': False},
'validate_response_schema': {'type': 'bool', 'default': True},
'config_verify': {'type': 'bool', "default": False},
Expand Down
7 changes: 1 addition & 6 deletions plugins/modules/template_intent.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,11 +30,6 @@
Akash Bhaskaran (@akabhask)
Muthu Rakesh (@MUTHU-RAKESH-27)
options:
dnac_log_level:
description: Specifies the desired log level for Cisco Catalyst Center logging.
Options - [CRITICAL, ERROR, WARNING, INFO, DEBUG]
type: str
default: INFO
config_verify:
description: Set to True to verify the Cisco DNA Center after applying the playbook config.
type: bool
Expand Down Expand Up @@ -2766,7 +2761,7 @@ 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": "INFO"},
"dnac_log_level": {"type": 'str', "default": 'WARNING'},
'validate_response_schema': {'type': 'bool', 'default': True},
"config_verify": {"type": 'bool', "default": False},
'config': {'required': True, 'type': 'list', 'elements': 'dict'},
Expand Down

0 comments on commit 45a1f46

Please sign in to comment.