.. Document meta :orphan: .. Anchors .. _ansible_collections.cisco.ise.radius_server_sequence_module: .. Anchors: short name for ansible.builtin .. Anchors: aliases .. Title cisco.ise.radius_server_sequence -- Resource module for Radius Server Sequence ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ .. 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.radius_server_sequence`. .. version_added .. versionadded:: 1.0.0 of cisco.ise .. contents:: :local: :depth: 1 .. Deprecated Synopsis -------- .. Description - Manage operations create, update and delete of the resource Radius Server Sequence. .. 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
BeforeAcceptAttrManipulatorsList
list / elements=string
Radius Server Sequence's BeforeAcceptAttrManipulatorsList.
action
string
Radius Server Sequence's action.
attributeName
string
Radius Server Sequence's attributeName.
changedVal
string
Radius Server Sequence's changedVal.
dictionaryName
string
Radius Server Sequence's dictionaryName.
value
string
Radius Server Sequence's value.
continueAuthorzPolicy
boolean
    Choices:
  • no
  • yes
ContinueAuthorzPolicy flag.
description
string
Radius Server Sequence's description.
id
string
Radius Server Sequence's id.
localAccounting
boolean
    Choices:
  • no
  • yes
LocalAccounting flag.
name
string
Radius Server Sequence's name.
OnRequestAttrManipulatorList
list / elements=string
Radius Server Sequence's OnRequestAttrManipulatorList.
action
string
Radius Server Sequence's action.
attributeName
string
Radius Server Sequence's attributeName.
changedVal
string
Radius Server Sequence's changedVal.
dictionaryName
string
Radius Server Sequence's dictionaryName.
value
string
Radius Server Sequence's value.
prefixSeparator
string
Radius Server Sequence's prefixSeparator.
RadiusServerList
list / elements=string
Radius Server Sequence's RadiusServerList.
remoteAccounting
boolean
    Choices:
  • no
  • yes
RemoteAccounting flag.
stripPrefix
boolean
    Choices:
  • no
  • yes
StripPrefix flag.
stripSuffix
boolean
    Choices:
  • no
  • yes
StripSuffix flag.
suffixSeparator
string
Radius Server Sequence's suffixSeparator.
useAttrSetBeforeAcc
boolean
    Choices:
  • no
  • yes
UseAttrSetBeforeAcc flag.
useAttrSetOnRequest
boolean
    Choices:
  • no
  • yes
UseAttrSetOnRequest flag.

.. Notes .. Seealso See Also -------- .. seealso:: :ref:`cisco.ise.plugins.module_utils.definitions.radius_server_sequence ` The official documentation on the **cisco.ise.plugins.module_utils.definitions.radius_server_sequence** module. `Radius Server Sequence reference `_ Complete reference of the Radius Server Sequence object model. .. Examples Examples -------- .. code-block:: yaml+jinja - name: Create cisco.ise.radius_server_sequence: ise_hostname: "{{ise_hostname}}" ise_username: "{{ise_username}}" ise_password: "{{ise_password}}" ise_verify: "{{ise_verify}}" state: present BeforeAcceptAttrManipulatorsList: - action: ADD attributeName: cisco-prev-hop-ip changedVal: test2 dictionaryName: Cisco value: test1 - action: UPDATE attributeName: Cisco:cisco-ppp-vj-slot-comp changedVal: '13' dictionaryName: Cisco value: '12' OnRequestAttrManipulatorList: - action: ADD attributeName: cisco-prev-hop-ip changedVal: test2 dictionaryName: Cisco value: test1 - action: UPDATE attributeName: Cisco:cisco-ppp-vj-slot-comp changedVal: '13' dictionaryName: Cisco value: '12' RadiusServerList: - externalRadiusServer1 - externalRadiusServer2 continueAuthorzPolicy: false description: description id: id localAccounting: false name: name prefixSeparator: \ remoteAccounting: true stripPrefix: false stripSuffix: false suffixSeparator: '@' useAttrSetBeforeAcc: false useAttrSetOnRequest: false - name: Update by id cisco.ise.radius_server_sequence: ise_hostname: "{{ise_hostname}}" ise_username: "{{ise_username}}" ise_password: "{{ise_password}}" ise_verify: "{{ise_verify}}" state: present BeforeAcceptAttrManipulatorsList: - action: ADD attributeName: cisco-prev-hop-ip changedVal: test2 dictionaryName: Cisco value: test1 - action: UPDATE attributeName: Cisco:cisco-ppp-vj-slot-comp changedVal: '13' dictionaryName: Cisco value: '12' OnRequestAttrManipulatorList: - action: ADD attributeName: cisco-prev-hop-ip changedVal: test2 dictionaryName: Cisco value: test1 - action: UPDATE attributeName: Cisco:cisco-ppp-vj-slot-comp changedVal: '13' dictionaryName: Cisco value: '12' RadiusServerList: - externalRadiusServer1 - externalRadiusServer2 continueAuthorzPolicy: false description: description id: id localAccounting: false name: name prefixSeparator: \ remoteAccounting: true stripPrefix: false stripSuffix: false suffixSeparator: '@' useAttrSetBeforeAcc: false useAttrSetOnRequest: false - name: Delete by id cisco.ise.radius_server_sequence: ise_hostname: "{{ise_hostname}}" ise_username: "{{ise_username}}" ise_password: "{{ise_password}}" ise_verify: "{{ise_verify}}" state: absent id: string .. 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