racampos.dnac.network_device_polling_interval (0.0.1) — module

Manage NetworkDevicePollingInterval objects of Devices

| "added in version" 1.0 of racampos.dnac"

Authors: first last (@GitHubID)

preview | supported by community

This plugin has a corresponding action plugin.

Install collection

Install with ansible-galaxy collection install racampos.dnac:==0.0.1


Add to requirements.yml

  collections:
    - name: racampos.dnac
      version: 0.0.1

Description

Returns polling interval by device id.

Returns polling interval of all devices.


Requirements

Usage examples

  • Success
    Steampunk Spotter scan finished with no errors, warnings or hints.
- name: get_polling_interval_by_id
  cisco.dnac.network_device_polling_interval:
    state: query  # required
    id: SomeValue  # string, required
  register: query_result
  • Success
    Steampunk Spotter scan finished with no errors, warnings or hints.
  
- name: get_polling_interval_for_all_devices
  cisco.dnac.network_device_polling_interval:
    state: query  # required

  register: query_result

Inputs

    
id:
    description:
    - Device ID.
    required: true
    type: str

Outputs

get_polling_interval_by_id:
  contains: null
  description: Returns polling interval by device id.
  response:
    description: Response, property of the response body.
    returned: always
    sample: 0
    type: int
  returned: always
  type: dict
  version:
    description: Version, property of the response body.
    returned: always
    sample: '1.0'
    type: str
get_polling_interval_for_all_devices:
  contains: null
  description: Returns polling interval of all devices.
  response:
    description: Response, property of the response body.
    returned: always
    sample: 0
    type: int
  returned: always
  type: dict
  version:
    description: Version, property of the response body.
    returned: always
    sample: '1.0'
    type: str

See also