cisco.ise.device_administration_conditions_info – Information module for Device Administration Conditions¶
Note
This plugin is part of the cisco.ise collection (version 0.0.9).
To install it use: ansible-galaxy collection install cisco.ise
.
To use it in a playbook, specify: cisco.ise.device_administration_conditions_info
.
New in version 1.0.0: of cisco.ise
Synopsis¶
Get all Device Administration Conditions.
Get Device Administration Conditions by id.
Get Device Administration Conditions by name.
Note
This module has a corresponding action plugin.
Parameters¶
Parameter | Choices/Defaults | Comments |
---|---|---|
id
string
|
Id path parameter. Condition id.
|
|
name
string
|
Name path parameter. Condition name.
|
See Also¶
See also
- cisco.ise.plugins.module_utils.definitions.device_administration_conditions
The official documentation on the cisco.ise.plugins.module_utils.definitions.device_administration_conditions module.
- Device Administration Conditions reference
Complete reference of the Device Administration Conditions object model.
Examples¶
- name: Get all Device Administration Conditions
cisco.ise.device_administration_conditions_info:
ise_hostname: "{{ise_hostname}}"
ise_username: "{{ise_username}}"
ise_password: "{{ise_password}}"
ise_verify: "{{ise_verify}}"
register: result
- name: Get Device Administration Conditions by id
cisco.ise.device_administration_conditions_info:
ise_hostname: "{{ise_hostname}}"
ise_username: "{{ise_username}}"
ise_password: "{{ise_password}}"
ise_verify: "{{ise_verify}}"
id: string
register: result
- name: Get Device Administration Conditions by name
cisco.ise.device_administration_conditions_info:
ise_hostname: "{{ise_hostname}}"
ise_username: "{{ise_username}}"
ise_password: "{{ise_password}}"
ise_verify: "{{ise_verify}}"
name: string
register: result
Return Values¶
Common return values are documented here, the following are the fields unique to this module:
Authors¶
Rafael Campos (@racampos)