mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-02 14:40:19 -07:00
NetApp ONTAP module for manage ipspaces (#49821)
* NetApp ONTAP module for manage ipspaces * fixes for ci_cd and code layout * indentation fixes * code style fixes * fixing yamllint issue * unit test for module na_ontap_ipspace * fixing sanity tests * change pytest.skip to pytest.mark.skip * adding ansible version to 2.9
This commit is contained in:
parent
3c8d8b1509
commit
ecdb616954
2 changed files with 396 additions and 0 deletions
258
lib/ansible/modules/storage/netapp/na_ontap_ipspace.py
Normal file
258
lib/ansible/modules/storage/netapp/na_ontap_ipspace.py
Normal file
|
@ -0,0 +1,258 @@
|
|||
#!/usr/bin/python
|
||||
"""
|
||||
this is ipspace module
|
||||
|
||||
# (c) 2018, NTT Europe Ltd.
|
||||
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
|
||||
"""
|
||||
|
||||
from __future__ import absolute_import, division, print_function
|
||||
__metaclass__ = type
|
||||
|
||||
ANSIBLE_METADATA = {
|
||||
'metadata_version': '1.1',
|
||||
'status': ['preview'],
|
||||
'supported_by': 'community'
|
||||
}
|
||||
|
||||
DOCUMENTATION = '''
|
||||
---
|
||||
module: na_ontap_ipspace
|
||||
|
||||
short_description: NetApp ONTAP Manage an ipspace
|
||||
|
||||
version_added: '2.9'
|
||||
|
||||
author:
|
||||
- NTTE Storage Engineering (@vicmunoz) <cl.eng.sto@ntt.eu>
|
||||
|
||||
description:
|
||||
- Manage an ipspace for an Ontap Cluster
|
||||
|
||||
extends_documentation_fragment:
|
||||
- netapp.na_ontap
|
||||
|
||||
options:
|
||||
state:
|
||||
description:
|
||||
- Whether the specified ipspace should exist or not
|
||||
choices: ['present', 'absent']
|
||||
default: present
|
||||
name:
|
||||
description:
|
||||
- The name of the ipspace to manage
|
||||
required: true
|
||||
from_name:
|
||||
description:
|
||||
- Name of the existing ipspace to be renamed to name
|
||||
'''
|
||||
|
||||
EXAMPLES = """
|
||||
- name: Create ipspace
|
||||
na_ontap_ipspace:
|
||||
state: present
|
||||
name: ansibleIpspace
|
||||
hostname: "{{ netapp_hostname }}"
|
||||
username: "{{ netapp_username }}"
|
||||
password: "{{ netapp_password }}"
|
||||
|
||||
- name: Delete ipspace
|
||||
na_ontap_ipspace:
|
||||
state: absent
|
||||
name: ansibleIpspace
|
||||
hostname: "{{ netapp_hostname }}"
|
||||
username: "{{ netapp_username }}"
|
||||
password: "{{ netapp_password }}"
|
||||
|
||||
- name: Rename ipspace
|
||||
na_ontap_ipspace:
|
||||
state: present
|
||||
name: ansibleIpspace_newname
|
||||
from_name: ansibleIpspace
|
||||
hostname: "{{ netapp_hostname }}"
|
||||
username: "{{ netapp_username }}"
|
||||
password: "{{ netapp_password }}"
|
||||
"""
|
||||
|
||||
RETURN = """
|
||||
"""
|
||||
|
||||
import traceback
|
||||
|
||||
import ansible.module_utils.netapp as netapp_utils
|
||||
from ansible.module_utils.netapp_module import NetAppModule
|
||||
from ansible.module_utils.basic import AnsibleModule
|
||||
from ansible.module_utils._text import to_native
|
||||
|
||||
HAS_NETAPP_LIB = netapp_utils.has_netapp_lib()
|
||||
|
||||
|
||||
class NetAppOntapIpspace(object):
|
||||
'''Class with ipspace operations'''
|
||||
|
||||
def __init__(self):
|
||||
self.argument_spec = netapp_utils.na_ontap_host_argument_spec()
|
||||
self.argument_spec.update(dict(
|
||||
state=dict(
|
||||
required=False, choices=['present', 'absent'],
|
||||
default='present'),
|
||||
name=dict(required=True, type='str'),
|
||||
from_name=dict(required=False, type='str'),
|
||||
))
|
||||
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)
|
||||
|
||||
if HAS_NETAPP_LIB is False:
|
||||
self.module.fail_json(
|
||||
msg="the python NetApp-Lib module is required")
|
||||
else:
|
||||
self.server = netapp_utils.setup_na_ontap_zapi(module=self.module)
|
||||
return
|
||||
|
||||
def ipspace_get_iter(self, name):
|
||||
"""
|
||||
Return net-ipspaces-get-iter query results
|
||||
:param name: Name of the ipspace
|
||||
:return: NaElement if ipspace found, None otherwise
|
||||
"""
|
||||
ipspace_get_iter = netapp_utils.zapi.NaElement('net-ipspaces-get-iter')
|
||||
query_details = netapp_utils.zapi.NaElement.create_node_with_children(
|
||||
'net-ipspaces-info', **{'ipspace': name})
|
||||
query = netapp_utils.zapi.NaElement('query')
|
||||
query.add_child_elem(query_details)
|
||||
ipspace_get_iter.add_child_elem(query)
|
||||
try:
|
||||
result = self.server.invoke_successfully(
|
||||
ipspace_get_iter, enable_tunneling=False)
|
||||
except netapp_utils.zapi.NaApiError as error:
|
||||
# Error 14636 denotes an ipspace does not exist
|
||||
# Error 13073 denotes an ipspace not found
|
||||
if to_native(error.code) == "14636" or to_native(error.code) == "13073":
|
||||
return None
|
||||
else:
|
||||
self.module.self.fail_json(
|
||||
msg=to_native(error),
|
||||
exception=traceback.format_exc())
|
||||
return result
|
||||
|
||||
def get_ipspace(self, name=None):
|
||||
"""
|
||||
Fetch details if ipspace exists
|
||||
:param name: Name of the ipspace to be fetched
|
||||
:return:
|
||||
Dictionary of current details if ipspace found
|
||||
None if ipspace is not found
|
||||
"""
|
||||
if name is None:
|
||||
name = self.parameters['name']
|
||||
ipspace_get = self.ipspace_get_iter(name)
|
||||
if (ipspace_get and ipspace_get.get_child_by_name('num-records') and
|
||||
int(ipspace_get.get_child_content('num-records')) >= 1):
|
||||
current_ipspace = dict()
|
||||
attr_list = ipspace_get.get_child_by_name('attributes-list')
|
||||
attr = attr_list.get_child_by_name('net-ipspaces-info')
|
||||
current_ipspace['name'] = attr.get_child_content('ipspace')
|
||||
return current_ipspace
|
||||
return None
|
||||
|
||||
def create_ipspace(self):
|
||||
"""
|
||||
Create ipspace
|
||||
:return: None
|
||||
"""
|
||||
ipspace_create = netapp_utils.zapi.NaElement.create_node_with_children(
|
||||
'net-ipspaces-create', **{'ipspace': self.parameters['name']})
|
||||
try:
|
||||
self.server.invoke_successfully(ipspace_create,
|
||||
enable_tunneling=False)
|
||||
except netapp_utils.zapi.NaApiError as error:
|
||||
self.module.self.fail_json(
|
||||
msg="Error provisioning ipspace %s: %s" % (
|
||||
self.parameters['name'],
|
||||
to_native(error)),
|
||||
exception=traceback.format_exc())
|
||||
|
||||
def delete_ipspace(self):
|
||||
"""
|
||||
Destroy ipspace
|
||||
:return: None
|
||||
"""
|
||||
ipspace_destroy = netapp_utils.zapi.NaElement.create_node_with_children(
|
||||
'net-ipspaces-destroy',
|
||||
**{'ipspace': self.parameters['name']})
|
||||
try:
|
||||
self.server.invoke_successfully(
|
||||
ipspace_destroy, enable_tunneling=False)
|
||||
except netapp_utils.zapi.NaApiError as error:
|
||||
self.module.self.fail_json(
|
||||
msg="Error removing ipspace %s: %s" % (
|
||||
self.parameters['name'],
|
||||
to_native(error)),
|
||||
exception=traceback.format_exc())
|
||||
|
||||
def rename_ipspace(self):
|
||||
"""
|
||||
Rename an ipspace
|
||||
:return: Nothing
|
||||
"""
|
||||
ipspace_rename = netapp_utils.zapi.NaElement.create_node_with_children(
|
||||
'net-ipspaces-rename',
|
||||
**{'ipspace': self.parameters['from_name'],
|
||||
'new-name': self.parameters['name']})
|
||||
try:
|
||||
self.server.invoke_successfully(ipspace_rename,
|
||||
enable_tunneling=False)
|
||||
except netapp_utils.zapi.NaApiError as error:
|
||||
self.module.fail_json(
|
||||
msg="Error renaming ipspace %s: %s" % (
|
||||
self.parameters['from_name'],
|
||||
to_native(error)),
|
||||
exception=traceback.format_exc())
|
||||
|
||||
def apply(self):
|
||||
"""
|
||||
Apply action to the ipspace
|
||||
:return: Nothing
|
||||
"""
|
||||
current = self.get_ipspace()
|
||||
# rename and create are mutually exclusive
|
||||
rename, cd_action = None, None
|
||||
if self.parameters.get('from_name'):
|
||||
rename = self.na_helper.is_rename_action(
|
||||
self.get_ipspace(self.parameters['from_name']),
|
||||
current)
|
||||
if rename is None:
|
||||
self.module.fail_json(
|
||||
msg="Error renaming: ipspace %s does not exist" %
|
||||
self.parameters['from_name'])
|
||||
else:
|
||||
cd_action = self.na_helper.get_cd_action(current, self.parameters)
|
||||
if self.na_helper.changed:
|
||||
if self.module.check_mode:
|
||||
pass
|
||||
else:
|
||||
if rename:
|
||||
self.rename_ipspace()
|
||||
elif cd_action == 'create':
|
||||
self.create_ipspace()
|
||||
elif cd_action == 'delete':
|
||||
self.delete_ipspace()
|
||||
self.module.exit_json(changed=self.na_helper.changed)
|
||||
|
||||
|
||||
def main():
|
||||
"""
|
||||
Execute action
|
||||
:return: nothing
|
||||
"""
|
||||
obj = NetAppOntapIpspace()
|
||||
obj.apply()
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
main()
|
Loading…
Add table
Add a link
Reference in a new issue