#!/usr/bin/python # -*- coding: utf-8 -*- # # Copyright (c) 2016 Red Hat, Inc. # # This file is part of Ansible # # Ansible is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # Ansible is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with Ansible. If not, see . # try: import ovirtsdk4 as sdk except ImportError: pass from ansible.module_utils.ovirt import * ANSIBLE_METADATA = {'status': ['preview'], 'supported_by': 'community', 'version': '1.0'} DOCUMENTATION = ''' --- module: ovirt_hosts_facts short_description: Retrieve facts about one or more oVirt hosts author: "Ondra Machacek (@machacekondra)" version_added: "2.3" description: - "Retrieve facts about one or more oVirt hosts." notes: - "This module creates a new top-level C(ovirt_hosts) fact, which contains a list of hosts." options: pattern: description: - "Search term which is accepted by oVirt search backend." - "For example to search host X from datacenter Y use following pattern: name=X and datacenter=Y" extends_documentation_fragment: ovirt ''' EXAMPLES = ''' # Examples don't contain auth parameter for simplicity, # look at ovirt_auth module to see how to reuse authentication: # Gather facts about all hosts which names start with C(host) and # belong to data center C(west): - ovirt_hosts_facts: pattern: name=host* and datacenter=west - debug: var: ovirt_hosts ''' RETURN = ''' ovirt_hosts: description: "List of dictionaries describing the hosts. Host attribues are mapped to dictionary keys, all hosts attributes can be found at following url: https://ovirt.example.com/ovirt-engine/api/model#types/host." returned: On success. type: list ''' def main(): argument_spec = ovirt_full_argument_spec( pattern=dict(default='', required=False), ) module = AnsibleModule(argument_spec) check_sdk(module) try: connection = create_connection(module.params.pop('auth')) hosts_service = connection.system_service().hosts_service() hosts = hosts_service.list(search=module.params['pattern']) module.exit_json( changed=False, ansible_facts=dict( ovirt_hosts=[ get_dict_of_struct(c) for c in hosts ], ), ) except Exception as e: module.fail_json(msg=str(e)) from ansible.module_utils.basic import * if __name__ == '__main__': main()