Repository URL to install this package:
|
Version:
6.0.0 ▾
|
#!/usr/bin/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)
DOCUMENTATION = r"""
---
module: device_administration_local_exception_rules_info
short_description: Information module for Device Administration Local Exception Rules
description:
- Get all Device Administration Local Exception Rules.
- Get Device Administration Local Exception Rules by id.
- Device Admin - Get local exception rule attributes.
- Device Admin - Get local exception rules.
version_added: '1.0.0'
extends_documentation_fragment:
- cisco.ise.module_info
author: Rafael Campos (@racampos)
options:
policyId:
description:
- PolicyId path parameter. Policy id.
type: str
id:
description:
- Id path parameter. Rule id.
type: str
requirements:
- ciscoisesdk >= 2.0.1
- python >= 3.5
seealso:
- name: Cisco ISE documentation for Device Administration - Authorization Exception Rules
description: Complete reference of the Device Administration - Authorization Exception Rules API.
link: https://developer.cisco.com/docs/identity-services-engine/v1/#!policy-openapi
notes:
- SDK Method used are
device_administration_authorization_exception_rules.DeviceAdministrationAuthorizationExceptionRules.get_device_admin_local_exception_rule_by_id,
device_administration_authorization_exception_rules.DeviceAdministrationAuthorizationExceptionRules.get_device_admin_local_exception_rules,
- Paths used are
get /device-admin/policy-set/{policyId}/exception,
get /device-admin/policy-set/{policyId}/exception/{id},
"""
EXAMPLES = r"""
- name: Get all Device Administration Local Exception Rules
cisco.ise.device_administration_local_exception_rules_info:
ise_hostname: "{{ise_hostname}}"
ise_username: "{{ise_username}}"
ise_password: "{{ise_password}}"
ise_verify: "{{ise_verify}}"
policyId: string
register: result
- name: Get Device Administration Local Exception Rules by id
cisco.ise.device_administration_local_exception_rules_info:
ise_hostname: "{{ise_hostname}}"
ise_username: "{{ise_username}}"
ise_password: "{{ise_password}}"
ise_verify: "{{ise_verify}}"
policyId: string
id: string
register: result
"""
RETURN = r"""
ise_response:
description: A dictionary or list with the response returned by the Cisco ISE Python SDK
returned: always
type: dict
sample: >
{
"commands": [
"string"
],
"link": {
"href": "string",
"rel": "string",
"type": "string"
},
"profile": "string",
"rule": {
"condition": {
"conditionType": "string",
"isNegate": true,
"link": {
"href": "string",
"rel": "string",
"type": "string"
},
"description": "string",
"id": "string",
"name": "string",
"attributeName": "string",
"attributeValue": "string",
"dictionaryName": "string",
"dictionaryValue": "string",
"operator": "string",
"children": [
{
"conditionType": "string",
"isNegate": true,
"link": {
"href": "string",
"rel": "string",
"type": "string"
}
}
],
"datesRange": {
"endDate": "string",
"startDate": "string"
},
"datesRangeException": {
"endDate": "string",
"startDate": "string"
},
"hoursRange": {
"endTime": "string",
"startTime": "string"
},
"hoursRangeException": {
"endTime": "string",
"startTime": "string"
},
"weekDays": [
"string"
],
"weekDaysException": [
"string"
]
},
"default": true,
"hitCounts": 0,
"id": "string",
"name": "string",
"rank": 0,
"state": "string"
}
}
"""