.. Document meta :orphan: .. Anchors .. _ansible_collections.cisco.ise.guest_smtp_notification_settings_module: .. Anchors: short name for ansible.builtin .. Anchors: aliases .. Title cisco.ise.guest_smtp_notification_settings -- Resource module for Guest Smtp Notification Settings ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ .. Collection note .. note:: This plugin is part of the `cisco.ise collection `_ (version 0.0.9). To install it use: :code:`ansible-galaxy collection install cisco.ise`. To use it in a playbook, specify: :code:`cisco.ise.guest_smtp_notification_settings`. .. version_added .. versionadded:: 1.0.0 of cisco.ise .. contents:: :local: :depth: 1 .. Deprecated Synopsis -------- .. Description - Manage operations create and update of the resource Guest Smtp Notification Settings. .. note:: This module has a corresponding :ref:`action plugin `. .. Aliases .. Requirements Requirements ------------ The below requirements are needed on the host that executes this module. - ciscoisesdk .. Options Parameters ---------- .. raw:: html
Parameter Choices/Defaults Comments
connectionTimeout
string
Guest Smtp Notification Settings's connectionTimeout.
defaultFromAddress
string
Guest Smtp Notification Settings's defaultFromAddress.
notificationEnabled
boolean
    Choices:
  • no
  • yes
NotificationEnabled flag.
password
string
Guest Smtp Notification Settings's password.
smtpPort
string
Guest Smtp Notification Settings's smtpPort.
smtpServer
string
Guest Smtp Notification Settings's smtpServer.
useDefaultFromAddress
boolean
    Choices:
  • no
  • yes
UseDefaultFromAddress flag.
usePasswordAuthentication
boolean
    Choices:
  • no
  • yes
UsePasswordAuthentication flag.
userName
string
Guest Smtp Notification Settings's userName.
useTLSorSSLEncryption
boolean
    Choices:
  • no
  • yes
UseTLSorSSLEncryption flag.

.. Notes .. Seealso See Also -------- .. seealso:: :ref:`cisco.ise.plugins.module_utils.definitions.guest_smtp_notification_settings ` The official documentation on the **cisco.ise.plugins.module_utils.definitions.guest_smtp_notification_settings** module. `Guest Smtp Notification Settings reference `_ Complete reference of the Guest Smtp Notification Settings object model. .. Examples Examples -------- .. code-block:: yaml+jinja - name: Create cisco.ise.guest_smtp_notification_settings: ise_hostname: "{{ise_hostname}}" ise_username: "{{ise_username}}" ise_password: "{{ise_password}}" ise_verify: "{{ise_verify}}" state: present connectionTimeout: '60' defaultFromAddress: admin@ise.example.com notificationEnabled: true password: C1sco12345 smtpPort: '465' smtpServer: smtp.example.com useDefaultFromAddress: false usePasswordAuthentication: true useTLSorSSLEncryption: true userName: smtp@example.com - name: Update by id cisco.ise.guest_smtp_notification_settings: ise_hostname: "{{ise_hostname}}" ise_username: "{{ise_username}}" ise_password: "{{ise_password}}" ise_verify: "{{ise_verify}}" state: present connectionTimeout: '60' defaultFromAddress: admin@ise.example.com id: string notificationEnabled: true password: C1sco12345 smtpPort: '465' smtpServer: smtp.example.com useDefaultFromAddress: false usePasswordAuthentication: true useTLSorSSLEncryption: true userName: smtp@example.com .. Facts .. Return values Return Values ------------- Common return values are documented :ref:`here `, the following are the fields unique to this module: .. raw:: html
Key Returned Description
ise_response
dictionary
always
A dictionary or list with the response returned by the Cisco ISE Python SDK

Sample:
{}


.. Status (Presently only deprecated) .. Authors Authors ~~~~~~~ - Rafael Campos (@racampos) .. Parsing errors