racampos.dnac.network_device_poller_read_request (0.0.1) — module

Manage NetworkDevicePollerReadRequest objects of CommandRunner

| "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

Submit request for read-only CLIs.


Requirements

Usage examples

  • Success
    Steampunk Spotter scan finished with no errors, warnings or hints.
- name: run_read_only_commands_on_devices
  cisco.dnac.network_device_poller_read_request:
    state: create  # required
    commands:  # required
    - SomeValue  # string
    deviceUuids:  # required
    - SomeValue  # string
    description: SomeValue  # string
    name: SomeValue  # string
    timeout: 1  #  integer

Inputs

    
name:
    description:
    - CommandRunnerDTO's name.
    type: str

timeout:
    description:
    - CommandRunnerDTO's timeout.
    type: int

commands:
    description:
    - CommandRunnerDTO's commands (list of strings).
    required: true
    type: list

description:
    description:
    - CommandRunnerDTO's description.
    type: str

deviceUuids:
    description:
    - CommandRunnerDTO's deviceUuids (list of strings).
    required: true
    type: list

Outputs

run_read_only_commands_on_devices:
  contains: null
  description: Submit request for read-only CLIs.
  response:
    contains:
      taskId:
        description: It is the network device poller read request's taskId.
        returned: success
        type: dict
      url:
        description: It is the network device poller read request's url.
        returned: success
        sample: <url>
        type: str
    description: CommandRunnerDTO's response.
    returned: success
    type: dict
  returned: success
  type: dict
  version:
    description: CommandRunnerDTO's version.
    returned: success
    sample: '1.0'
    type: str

See also