Repository URL to install this package:
|
Version:
6.0.0 ▾
|
#!/usr/bin/python
"""
create Autosupport module to enable, disable or modify
"""
# (c) 2018-2021, NetApp, Inc
# 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
DOCUMENTATION = """
module: na_ontap_autosupport
short_description: NetApp ONTAP autosupport
extends_documentation_fragment:
- netapp.ontap.netapp.na_ontap
version_added: 2.7.0
description:
- Enable/Disable Autosupport
author: NetApp Ansible Team (@carchi8py) <ng-ansibleteam@netapp.com>
options:
state:
description:
- Specifies whether the AutoSupport daemon is present or absent.
- When this setting is absent, delivery of all AutoSupport messages is turned off.
choices: ['present', 'absent']
type: str
default: present
node_name:
description:
- The name of the filer that owns the AutoSupport Configuration.
required: true
type: str
transport:
description:
- The name of the transport protocol used to deliver AutoSupport messages
choices: ['http', 'https', 'smtp']
type: str
noteto:
description:
- Specifies up to five recipients of short AutoSupport e-mail messages.
type: list
elements: str
post_url:
description:
- The URL used to deliver AutoSupport messages via HTTP POST
type: str
mail_hosts:
description:
- List of mail server(s) used to deliver AutoSupport messages via SMTP.
- Both host names and IP addresses may be used as valid input.
type: list
elements: str
support:
description:
- Specifies whether AutoSupport notification to technical support is enabled.
type: bool
from_address:
description:
- specify the e-mail address from which the node sends AutoSupport messages
version_added: 2.8.0
type: str
partner_addresses:
description:
- Specifies up to five partner vendor recipients of full AutoSupport e-mail messages.
version_added: 2.8.0
type: list
elements: str
to_addresses:
description:
- Specifies up to five recipients of full AutoSupport e-mail messages.
version_added: 2.8.0
type: list
elements: str
proxy_url:
description:
- specify an HTTP or HTTPS proxy if the 'transport' parameter is set to HTTP or HTTPS and your organization uses a proxy.
- If authentication is required, use the format "username:password@host:port".
version_added: 2.8.0
type: str
hostname_in_subject:
description:
- Specify whether the hostname of the node is included in the subject line of the AutoSupport message.
type: bool
version_added: 2.8.0
nht_data_enabled:
description:
- Specify whether the disk health data is collected as part of the AutoSupport data.
type: bool
version_added: '21.5.0'
perf_data_enabled:
description:
- Specify whether the performance data is collected as part of the AutoSupport data.
type: bool
version_added: '21.5.0'
retry_count:
description:
- Specify the maximum number of delivery attempts for an AutoSupport message.
type: int
version_added: '21.5.0'
reminder_enabled:
description:
- Specify whether AutoSupport reminders are enabled or disabled.
type: bool
version_added: '21.5.0'
max_http_size:
description:
- Specify delivery size limit for the HTTP transport protocol (in bytes).
type: int
version_added: '21.5.0'
max_smtp_size:
description:
- Specify delivery size limit for the SMTP transport protocol (in bytes).
type: int
version_added: '21.5.0'
private_data_removed:
description:
- Specify the removal of customer-supplied data.
type: bool
version_added: '21.5.0'
local_collection_enabled:
description:
- Specify whether collection of AutoSupport data when the AutoSupport daemon is disabled.
type: bool
version_added: '21.5.0'
ondemand_enabled:
description:
- Specify whether the AutoSupport OnDemand Download feature is enabled.
type: bool
version_added: '21.5.0'
validate_digital_certificate:
description:
- When set to true each node will validate the digital certificates that it receives.
type: bool
version_added: '21.5.0'
"""
EXAMPLES = """
- name: Enable autosupport
netapp.ontap.na_ontap_autosupport:
hostname: "{{ hostname }}"
username: "{{ username }}"
password: "{{ password }}"
state: present
node_name: test
transport: https
noteto: abc@def.com,def@ghi.com
mail_hosts: 1.2.3.4,5.6.7.8
support: False
post_url: url/1.0/post
- name: Modify autosupport proxy_url with password
netapp.ontap.na_ontap_autosupport:
hostname: "{{ hostname }}"
username: "{{ username }}"
password: "{{ password }}"
state: present
node_name: test
transport: https
proxy_url: username:password@host.com:8000
- name: Modify autosupport proxy_url without password
netapp.ontap.na_ontap_autosupport:
hostname: "{{ hostname }}"
username: "{{ username }}"
password: "{{ password }}"
state: present
node_name: test
transport: https
proxy_url: username@host.com:8000
- name: Disable autosupport
netapp.ontap.na_ontap_autosupport:
hostname: "{{ hostname }}"
username: "{{ username }}"
password: "{{ password }}"
state: absent
node_name: test
"""
RETURN = """
"""
import re
import traceback
from ansible.module_utils.basic import AnsibleModule
from ansible.module_utils._text import to_native
import ansible_collections.netapp.ontap.plugins.module_utils.netapp as netapp_utils
from ansible_collections.netapp.ontap.plugins.module_utils.netapp_module import NetAppModule
from ansible_collections.netapp.ontap.plugins.module_utils.netapp import OntapRestAPI
import ansible_collections.netapp.ontap.plugins.module_utils.rest_response_helpers as rrh
class NetAppONTAPasup():
"""Class with autosupport methods"""
def __init__(self):
self.argument_spec = netapp_utils.na_ontap_host_argument_spec()
self.argument_spec.update(dict(
state=dict(required=False, type='str', choices=['present', 'absent'], default='present'),
node_name=dict(required=True, type='str'),
transport=dict(required=False, type='str', choices=['smtp', 'http', 'https']),
noteto=dict(required=False, type='list', elements='str'),
post_url=dict(required=False, type='str'),
support=dict(required=False, type='bool'),
mail_hosts=dict(required=False, type='list', elements='str'),
from_address=dict(required=False, type='str'),
partner_addresses=dict(required=False, type='list', elements='str'),
to_addresses=dict(required=False, type='list', elements='str'),
# proxy_url may contain a password: user:password@url
proxy_url=dict(required=False, type='str', no_log=True),
hostname_in_subject=dict(required=False, type='bool'),
nht_data_enabled=dict(required=False, type='bool'),
perf_data_enabled=dict(required=False, type='bool'),
retry_count=dict(required=False, type='int'),
reminder_enabled=dict(required=False, type='bool'),
max_http_size=dict(required=False, type='int'),
max_smtp_size=dict(required=False, type='int'),
private_data_removed=dict(required=False, type='bool'),
local_collection_enabled=dict(required=False, type='bool'),
ondemand_enabled=dict(required=False, type='bool'),
validate_digital_certificate=dict(required=False, type='bool')
))
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)
# present or absent requires modifying state to enabled or disabled
self.parameters['service_state'] = 'started' if self.parameters['state'] == 'present' else 'stopped'
self.set_playbook_zapi_key_map()
self.rest_api = OntapRestAPI(self.module)
self.use_rest = self.rest_api.is_rest()
if not self.use_rest:
if not netapp_utils.has_netapp_lib():
self.module.fail_json(msg=netapp_utils.netapp_lib_is_required())
self.server = netapp_utils.setup_na_ontap_zapi(module=self.module)
def set_playbook_zapi_key_map(self):
self.na_helper.zapi_string_keys = {
'node_name': 'node-name',
'transport': 'transport',
'post_url': 'post-url',
'from_address': 'from',
'proxy_url': 'proxy-url'
}
self.na_helper.zapi_int_keys = {
'retry_count': 'retry-count',
'max_http_size': 'max-http-size',
'max_smtp_size': 'max-smtp-size'
}
self.na_helper.zapi_list_keys = {
'noteto': ('noteto', 'mail-address'),
'mail_hosts': ('mail-hosts', 'string'),
'partner_addresses': ('partner-address', 'mail-address'),
'to_addresses': ('to', 'mail-address')
}
self.na_helper.zapi_bool_keys = {
'support': 'is-support-enabled',
'hostname_in_subject': 'is-node-in-subject',
'nht_data_enabled': 'is-nht-data-enabled',
'perf_data_enabled': 'is-perf-data-enabled',
'reminder_enabled': 'is-reminder-enabled',
'private_data_removed': 'is-private-data-removed',
'local_collection_enabled': 'is-local-collection-enabled',
'ondemand_enabled': 'is-ondemand-enabled',
'validate_digital_certificate': 'validate-digital-certificate'
}
def get_autosupport_config(self):
"""
get current autosupport details
:return: dict()
"""
if self.use_rest:
api = "/private/cli/system/node/autosupport"
query = {
'node': self.parameters['node_name'],
'fields': 'state,node,transport,noteto,url,support,mail-hosts,from,partner-address,to,proxy-url,hostname-subj,nht,perf,retry-count,\
reminder,max-http-size,max-smtp-size,remove-private-data,ondemand-server-url,support,reminder,ondemand-state,local-collection,validate-digital-certificate'
}
message, error = self.rest_api.get(api, query)
records, error = rrh.check_for_0_or_more_records(api, message, error)
if error:
self.module.fail_json(msg=error)
asup_info = {}
for param in ('transport', 'support', 'mail_hosts', 'proxy_url', 'retry_count',
'max_http_size', 'max_smtp_size', 'noteto', 'validate_digital_certificate'):
if param in records[0]:
asup_info[param] = records[0][param]
asup_info['node_name'] = records[0]['node'] if 'node' in records[0] else ""
asup_info['post_url'] = records[0]['url'] if 'url' in records[0] else ""
asup_info['from_address'] = records[0]['from'] if 'from' in records[0] else ""
asup_info['to_addresses'] = records[0]['to'] if 'to' in records[0] else list()
asup_info['hostname_in_subject'] = records[0]['hostname_subj'] if 'hostname_subj' in records[0] else False
asup_info['nht_data_enabled'] = records[0]['nht'] if 'nht' in records[0] else False
asup_info['perf_data_enabled'] = records[0]['perf'] if 'perf' in records[0] else False
asup_info['reminder_enabled'] = records[0]['reminder'] if 'reminder' in records[0] else False
asup_info['private_data_removed'] = records[0]['remove_private_data'] if 'remove_private_data' in records[0] else False
asup_info['local_collection_enabled'] = records[0]['local_collection'] if 'local_collection' in records[0] else False
asup_info['ondemand_enabled'] = records[0]['ondemand_state'] if 'ondemand_state' in records[0] else False
asup_info['service_state'] = 'started' if records[0]['state'] else 'stopped'
asup_info['partner_addresses'] = records[0]['partner_address'] if 'partner_address' in records[0] else list()
return asup_info
else:
asup_details = netapp_utils.zapi.NaElement('autosupport-config-get')
asup_details.add_new_child('node-name', self.parameters['node_name'])
asup_info = dict()
try:
result = self.server.invoke_successfully(asup_details, enable_tunneling=True)
except netapp_utils.zapi.NaApiError as error:
self.module.fail_json(msg='%s' % to_native(error), exception=traceback.format_exc())
# zapi invoke successful
asup_attr_info = result.get_child_by_name('attributes').get_child_by_name('autosupport-config-info')
asup_info['service_state'] = 'started' if asup_attr_info['is-enabled'] == 'true' else 'stopped'
for item_key, zapi_key in self.na_helper.zapi_string_keys.items():
value = asup_attr_info.get_child_content(zapi_key)
asup_info[item_key] = value if value is not None else ""
for item_key, zapi_key in self.na_helper.zapi_int_keys.items():
value = asup_attr_info.get_child_content(zapi_key)
if value is not None:
asup_info[item_key] = self.na_helper.get_value_for_int(from_zapi=True, value=value)
for item_key, zapi_key in self.na_helper.zapi_bool_keys.items():
value = asup_attr_info.get_child_content(zapi_key)
if value is not None:
asup_info[item_key] = self.na_helper.get_value_for_bool(from_zapi=True, value=value)
for item_key, zapi_key in self.na_helper.zapi_list_keys.items():
parent, dummy = zapi_key
asup_info[item_key] = self.na_helper.get_value_for_list(from_zapi=True, zapi_parent=asup_attr_info.get_child_by_name(parent))
return asup_info
def modify_autosupport_config(self, modify):
"""
modify autosupport config
@return: modfied attributes / FAILURE with an error_message
"""
if self.use_rest:
api = "/private/cli/system/node/autosupport"
query = {
'node': self.parameters['node_name']
}
if 'service_state' in modify:
modify['state'] = True if modify['service_state'] == 'started' else False
del modify['service_state']
if 'post_url' in modify:
modify['url'] = modify.pop('post_url')
if 'from_address' in modify:
modify['from'] = modify.pop('from_address')
if 'to_addresses' in modify:
modify['to'] = modify.pop('to_addresses')
if 'hostname_in_subject' in modify:
modify['hostname_subj'] = modify.pop('hostname_in_subject')
if 'nht_data_enabled' in modify:
modify['nht'] = modify.pop('nht_data_enabled')
if 'perf_data_enabled' in modify:
modify['perf'] = modify.pop('perf_data_enabled')
if 'reminder_enabled' in modify:
modify['reminder'] = modify.pop('reminder_enabled')
if 'private_data_removed' in modify:
modify['remove_private_data'] = modify.pop('private_data_removed')
if 'local_collection_enabled' in modify:
modify['local_collection'] = modify.pop('local_collection_enabled')
if 'ondemand_enabled' in modify:
modify['ondemand_state'] = modify.pop('ondemand_enabled')
if 'partner_addresses' in modify:
modify['partner_address'] = modify.pop('partner_addresses')
dummy, error = self.rest_api.patch(api, modify, query)
if error:
self.module.fail_json(msg=error)
else:
asup_details = {'node-name': self.parameters['node_name']}
if modify.get('service_state'):
asup_details['is-enabled'] = 'true' if modify.get('service_state') == 'started' else 'false'
asup_config = netapp_utils.zapi.NaElement('autosupport-config-modify')
for item_key in modify:
if item_key in self.na_helper.zapi_string_keys:
zapi_key = self.na_helper.zapi_string_keys.get(item_key)
asup_details[zapi_key] = modify[item_key]
elif item_key in self.na_helper.zapi_int_keys:
zapi_key = self.na_helper.zapi_int_keys.get(item_key)
asup_details[zapi_key] = modify[item_key]
elif item_key in self.na_helper.zapi_bool_keys:
zapi_key = self.na_helper.zapi_bool_keys.get(item_key)
asup_details[zapi_key] = self.na_helper.get_value_for_bool(from_zapi=False, value=modify[item_key])
elif item_key in self.na_helper.zapi_list_keys:
parent_key, child_key = self.na_helper.zapi_list_keys.get(item_key)
asup_config.add_child_elem(self.na_helper.get_value_for_list(
from_zapi=False, zapi_parent=parent_key, zapi_child=child_key, data=modify.get(item_key)))
asup_config.translate_struct(asup_details)
try:
return self.server.invoke_successfully(asup_config, enable_tunneling=True)
except netapp_utils.zapi.NaApiError as error:
self.module.fail_json(msg='Error modifying asup: %s' % to_native(error), exception=traceback.format_exc())
@staticmethod
def strip_password(url):
''' if url matches user:password@address return user@address
otherwise return None
'''
if url:
needle = r'(.*):(.*)@(.*)'
matched = re.match(needle, url)
if matched:
return matched.group(1, 3)
return None, None
def idempotency_check(self, current, modify):
sanitized_modify = dict(modify)
if 'proxy_url' in modify:
user_url_m = self.strip_password(modify['proxy_url'])
user_url_c = self.strip_password(current.get('proxy_url'))
if user_url_m == user_url_c and user_url_m != (None, None):
# change in password, it can be a false positive as password is replaced with ********* by ONTAP
self.module.warn('na_ontap_autosupport is not idempotent because the password value in proxy_url cannot be compared.')
if user_url_m != (None, None):
# password was found in proxy_url, sanitize it, use something different than ZAPI *********
sanitized_modify['proxy_url'] = "%s:XXXXXXXX@%s" % user_url_m
return sanitized_modify
def ems_log_event(self):
results = netapp_utils.get_cserver(self.server)
cserver = netapp_utils.setup_na_ontap_zapi(module=self.module, vserver=results)
netapp_utils.ems_log_event("na_ontap_autosupport", cserver)
def apply(self):
"""
Apply action to autosupport
"""
if not self.use_rest:
self.ems_log_event()
current = self.get_autosupport_config()
modify = self.na_helper.get_modified_attributes(current, self.parameters)
sanitized_modify = self.idempotency_check(current, modify)
if self.na_helper.changed and not self.module.check_mode:
self.modify_autosupport_config(modify)
self.module.exit_json(changed=self.na_helper.changed, modify=sanitized_modify, current=current)
def main():
"""Execute action"""
asup_obj = NetAppONTAPasup()
asup_obj.apply()
if __name__ == '__main__':
main()