Skip to content
This repository has been archived by the owner on Feb 24, 2022. It is now read-only.

na_um_list_svms

Chris Archibald edited this page Mar 18, 2021 · 1 revision
orphan:

netapp.um_info.na_um_list_svms -- NetApp Unified Manager list svms.

Note

This plugin is part of the netapp.um_info collection (version 20.6.0).

To install it use: ansible-galaxy collection install netapp.um_info.

To use it in a playbook, specify: netapp.um_info.na_um_list_svms.

.. versionadded:: 20.5.0 of netapp.um_info

  • List SVMs on AIQUM/OCUM.

The below requirements are needed on the host that executes this module.

  • A AIQUM/OCUM 9.7 system.
  • Ansible 2.9
Parameter Choices/Defaults Comments
hostname
string / required
The hostname or IP address of the Unified Manager instance.
http_port
integer
Override the default port (443) with this port
password
string / required
Password for the specified user.
username
string / required
username of the Unified Manager instance.
validate_certs
boolean
    Choices:
  • no
  • yes ←
If set to False, the SSL certificates will not be validated.
This should only set to False used on personally controlled sites using self-signed certificates.

Note

  • The modules prefixed with na\_um are built to support the AIQUM/OCUM 9.7 platform.
- name: List SVMs
  na_um_list_svms:
    hostname: "{{ hostname }}"
    username: "{{ username }}"
    password: "{{ password }}"

Common return values are documented :ref:`here <common_return_values>`, the following are the fields unique to this module:

Key Returned Description
records
list / elements=string
always
Returns list of SVMs information

Sample:
[{'_links': {'self': {'href': '...'}}, 'aggregates': [{'_links': {'self': {'href': '...'}}, 'key': '...', 'name': '...', 'uuid': '...'}], 'cifs': {'ad_domain': {'fqdn': '...'}, 'enabled': '...', 'name': '...'}, 'cluster': {'_links': {'self': {'href': '...'}}, 'key': '...', 'name': '...', 'uuid': '...'}, 'dns': '...', 'fcp': {'enabled': '...'}, 'ipspace': {'_links': {}, 'key': '...', 'name': '...', 'uuid': '...'}, 'iscsi': {'enabled': '...'}, 'key': '...', 'language': '...', 'ldap': {'enabled': '...'}, 'name': '...', 'nfs': {'enabled': '...'}, 'nis': {'domain': '...', 'enabled': '...', 'servers': '...'}, 'nvme': {'enabled': '...'}, 'snapshot_policy': {'_links': {}, 'key': '...', 'name': '...', 'uuid': '...'}, 'state': '...', 'subtype': 'default', 'uuid': '...'}]


Authors