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: endpoint_analytics_profiling_rules
short_description: Resource module for Endpoint Analytics Profiling Rules
description:
- Manage operations create, update and delete of the resource Endpoint Analytics Profiling Rules.
- Creates profiling rule from the request body.
- Deletes the profiling rule for the given 'ruleId'.
version_added: '4.0.0'
extends_documentation_fragment:
- cisco.dnac.module
author: Rafael Campos (@racampos)
options:
clusterId:
description: Unique identifier for ML cluster. Only applicable for 'ML Rule'.
type: str
conditionGroups:
description: Endpoint Analytics Profiling Rules's conditionGroups.
suboptions:
condition:
description: Endpoint Analytics Profiling Rules's condition.
suboptions:
attribute:
description: Endpoint Analytics Profiling Rules's attribute.
type: str
attributeDictionary:
description: Endpoint Analytics Profiling Rules's attributeDictionary.
type: str
operator:
description: Endpoint Analytics Profiling Rules's operator.
type: str
value:
description: Endpoint Analytics Profiling Rules's value.
type: str
type: dict
conditionGroup:
description: Endpoint Analytics Profiling Rules's conditionGroup.
elements: dict
type: list
operator:
description: Endpoint Analytics Profiling Rules's operator.
type: str
type:
description: Endpoint Analytics Profiling Rules's type.
type: str
type: dict
isDeleted:
description: Flag to indicate whether the rule was deleted.
type: bool
lastModifiedBy:
description: User that last modified the rule. It is read-only, and is ignored if
provided as part of input request.
type: str
lastModifiedOn:
description: Timestamp (in epoch milliseconds) of last modification. It is read-only,
and is ignored if provided as part of input request.
type: int
pluginId:
description: Plugin for the rule. Only applicable for 'Cisco Default' rules.
type: str
rejected:
description: Flag to indicate whether rule has been rejected by user or not. Only
applicable for 'ML Rule'.
type: bool
result:
description: Endpoint Analytics Profiling Rules's result.
suboptions:
deviceType:
description: List of device types determined by the current rule.
elements: str
type: list
hardwareManufacturer:
description: List of hardware manufacturers determined by the current rule.
elements: str
type: list
hardwareModel:
description: List of hardware models determined by the current rule.
elements: str
type: list
operatingSystem:
description: List of operating systems determined by the current rule.
elements: str
type: list
type: dict
ruleId:
description: Unique identifier for the rule. This is normally generated by the system,
and client does not need to provide it for rules that need to be newly created.
type: str
ruleName:
description: Human readable name for the rule.
type: str
rulePriority:
description: Priority for the rule.
type: int
ruleType:
description: Type of the rule. Allowed values are 'Cisco Default - Static', 'Cisco
Default - Dynamic', 'Custom Rule', 'ML Rule'.
type: str
ruleVersion:
description: Version of the rule.
type: int
sourcePriority:
description: Source priority for the rule.
type: int
usedAttributes:
description: List of attributes used in the rule. Only applicable for 'Cisco Default'
rules.
elements: str
type: list
requirements:
- dnacentersdk >= 2.4.9
- python >= 3.5
notes:
- SDK Method used are
policy.Policy.create_a_profiling_rule,
policy.Policy.delete_an_existing_profiling_rule,
policy.Policy.update_an_existing_profiling_rule,
- Paths used are
post /dna/intent/api/v1/endpoint-analytics/profiling-rules,
delete /dna/intent/api/v1/endpoint-analytics/profiling-rules/{ruleId},
"""
EXAMPLES = r"""
- name: Create
cisco.dnac.endpoint_analytics_profiling_rules:
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}}"
state: present
clusterId: string
conditionGroups:
condition:
attribute: string
attributeDictionary: string
operator: string
value: string
conditionGroup:
- {}
operator: string
type: string
isDeleted: true
lastModifiedBy: string
lastModifiedOn: 0
pluginId: string
rejected: true
result:
deviceType:
- string
hardwareManufacturer:
- string
hardwareModel:
- string
operatingSystem:
- string
ruleId: string
ruleName: string
rulePriority: 0
ruleType: string
ruleVersion: 0
sourcePriority: 0
usedAttributes:
- string
- name: Update by id
cisco.dnac.endpoint_analytics_profiling_rules:
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}}"
state: present
clusterId: string
conditionGroups:
condition:
attribute: string
attributeDictionary: string
operator: string
value: string
conditionGroup:
- {}
operator: string
type: string
isDeleted: true
lastModifiedBy: string
lastModifiedOn: 0
pluginId: string
rejected: true
result:
deviceType:
- string
hardwareManufacturer:
- string
hardwareModel:
- string
operatingSystem:
- string
ruleId: string
ruleName: string
rulePriority: 0
ruleType: string
ruleVersion: 0
sourcePriority: 0
usedAttributes:
- string
- name: Delete by id
cisco.dnac.endpoint_analytics_profiling_rules:
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}}"
state: absent
ruleId: 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: >
{
"id": "string",
"link": "string"
}
"""