cisco.dnac.network_device_v1_info 模块 – 网络设备 V1 信息模块

注意

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

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

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

要在剧本中使用它,请指定: cisco.dnac.network_device_v1_info

cisco.dnac 3.1.0 中的新增功能

概要

  • 获取所有网络设备 V1。

  • 按 ID 获取网络设备 V1。

  • 返回基于筛选条件(例如管理 IP 地址、MAC 地址、主机名等)的网络设备列表。

  • 返回给定设备 ID 的网络设备详细信息。

注意

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

要求

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

  • dnacentersdk >= 2.4.9

  • python >= 3.5

参数

参数

注释

associatedWlcIp

列表 / 元素=字符串

AssociatedWlcIp 查询参数。

collectionInterval

列表 / 元素=字符串

CollectionInterval 查询参数。

collectionStatus

列表 / 元素=字符串

CollectionStatus 查询参数。

deviceSupportLevel

字符串

DeviceSupportLevel 查询参数。

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"

errorCode

列表 / 元素=字符串

ErrorCode 查询参数。

errorDescription

列表 / 元素=字符串

ErrorDescription 查询参数。

family

列表 / 元素=字符串

Family 查询参数。

headers

字典

附加标头。

hostname

列表 / 元素=字符串

Hostname 查询参数。

id

字符串

Id 查询参数。接受逗号分隔的 ID 并返回给定 ID 的网络设备列表。如果提供无效或未找到的 ID,则列表中将返回空条目。

license_name

列表 / 元素=字符串

License.name 查询参数。

license_status

列表 / 元素=字符串

License.status 查询参数。

license_type

列表 / 元素=字符串

License.type 查询参数。

limit

整数

Limit 查询参数。1 <= limit <= 500 最大。结果中要返回的设备数量。

location

列表 / 元素=字符串

Location 查询参数。

locationName

列表 / 元素=字符串

LocationName 查询参数。

macAddress

列表 / 元素=字符串

MacAddress 查询参数。

managementIpAddress

列表 / 元素=字符串

ManagementIpAddress 查询参数。

module_equpimenttype

列表 / 元素=字符串

Module+equpimenttype 查询参数。

module_name

列表 / 元素=字符串

Module+name 查询参数。

module_operationstatecode

列表 / 元素=字符串

Module+operationstatecode 查询参数。

module_partnumber

列表 / 元素=字符串

Module+partnumber 查询参数。

module_servicestate

列表 / 元素=字符串

Module+servicestate 查询参数。

module_vendorequipmenttype

列表 / 元素=字符串

Module+vendorequipmenttype 查询参数。

notSyncedForMinutes

列表 / 元素=字符串

NotSyncedForMinutes 查询参数。

offset

整数

Offset 查询参数。Offset >= 1 X 从第 X 个设备开始给出结果。

platformId

列表 / 元素=字符串

PlatformId 查询参数。

reachabilityStatus

列表 / 元素=字符串

ReachabilityStatus 查询参数。

role

列表 / 元素=字符串

Role 查询参数。

serialNumber

列表 / 元素=字符串

SerialNumber 查询参数。

series

列表 / 元素=字符串

Series 查询参数。

softwareType

列表 / 元素=字符串

SoftwareType 查询参数。

softwareVersion

列表 / 元素=字符串

SoftwareVersion 查询参数。

type

列表 / 元素=字符串

Type 查询参数。

upTime

列表 / 元素=字符串

UpTime 查询参数。

validate_response_schema

布尔值

用于 Cisco DNA Center SDK 的标志,用于启用根据 JSON 模式验证请求正文。

选项

  • false

  • true ← (默认)

备注

注意

  • 使用的 SDK 方法为 devices.Devices.get_device_by_id_v1、devices.Devices.get_device_list_v1,

  • 使用的路径为 get /dna/intent/api/v1/network-device、get /dna/intent/api/v1/network-device/{id},

  • 支持 check_mode

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

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

参见

另请参见

Cisco DNA Center 设备 GetDeviceByIDV1 文档

GetDeviceByIDV1 API 的完整参考。

Cisco DNA Center 设备 GetDeviceListV1 文档

GetDeviceListV1 API 的完整参考。

示例

- name: Get all Network Device V1
  cisco.dnac.network_device_v1_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}}"
    hostname: []
    managementIpAddress: []
    macAddress: []
    locationName: []
    serialNumber: []
    location: []
    family: []
    type: []
    series: []
    collectionStatus: []
    collectionInterval: []
    notSyncedForMinutes: []
    errorCode: []
    errorDescription: []
    softwareVersion: []
    softwareType: []
    platformId: []
    role: []
    reachabilityStatus: []
    upTime: []
    associatedWlcIp: []
    license_name: []
    license_type: []
    license_status: []
    module_name: []
    module_equpimenttype: []
    module_servicestate: []
    module_vendorequipmenttype: []
    module_partnumber: []
    module_operationstatecode: []
    id: string
    deviceSupportLevel: string
    offset: 0
    limit: 0
  register: result

- name: Get Network Device V1 by id
  cisco.dnac.network_device_v1_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
  register: result

返回值

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

描述

dnac_response

字典

Cisco DNAC Python SDK 返回的响应的字典或列表。

返回:始终

示例: {"response": {"apEthernetMacAddress": "string", "apManagerInterfaceIp": "string", "associatedWlcIp": "string", "bootDateTime": "string", "collectionInterval": "string", "collectionStatus": "string", "description": "string", "deviceSupportLevel": "string", "dnsResolvedManagementAddress": "string", "errorCode": "string", "errorDescription": "string", "family": "string", "hostname": "string", "id": "string", "instanceTenantId": "string", "instanceUuid": "string", "interfaceCount": "string", "inventoryStatusDetail": "string", "lastDeviceResyncStartTime": "string", "lastUpdateTime": 0, "lastUpdated": "string", "lineCardCount": "string", "lineCardId": "string", "location": "string", "locationName": "string", "macAddress": "string", "managedAtleastOnce": true, "managementIpAddress": "string", "managementState": "string", "memorySize": "string", "pendingSyncRequestsCount": "string", "platformId": "string", "reachabilityFailureReason": "string", "reachabilityStatus": "string", "reasonsForDeviceResync": "string", "reasonsForPendingSyncRequests": "string", "role": "string", "roleSource": "string", "serialNumber": "string", "series": "string", "snmpContact": "string", "snmpLocation": "string", "softwareType": "string", "softwareVersion": "string", "tagCount": "string", "tunnelUdpPort": "string", "type": "string", "upTime": "string", "uptimeSeconds": 0, "vendor": "string", "waasDeviceMode": "string"}, "version": "string"}

作者

  • Rafael Campos (@racampos)