cisco.dnac.device_details_info – Information module for Device Details

Note

This plugin is part of the cisco.dnac collection (version 3.1.0).

To install it use: ansible-galaxy collection install cisco.dnac.

To use it in a playbook, specify: cisco.dnac.device_details_info.

New in version 1.0.0: of cisco.dnac

Synopsis

  • Get all Device Details.

Note

This module has a corresponding action plugin.

Requirements

The below requirements are needed on the host that executes this module.

  • dnacentersdk

Parameters

Parameter Choices/Defaults Comments
identifier
string
Identifier query parameter. One of keywords macAddress or uuid or nwDeviceName.
searchBy
string
SearchBy query parameter. MAC Address or Device Name value or UUID of the network device.
timestamp
string
Timestamp query parameter. Epoch time(in milliseconds) when the device data is required.

See Also

See also

Device Details reference

Complete reference of the Device Details object model.

Examples

- name: Get all Device Details
  cisco.dnac.device_details_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}}"
    timestamp: string
    searchBy: string
    identifier: string
  register: result

Return Values

Common return values are documented here, the following are the fields unique to this module:

Key Returned Description
dnac_response
dictionary
always
A dictionary or list with the response returned by the Cisco DNAC Python SDK

Sample:
{ "HALastResetReason": "string", "managementIpAddr": "string", "HAPrimaryPowerStatus": "string", "redundancyMode": "string", "communicationState": "string", "nwDeviceName": "string", "redundancyUnit": "string", "platformId": "string", "redundancyPeerState": "string", "nwDeviceId": "string", "redundancyState": "string", "nwDeviceRole": "string", "nwDeviceFamily": "string", "macAddress": "string", "collectionStatus": "string", "deviceSeries": "string", "osType": "string", "clientCount": "string", "HASecondaryPowerStatus": "string", "softwareVersion": "string", "nwDeviceType": "string", "overallHealth": 0, "memoryScore": 0, "cpuScore": 0, "noiseScore": 0, "utilizationScore": 0, "airQualityScore": 0, "interferenceScore": 0, "wqeScore": 0, "freeMbufScore": 0, "packetPoolScore": 0, "freeTimerScore": 0, "memory": "string", "cpu": "string", "noise": "string", "utilization": "string", "airQuality": "string", "interference": "string", "wqe": "string", "freeMbuf": "string", "packetPool": "string", "freeTimer": "string", "location": "string", "timestamp": "string" }


Authors

  • Rafael Campos (@racampos)