cisco.dnac.assurance_issues_query_v1 模块 – 用于 Assurance Issues Query V1 的资源模块

注意

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

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

要安装它,请使用:ansible-galaxy collection install cisco.dnac。 您需要进一步的要求才能使用此模块,请参阅 要求 了解详情。

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

cisco.dnac 6.15.0 中的新增功能

概要

  • 管理资源 Assurance Issues Query V1 的创建操作。

  • 返回每个问题的详细信息以及请求正文中指定的一组给定筛选器的建议操作。如果没有开始和/或结束时间,则结束时间将默认为当前时间,开始时间将默认为结束时间前 24 小时。Https //github.com/cisco-en-programmability/catalyst-center-api- specs/blob/main/Assurance/CE_Cat_Center_Org-IssuesList-1.0.0-resolved.yaml。

注意

此模块具有相应的 操作插件

要求

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

  • dnacentersdk >= 2.4.9

  • python >= 3.5

参数

参数

注释

dnac_debug

布尔值

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

选项

  • false ← (默认)

  • true

dnac_host

字符串 / 必需

Cisco DNA Center 主机名。

dnac_password

字符串

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

dnac_port

整数

Cisco DNA Center 端口。

默认: 443

dnac_username

别名:user

字符串

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

默认: "admin"

dnac_verify

布尔值

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

选项

  • false

  • true ← (默认)

dnac_version

字符串

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

默认: "2.3.7.6"

endTime

整数

结束时间。

filters

列表 / 元素=字典

Assurance Issues Query 的筛选器。

filters

列表 / 元素=字典

Assurance Issues Query 的筛选器。

key

字符串

键。

operator

字符串

运算符。

value

字符串

值。

key

字符串

键。

logicalOperator

字符串

逻辑运算符。

operator

字符串

运算符。

value

字符串

值。

headers

字典

其他标头。

startTime

整数

开始时间。

validate_response_schema

布尔值

Cisco DNA Center SDK 启用针对 JSON 架构验证请求正文的标志。

选项

  • false

  • true ← (默认)

注释

注意

  • 使用的 SDK 方法是 issues.Issues.get_the_details_of_issues_for_given_set_of_filters_v1,

  • 使用的路径是 post /dna/data/api/v1/assuranceIssues/query,

  • 不支持 check_mode

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

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

另请参阅

另请参阅

有关 Issues GetTheDetailsOfIssuesForGivenSetOfFiltersV1 的 Cisco DNA Center 文档

GetTheDetailsOfIssuesForGivenSetOfFiltersV1 API 的完整参考。

示例

- name: Create
  cisco.dnac.assurance_issues_query_v1:
    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
    filters:
    - filters:
      - key: string
        operator: string
        value: string
      key: string
      logicalOperator: string
      operator: string
      value: string
    headers: '{{my_headers | from_json}}'
    startTime: 0

返回值

常见的返回值记录在 此处,以下是此模块特有的字段

描述

dnac_response

字典

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

返回: 始终

示例: {"page": {"count": 0, "limit": 0, "offset": 0, "sortBy": [{"name": "string", "order": "string"}]}, "response": [{"additionalAttributes": [{"key": "string", "value": "string"}], "category": "string", "description": "string", "deviceType": "string", "entityId": "string", "entityType": "string", "firstOccurredTime": 0, "isGlobal": true, "issueId": "string", "mostRecentOccurredTime": 0, "name": "string", "notes": {}, "priority": "string", "severity": "string", "siteHierarchy": {}, "siteHierarchyId": {}, "siteId": {}, "siteName": {}, "status": "string", "suggestedActions": [{"message": "string", "steps": [{}]}], "summary": "string", "updatedBy": {}, "updatedTime": {}}], "version": "string"}

作者

  • Rafael Campos (@racampos)