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: network_access_conditions_info
short_description: Information module for Network Access Conditions
description:
- Get all Network Access Conditions.
- Get Network Access Conditions by id.
- Get Network Access Conditions by name.
- Network Access - Returns a library condition.
- Network Access - Returns a library condition.
- Network Access - Returns all library conditions.
version_added: '1.0.0'
extends_documentation_fragment:
- cisco.ise.module_info
author: Rafael Campos (@racampos)
options:
name:
description:
- Name path parameter. Condition name.
type: str
id:
description:
- Id path parameter. Condition id.
type: str
requirements:
- ciscoisesdk >= 2.0.1
- python >= 3.5
seealso:
- name: Cisco ISE documentation for Network Access - Conditions
description: Complete reference of the Network Access - Conditions API.
link: https://developer.cisco.com/docs/identity-services-engine/v1/#!policy-openapi
notes:
- SDK Method used are
network_access_conditions.NetworkAccessConditions.get_network_access_condition_by_id,
network_access_conditions.NetworkAccessConditions.get_network_access_condition_by_name,
network_access_conditions.NetworkAccessConditions.get_network_access_conditions,
- Paths used are
get /network-access/condition,
get /network-access/condition/condition-by-name/{name},
get /network-access/condition/{id},
"""
EXAMPLES = r"""
- name: Get all Network Access Conditions
cisco.ise.network_access_conditions_info:
ise_hostname: "{{ise_hostname}}"
ise_username: "{{ise_username}}"
ise_password: "{{ise_password}}"
ise_verify: "{{ise_verify}}"
register: result
- name: Get Network Access Conditions by id
cisco.ise.network_access_conditions_info:
ise_hostname: "{{ise_hostname}}"
ise_username: "{{ise_username}}"
ise_password: "{{ise_password}}"
ise_verify: "{{ise_verify}}"
id: string
register: result
- name: Get Network Access Conditions by name
cisco.ise.network_access_conditions_info:
ise_hostname: "{{ise_hostname}}"
ise_username: "{{ise_username}}"
ise_password: "{{ise_password}}"
ise_verify: "{{ise_verify}}"
name: 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: >
{
"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"
]
}
"""