| Server IP : 85.214.239.14 / Your IP : 216.73.216.189 Web Server : Apache/2.4.65 (Debian) System : Linux h2886529.stratoserver.net 4.9.0 #1 SMP Mon Sep 30 15:36:27 MSK 2024 x86_64 User : www-data ( 33) PHP Version : 8.2.29 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : OFF Directory : /usr/lib/python3/dist-packages/ansible_collections/cisco/dnac/playbooks/ |
Upload File : |
---
- hosts: dnac_servers
vars_files:
- credentials.yml
gather_facts: false
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
ansible.builtin.debug:
msg: "{{ result }}"