racampos.dnac.network_device_export_list (0.0.1) — module

Manage NetworkDeviceExportList 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

Exports the selected network device to a file.


Requirements

Usage examples

  • Success
    Steampunk Spotter scan finished with no errors, warnings or hints.
- name: export_device_list
  cisco.dnac.network_device_export_list:
    state: create  # required
    deviceUuids:  # required
    - SomeValue  # string
    id: SomeValue  # string
    operationEnum: SomeValue  # string, valid values: 'CREDENTIALDETAILS', 'DEVICEDETAILS'.
    parameters:
    - SomeValue  # string
    password: SomeValue  # string

Inputs

    
id:
    description:
    - ExportDeviceDTO's id.
    type: str

password:
    description:
    - ExportDeviceDTO's password.
    type: str

parameters:
    description:
    - ExportDeviceDTO's parameters (list of strings).
    type: list

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

operationEnum:
    description:
    - ExportDeviceDTO's operationEnum.
    - Available values are 'CREDENTIALDETAILS' and 'DEVICEDETAILS'.
    type: str

Outputs

export_device_list:
  contains: null
  description: Exports the selected network device to a file.
  response:
    contains:
      taskId:
        description: It is the network device export list's taskId.
        returned: success
        type: dict
      url:
        description: It is the network device export list's url.
        returned: success
        sample: <url>
        type: str
    description: ExportDeviceDTO's response.
    returned: success
    type: dict
  returned: success
  type: dict
  version:
    description: ExportDeviceDTO's version.
    returned: success
    sample: '1.0'
    type: str

See also