File: //lib/python3.9/site-packages/ansible_collections/cisco/dnac/plugins/modules/threat_summary.py
# -*- 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: threat_summary
short_description: Resource module for Threat Summary
description:
- Manage operation create of the resource Threat Summary.
- The Threat Summary for the Rogues and aWIPS.
version_added: '3.1.0'
extends_documentation_fragment:
- cisco.dnac.module
author: Rafael Campos (@racampos)
options:
endTime:
description: End Time.
type: int
siteId:
description: Site Id.
elements: str
type: list
startTime:
description: Start Time.
type: int
threatLevel:
description: Threat Level.
elements: str
type: list
threatType:
description: Threat Type.
elements: str
type: list
requirements:
- dnacentersdk >= 2.5.5
- python >= 3.5
notes:
- SDK Method used are
devices.Devices.threat_summary,
- Paths used are
post /dna/intent/api/v1/security/threats/summary,
"""
EXAMPLES = r"""
- name: Create
cisco.dnac.threat_summary:
dnac_host: "{{dnac_host}}"
dnac_username: "{{dnac_username}}"
dnac_password: "{{dnac_password}}"
dnac_verify: "{{dnac_verify}}"
dnac_port: "{{dnac_port}}"
dnac_version: "{{dnac_version}}"
dnac_debug: "{{dnac_debug}}"
endTime: 0
siteId:
- string
startTime: 0
threatLevel:
- string
threatType:
- string
"""
RETURN = r"""
dnac_response:
description: A dictionary or list with the response returned by the Cisco DNAC Python SDK
returned: always
type: dict
sample: >
{
"response": [
{
"timestamp": 0,
"threatData": [
{
"threatType": "string",
"threatLevel": "string",
"threatCount": 0
}
]
}
],
"version": "string"
}
"""