Server IP : 85.214.239.14 / Your IP : 3.145.97.1 Web Server : Apache/2.4.62 (Debian) System : Linux h2886529.stratoserver.net 4.9.0 #1 SMP Tue Jan 9 19:45:01 MSK 2024 x86_64 User : www-data ( 33) PHP Version : 7.4.18 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare, MySQL : OFF | cURL : OFF | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : OFF Directory : /proc/2/cwd/lib/python3/dist-packages/ansible_collections/inspur/sm/plugins/module_utils/ |
Upload File : |
# -*- coding:utf-8 -*- # Copyright (c), Inspur isib-group, 2020 from __future__ import (absolute_import, division, print_function) __metaclass__ = type try: import ism ism_temp = True except ImportError: ism_temp = False from ansible.module_utils.basic import env_fallback from ansible.module_utils.six import iteritems ism_provider_spec = { 'host': dict(type='str'), 'username': dict(type='str', fallback=(env_fallback, ['ANSIBLE_NET_USERNAME'])), 'password': dict(type='str', fallback=(env_fallback, ['ANSIBLE_NET_PASSWORD']), no_log=True), } ism_argument_spec = { 'provider': dict(type='dict', options=ism_provider_spec), } ism_top_spec = { 'host': dict(type='str'), 'username': dict(type='str'), 'password': dict(type='str', no_log=True), } ism_argument_spec.update(ism_top_spec) def load_params(module): """load_params""" provider = module.params.get('provider') or dict() for key, value in iteritems(provider): if key in ism_argument_spec: if module.params.get(key) is None and value is not None: module.params[key] = value def get_connection(module): """get_connection""" load_params(module) # result = dict() # if module.check_mode: # result['changed'] = True # result['state'] = 'Success' # result['message'] = module.params['subcommand'] # else: dict_param = module.params if not ism_temp: module.fail_json(msg='inspur_sdk must be installed to use this module') result = ism.main(dict_param) return result