ansible/cloud/vmware
Joseph Callen 9093c02446 Resolves issue with vmware_dvswitch module for v2.0
When this module was written back in May 2015 we were using 1.9.x. Being lazy I added to param the objects that the other functions would need. What I have noticed is in 2.0 exit_json is trying to jsonify those complex objects and failing. This PR resolves that issue with the vmware_dvswitch module.

@kamsz reported this issue in https://github.com/ansible/ansible-modules-extras/pull/1568

Playbook
```
- name: Create dvswitch
      local_action:
        module: vmware_dvswitch
        hostname: "{{ mgmt_ip_address }}"
        username: "{{ vcsa_user }}"
        password: "{{ vcsa_pass }}"
        datacenter_name: "{{ mgmt_vdc }}"
        switch_name: dvSwitch
        mtu: 1500
        uplink_quantity: 2
        discovery_proto: lldp
        discovery_operation: both
        state: present
```
Module Testing
```
TASK [Create dvswitch] *********************************************************
task path: /opt/autodeploy/projects/emmet/tasks/deploy/dvs_network.yml:3
ESTABLISH LOCAL CONNECTION FOR USER: root
localhost EXEC ( umask 22 && mkdir -p "$( echo $HOME/.ansible/tmp/ansible-tmp-1454693792.01-113207408596014 )" && echo "$( echo $HOME/.ansible/tmp/ansible-tmp-1454693792.01-113207408596014 )" )
localhost PUT /tmp/tmptb3e2c TO /root/.ansible/tmp/ansible-tmp-1454693792.01-113207408596014/vmware_dvswitch
localhost EXEC LANG=en_US.UTF-8 LC_ALL=en_US.UTF-8 LC_MESSAGES=en_US.UTF-8 /usr/bin/python /root/.ansible/tmp/ansible-tmp-1454693792.01-113207408596014/vmware_dvswitch; rm -rf "/root/.ansible/tmp/ansible-tmp-1454693792.01-113207408596014/" > /dev/null 2>&1
changed: [foundation-vcsa -> localhost] => {"changed": true, "invocation": {"module_args": {"datacenter_name": "Test-Lab", "discovery_operation": "both", "discovery_proto": "lldp", "hostname": "172.27.0.100", "mtu": 1500, "password": "VALUE_SPECIFIED_IN_NO_LOG_PARAMETER", "state": "present", "switch_name": "dvSwitch", "uplink_quantity": 2, "username": "root"}, "module_name": "vmware_dvswitch"}, "result": "'vim.dvs.VmwareDistributedVirtualSwitch:dvs-9'"}
```
2016-02-05 14:25:47 -05:00
..
__init__.py moved new module to proper subdir 2015-04-22 10:18:34 -04:00
vca_fw.py use doc fragments 2016-01-12 11:03:44 -06:00
vca_nat.py Merge pull request #1487 from chrrrles/vmware_doc_fragments 2016-01-15 15:42:25 -06:00
vca_vapp.py Fix indent 2016-02-03 14:36:04 -07:00
vmware_cluster.py use doc fragments 2016-01-12 11:03:44 -06:00
vmware_datacenter.py use doc fragments 2016-01-12 11:03:44 -06:00
vmware_dns_config.py use doc fragments 2016-01-12 11:03:44 -06:00
vmware_dvs_host.py use doc fragments 2016-01-12 11:03:44 -06:00
vmware_dvs_portgroup.py use doc fragments 2016-01-12 11:03:44 -06:00
vmware_dvswitch.py Resolves issue with vmware_dvswitch module for v2.0 2016-02-05 14:25:47 -05:00
vmware_host.py use doc fragments 2016-01-12 11:03:44 -06:00
vmware_migrate_vmk.py use doc fragments 2016-01-12 11:03:44 -06:00
vmware_portgroup.py use doc fragments 2016-01-12 11:03:44 -06:00
vmware_target_canonical_facts.py use doc fragments 2016-01-12 11:03:44 -06:00
vmware_vm_facts.py use doc fragments 2016-01-12 11:03:44 -06:00
vmware_vm_shell.py use doc fragments 2016-01-12 11:03:44 -06:00
vmware_vm_vss_dvs_migrate.py use doc fragments 2016-01-12 11:03:44 -06:00
vmware_vmkernel.py use doc fragments 2016-01-12 11:03:44 -06:00
vmware_vmkernel_ip_config.py use doc fragments 2016-01-12 11:03:44 -06:00
vmware_vsan_cluster.py use doc fragments 2016-01-12 11:03:44 -06:00
vmware_vswitch.py use doc fragments 2016-01-12 11:03:44 -06:00
vsphere_copy.py adding no_log to password 2016-01-05 14:36:05 -06:00