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 / netapp / um_info / plugins / modules / na_um_nodes_info.py
Size: Mime:
#!/usr/bin/python

# (c) 2020, NetApp, Inc
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)

'''
na_um_list_nodes
'''

from __future__ import absolute_import, division, print_function
__metaclass__ = type


ANSIBLE_METADATA = {'metadata_version': '1.1',
                    'status': ['preview'],
                    'supported_by': 'certified'}


DOCUMENTATION = '''
module: na_um_nodes_info
short_description: NetApp Unified Manager list nodes.
extends_documentation_fragment:
    - netapp.um_info.netapp.um
version_added: '20.5.0'
author: NetApp Ansible Team (@carchi8py) <ng-ansibleteam@netapp.com>

description:
- List Nodes on AIQUM.
'''

EXAMPLES = """
- name: List Nodes
  netapp.um_info.na_um_nodes_info:
    hostname: "{{ hostname }}"
    username: "{{ username }}"
    password: "{{ password }}"
"""

RETURN = """
records:
    description: Returns list of Nodes information
    returned: always
    type: list
    sample: [{'allFlashOptimized': ...,
              'uptime': ...,
              'vendor': '...',
              'uuid': '...',
              'nvramid': '...',
              '_links':
                {'self':
                    {'href': '...'
                    }
                },
              'cluster':
                {'_links':
                    {'self':
                        {'href': '...'
                        }
                    },
                'uuid': '...',
                'key': '...',
                'name': '...'
                },
              'version':
                {'generation': ...,
                'major': ...,
                'full': '...',
                'minor': ...
                },
              'systemid': '...',
              'location': '...',
              'key': ...',
              'is_all_flash_optimized': ...,
              'serial_number': '...',
              'model': '...',
              'ha':
                {'partners':
                    [{'_links': {},
                    'uuid': ...,
                    'key': ...,
                    'name': ...
                    }]
                },
              'health': ...,
              'name': '...'
            }]
"""

from ansible.module_utils.basic import AnsibleModule
import ansible_collections.netapp.um_info.plugins.module_utils.netapp as netapp_utils
from ansible_collections.netapp.um_info.plugins.module_utils.netapp_module import NetAppModule
from ansible_collections.netapp.um_info.plugins.module_utils.netapp import UMRestAPI


class NetAppUMNode(object):
    ''' nodes initialize and class methods '''

    def __init__(self):
        self.argument_spec = netapp_utils.na_um_host_argument_spec()
        self.module = AnsibleModule(
            argument_spec=self.argument_spec,
            supports_check_mode=True
        )

        self.na_helper = NetAppModule()
        self.parameters = self.na_helper.set_parameters(self.module.params)

        self.rest_api = UMRestAPI(self.module)

    def get_nodes(self):
        """
        Fetch details of nodes.
        :return:
            Dictionary of current details if nodes found
            None if nodes is not found
        """
        data = {}
        api = "datacenter/cluster/nodes?order_by=performance_capacity.used"
        message, error = self.rest_api.get(api, data)
        if error:
            self.module.fail_json(msg=error)
        return self.rest_api.get_records(message, api)

    def apply(self):
        """
        Apply action to the nodes listing
        :return: None
        """
        current = self.get_nodes()
        if current is not None:
            self.na_helper.changed = True
        self.module.exit_json(changed=self.na_helper.changed, msg=current)


def main():
    """
    Create Node class instance and invoke apply
    :return: None
    """
    list_nodes_obj = NetAppUMNode()
    list_nodes_obj.apply()


if __name__ == '__main__':
    main()