cisco.dnac.network_devices_trend_analytics_id 模块 – 网络设备趋势分析 ID 的资源模块

注意

此模块是 cisco.dnac 集合(版本 6.25.0)的一部分。

如果您正在使用 ansible 包,您可能已经安装了这个集合。它不包含在 ansible-core 中。要检查是否已安装,请运行 ansible-galaxy collection list

要安装它,请使用:ansible-galaxy collection install cisco.dnac。您需要其他要求才能使用此模块,请参阅 要求 以了解详细信息。

要在 playbook 中使用它,请指定:cisco.dnac.network_devices_trend_analytics_id

cisco.dnac 6.15.0 中的新增功能

概要

  • 此模块表示模块 network_devices_trend_analytics_id_v1 的别名

注意

此模块具有相应的 action 插件

要求

执行此模块的主机上需要以下要求。

  • dnacentersdk >= 2.4.9

  • python >= 3.5

参数

参数

注释

aggregateAttributes

list / elements=dictionary

网络设备趋势分析 ID 的 aggregateAttributes。

function

string

函数。

name

string

名称。

attributes

list / elements=string

属性。

dnac_debug

boolean

Cisco DNA Center SDK 的标志,用于启用调试。

选项

  • false ←(默认)

  • true

dnac_host

string / required

Cisco DNA Center 主机名。

dnac_password

string

用于身份验证的 Cisco DNA Center 密码。

dnac_port

integer

Cisco DNA Center 端口。

默认值: 443

dnac_username

别名:user

string

用于身份验证的 Cisco DNA Center 用户名。

默认值: "admin"

dnac_verify

boolean

用于启用或禁用 SSL 证书验证的标志。

选项

  • false

  • true ←(默认)

dnac_version

string

通知 SDK 要使用的 Cisco DNA Center 版本。

默认值: "2.3.7.6"

endTime

integer

结束时间。

filters

list / elements=dictionary

网络设备趋势分析 ID 的过滤器。

filters

list / elements=string

过滤器。

key

string

键。

logicalOperator

string

逻辑运算符。

operator

string

运算符。

value

dictionary

值。

groupBy

list / elements=string

分组依据。

id

string

ID 路径参数。设备 Uuid。

page

dictionary

网络设备趋势分析 ID 的页面。

limit

integer

限制。

offset

integer

偏移。

timestampOrder

string

时间戳顺序。

startTime

integer

开始时间。

trendIntervalInMinutes

integer

趋势间隔(分钟)。

validate_response_schema

boolean

Cisco DNA Center SDK 的标志,用于启用针对 JSON 架构验证请求主体。

选项

  • false

  • true ←(默认)

备注

注意

  • 使用的 SDK 方法是 devices.Devices.the_trend_analytics_data_for_the_network_device_in_the_specified_time_range_v1,

  • 使用的路径是 post /dna/data/api/v1/networkDevices/{id}/trendAnalytics,

  • 应该注意的是,此模块是 network_devices_trend_analytics_id_v1 的别名

  • 不支持 check_mode

  • 该插件在控制节点上运行,不使用任何 ansible 连接插件,而是使用 Cisco DNAC SDK 中的嵌入式连接管理器

  • 以 dnac_ 开头的参数由 Cisco DNAC Python SDK 用于建立连接

另请参阅

另请参阅

Cisco DNA Center 文档,了解设备 TheTrendAnalyticsDataForTheNetworkDeviceInTheSpecifiedTimeRangeV1

TheTrendAnalyticsDataForTheNetworkDeviceInTheSpecifiedTimeRangeV1 API 的完整参考。

示例

- name: Create
  cisco.dnac.network_devices_trend_analytics_id:
    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}}"
    aggregateAttributes:
    - function: string
      name: string
    attributes:
    - string
    endTime: 0
    filters:
    - filters:
      - string
      key: string
      logicalOperator: string
      operator: string
      value: {}
    groupBy:
    - string
    id: string
    page:
      limit: 0
      offset: 0
      timestampOrder: string
    startTime: 0
    trendIntervalInMinutes: 0

返回值

通用返回值记录在这里,以下是此模块特有的字段

描述

dnac_response

dictionary

一个字典或列表,包含 Cisco DNAC Python SDK 返回的响应

返回: 始终

示例: {"page": {"count": 0, "limit": 0, "offset": 0, "timestampOrder": "string"}, "response": [{"aggregateAttributes": [{"function": "string", "name": "string", "value": 0}], "attributes": [{"name": "string", "value": "string"}], "groups": [{"aggregateAttributes": [{"function": "string", "name": "string", "value": 0}], "attributes": [{"name": "string", "value": "string"}], "id": "string"}], "timestamp": 0}], "version": "string"}

作者

  • Rafael Campos (@racampos)