
    Vh2                         d Z dZdZy)a
  
---
module: images_download
short_description: Resource module for Images Download
description:
  - This module represents an alias of the module images_download_v1
version_added: '6.15.0'
extends_documentation_fragment:
  - cisco.dnac.module
author: Rafael Campos (@racampos)
options:
  id:
    description: Id path parameter. Software image identifier. Check API `/dna/intent/api/v1/images`
      for `id` from response.
    type: str
requirements:
  - dnacentersdk >= 2.4.9
  - python >= 3.5
seealso:
  - name: Cisco DNA Center documentation for Software Image Management (SWIM) DownloadTheSoftwareImageV1
    description: Complete reference of the DownloadTheSoftwareImageV1 API.
    link: https://developer.cisco.com/docs/dna-center/#!download-the-software-image
notes:
  - SDK Method used are
    software_image_management_swim.SoftwareImageManagementSwim.download_the_software_image_v1,
  - Paths used are post /dna/intent/api/v1/images/{id}/download,
  - It should be noted that this module is an alias of images_download_v1
a2  
- name: Create
  cisco.dnac.images_download:
    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}}"
    id: string
a  
dnac_response:
  description: A dictionary or list with the response returned by the Cisco DNAC Python SDK
  returned: always
  type: dict
  sample: >
    {
      "response": {
        "taskId": "string",
        "url": "string"
      },
      "version": "string"
    }
N)DOCUMENTATIONEXAMPLESRETURN     n/home/dcms/DCMS/lib/python3.12/site-packages/ansible_collections/cisco/dnac/plugins/modules/images_download.py<module>r      s   
8
r   