Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
ansible / cisco / dnac / playbooks / import_image_file.yml
Size: Mime:
- hosts: dnac_servers
  vars_files:
    - credentials.yml
  gather_facts: no
  tasks:
  - name: Import image file
    cisco.dnac.swim_import_local:
      dnac_host: "{{dnac_host}}"
      dnac_username: "{{dnac_username}}"
      dnac_password: "{{dnac_password}}"
      dnac_verify: "{{dnac_verify}}"
      filePath: fullpath/playbooks/files/test.template  # string
      isThirdParty: True  # boolean
      thirdPartyApplicationType: SomeValue  # string
      thirdPartyImageFamily: SomeValue  # string
      thirdPartyVendor: SomeValue  # string
    register: result

  - name: Show result
    debug:
      msg: "{{ result }}"