cisco.dnac.ise_integration_status_info 模块 – 用于 Ise 集成状态信息的 Information 模块

注意

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

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

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

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

cisco.dnac 6.14.0 中的新增功能

概要

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

注意

此模块具有对应的 action 插件

要求

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

  • dnacentersdk >= 2.4.9

  • python >= 3.5

参数

参数

注释

dnac_debug

boolean

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

选项

  • false ← (默认)

  • true

dnac_host

string / 必需

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"

headers

dictionary

其他标头。

validate_response_schema

boolean

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

选项

  • false

  • true ← (默认)

注意

注意

  • 使用的 SDK 方法是 system_settings.SystemSettings.cisco_ise_server_integration_status_v1,

  • 使用的路径是 get /dna/intent/api/v1/ise-integration-status,

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

  • 支持 check_mode

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

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

另请参阅

另请参阅

有关系统设置 CiscoISEServerIntegrationStatusV1 的 Cisco DNA Center 文档

CiscoISEServerIntegrationStatusV1 API 的完整参考。

示例

- name: Get all Ise Integration Status Info
  cisco.dnac.ise_integration_status_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}}"
  register: result

返回值

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

描述

dnac_response

dictionary

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

已返回: 总是

示例: {"aaaServerSettingId": "string", "overallErrorMessage": "string", "overallStatus": "string", "steps": [{"certAcceptedByUser": true, "stepDescription": "string", "stepId": "string", "stepName": "string", "stepOrder": 0, "stepStatus": "string", "stepTime": 0}]}

作者

  • Rafael Campos (@racampos)