Server IP : 85.214.239.14 / Your IP : 3.142.195.139 Web Server : Apache/2.4.62 (Debian) System : Linux h2886529.stratoserver.net 4.9.0 #1 SMP Tue Jan 9 19:45:01 MSK 2024 x86_64 User : www-data ( 33) PHP Version : 7.4.18 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare, MySQL : OFF | cURL : OFF | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : OFF Directory : /usr/lib/python3/dist-packages/ansible_collections/cisco/ise/plugins/doc_fragments/ |
Upload File : |
#!/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: ise_hostname: description: - The Identity Services Engine hostname. type: str required: true ise_username: description: - The Identity Services Engine username to authenticate. type: str required: true ise_password: description: - The Identity Services Engine password to authenticate. type: str required: true ise_verify: description: - Flag to enable or disable SSL certificate verification. type: bool default: true ise_version: description: - Informs the SDK which version of Identity Services Engine to use. type: str default: 3.1_Patch_1 ise_wait_on_rate_limit: description: - Flag for Identity Services Engine SDK to enable automatic rate-limit handling. type: bool default: true ise_debug: description: - Flag for Identity Services Engine SDK to enable debugging. type: bool default: false ise_uses_api_gateway: description: - Flag that informs the SDK whether to use the Identity Services Engine's API Gateway to send requests. - If it is true, it uses the ISE's API Gateway and sends requests to https://{{ise_hostname}}. - If it is false, it sends the requests to https://{{ise_hostname}}:{{port}}, where the port value depends on the Service used (ERS, Mnt, UI, PxGrid). type: bool default: true version_added: '1.1.0' ise_uses_csrf_token: description: - Flag that informs the SDK whether we send the CSRF token to ISE's ERS APIs. - If it is True, the SDK assumes that your ISE CSRF Check is enabled. - If it is True, it assumes you need the SDK to manage the CSRF token automatically for you. type: bool default: false version_added: '3.0.0' 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 ISE SDK" - "The parameters starting with ise_ are used by the Cisco ISE Python SDK to establish the connection" '''