1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
|
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# Copyright (c) 2021, Cisco Systems
# GNU General Public License v3.0+ (see LICENSE or https://www.gnu.org/licenses/gpl-3.0.txt)
from __future__ import (absolute_import, division, print_function)
__metaclass__ = type
class ModuleDocFragment(object):
# Standard files documentation fragment
DOCUMENTATION = r'''
options:
dnac_host:
description:
- The Cisco DNA Center hostname.
type: str
required: true
dnac_port:
description:
- The Cisco DNA Center port.
type: str
default: '443'
dnac_username:
description:
- The Cisco DNA Center username to authenticate.
type: str
default: admin
aliases: [ user ]
dnac_password:
description:
- The Cisco DNA Center password to authenticate.
type: str
dnac_verify:
description:
- Flag to enable or disable SSL certificate verification.
type: bool
default: true
dnac_version:
description:
- Informs the SDK which version of Cisco DNA Center to use.
type: str
default: 2.2.3.3
dnac_debug:
description:
- Flag for Cisco DNA Center SDK to enable debugging.
type: bool
default: false
dnac_log:
description:
- Flag to enable/disable playbook execution logging.
- When true and dnac_log_file_path is provided,
- Create the log file at the execution location with the specified name.
- When true and dnac_log_file_path is not provided,
- Create the log file at the execution location with the name 'dnac.log'.
- When false,
- Logging is disabled.
- If the log file doesn't exist,
- It is created in append or write mode based on the "dnac_log_append" flag.
- If the log file exists,
- It is overwritten or appended based on the "dnac_log_append" flag.
type: bool
default: false
dnac_log_level:
description:
- Sets the threshold for log level. Messages with a level equal to or higher than
this will be logged. Levels are listed in order of severity [CRITICAL, ERROR, WARNING, INFO, DEBUG].
- CRITICAL indicates serious errors halting the program. Displays only CRITICAL messages.
- ERROR indicates problems preventing a function. Displays ERROR and CRITICAL messages.
- WARNING indicates potential future issues. Displays WARNING, ERROR, CRITICAL messages.
- INFO tracks normal operation. Displays INFO, WARNING, ERROR, CRITICAL messages.
- DEBUG provides detailed diagnostic info. Displays all log messages.
type: str
default: WARNING
dnac_log_file_path:
description:
- Governs logging. Logs are recorded if dnac_log is True.
- If path is not specified,
- When 'dnac_log_append' is True, 'dnac.log' is generated in the
current Ansible directory; logs are appended.
- When 'dnac_log_append' is False, 'dnac.log' is generated; logs
are overwritten.
- If path is specified,
- When 'dnac_log_append' is True, the file opens in append mode.
- When 'dnac_log_append' is False, the file opens in write (w) mode.
- In shared file scenarios, without append mode, content is
overwritten after each module execution.
- For a shared log file, set append to False for the 1st module
(to overwrite); for subsequent modules, set append to True.
type: str
default: dnac.log
dnac_log_append:
description: Determines the mode of the file. Set to True for 'append' mode. Set to False for 'write' mode.
type: bool
default: True
dnac_api_task_timeout:
description: Defines the timeout in seconds for API calls to retrieve task details. If the task details
are not received within this period, the process will end, and a timeout notification will be logged.
type: int
default: 1200
dnac_task_poll_interval:
description: Specifies the interval in seconds between successive calls to the API to retrieve task details.
type: int
default: 2
validate_response_schema:
description:
- Flag for Cisco DNA Center SDK to enable the validation of request bodies against a JSON schema.
type: bool
default: true
notes:
- "Does not support C(check_mode)"
- "The plugin runs on the control node and does not use any ansible connection plugins, but instead the embedded connection manager from Cisco DNAC SDK"
- "The parameters starting with dnac_ are used by the Cisco DNAC Python SDK to establish the connection"
'''
|