cisco.dnac.custom_issue_definitions_count_info 模块 – 自定义问题定义计数信息的信息模块

注意

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

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

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

要在 Playbook 中使用它,请指定:cisco.dnac.custom_issue_definitions_count_info

cisco.dnac 6.15.0 中的新增功能

概要

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

注意

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

要求

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

  • dnacentersdk >= 2.4.9

  • python >= 3.5

参数

参数

注释

dnac_debug

boolean

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

boolean

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

选择

  • false

  • true ← (默认)

dnac_version

字符串

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

默认: "2.3.7.6"

facility

字符串

Facility 查询参数。Syslog 工具名称。

headers

字典

其他标头。

id

字符串

Id 查询参数。自定义问题定义标识符和跨配置文件的唯一标识符。示例 id=6bef213c-19ca-4170-8375-b694e251101c(请求单个实体 UUID)id=6bef213c-19ca-4170-8375-b694e251101c&id=19ca-4170-8375-b694e251101c-6bef213c(在查询参数中请求多个 Id)。

isEnabled

boolean

IsEnabled 查询参数。自定义问题定义的启用状态,为 true 或 false。

选择

  • false

  • true

mnemonic

字符串

Mnemonic 查询参数。Syslog 助记符名称。

name

字符串

Name 查询参数。UDI 问题名称列表。(例如,“TestUdiIssues”)。

priority

字符串

Priority 查询参数。问题优先级值,可能的值为 P1、P2、P3、P4。P1 是需要立即关注并可能对网络运营产生广泛影响的关键问题。P2 是可能潜在影响多个设备或客户端的主要问题。P3 是具有局部或最小影响的次要问题。P4 是一个警告问题,可能不是直接问题,但解决它可以优化网络性能。

profileId

字符串

ProfileId 查询参数。用于获取与自定义问题定义关联的配置文件的配置文件标识符。默认值为全局。对于自定义配置文件,它是配置文件 UUID。例如 3fa85f64-5717-4562-b3fc-2c963f66afa6。

severity

浮点数

Severity 查询参数。Syslog 严重级别。0 紧急,1 警报,2 严重。3 错误,4 警告,5 注意,6 信息。例如 severity=1&severity=2(使用 & 分隔符的多值支持)。

validate_response_schema

boolean

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

选择

  • false

  • true ← (默认)

备注

注意

  • 使用的 SDK 方法是 issues.Issues.get_the_total_custom_issue_definitions_count_based_on_the_provided_filters_v1

  • 使用的路径是 get /dna/intent/api/v1/customIssueDefinitions/count,

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

  • 支持 check_mode

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

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

另请参阅

另请参阅

有关 Issues GetTheTotalCustomIssueDefinitionsCountBasedOnTheProvidedFiltersV1 的 Cisco DNA Center 文档

GetTheTotalCustomIssueDefinitionsCountBasedOnTheProvidedFiltersV1 API 的完整参考。

示例

- name: Get all Custom Issue Definitions Count Info
  cisco.dnac.custom_issue_definitions_count_info:
    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}}"
    headers: "{{my_headers | from_json}}"
    id: string
    profileId: string
    name: string
    priority: string
    isEnabled: True
    severity: 0
    facility: string
    mnemonic: string
  register: result

返回值

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

描述

dnac_response

字典

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

已返回: 始终

示例: {"response": {"count": 0}, "version": "string"}

作者

  • Rafael Campos (@racampos)