def export_attachments_to_file(self, export_file, name_list=None, device_type=None): device_templates = DeviceTemplates(self.session, self.host, self.port) vmanage_device = Device(self.session, self.host, self.port) if name_list is None: name_list = [] device_template_dict = device_templates.get_device_template_dict() attachments_list = [] # Create a device config of the right type of things device_list = [] if device_type in (None, 'controllers'): device_list = vmanage_device.get_device_config_list('controllers') if device_type in (None, 'vedges'): edge_list = vmanage_device.get_device_config_list('vedges') device_list = device_list + edge_list for device_config in device_list: if 'configStatusMessage' in device_config and device_config['configStatusMessage'] != 'In Sync': continue if 'template' in device_config: if device_config['template'] in device_template_dict: template_id = device_template_dict[device_config['template']]['templateId'] else: raise Exception(f"Could not find ID for template {device_config['template']}") if name_list == [] or device_config['host-name'] in name_list: variable_dict = {} template_input = device_templates.get_template_input(template_id, device_id_list=[device_config['uuid']]) data = template_input['data'][0] for column in template_input['columns']: variable_dict[column['variable']] = data[column['property']] entry = { 'host_name': device_config['host-name'], 'device_type': device_config['deviceType'], 'uuid': device_config['chasisNumber'], 'system_ip': device_config['deviceIP'], 'site_id': device_config['site-id'], 'template': device_config['template'], 'variables': variable_dict } attachments_list.append(entry) attachment_export = {'vmanage_attachments': attachments_list} if export_file.endswith('.json'): with open(export_file, 'w') as outfile: json.dump(attachment_export, outfile, indent=4, sort_keys=False) elif export_file.endswith(('.yaml', 'yml')): with open(export_file, 'w') as outfile: yaml.dump(attachment_export, outfile, indent=4, sort_keys=False) else: raise Exception("File format not supported") return (len(attachments_list))
def run_module(): # define available arguments/parameters a user can pass to the module argument_spec = vmanage_argument_spec() argument_spec.update(state=dict(type='str', choices=['absent', 'present'], default='present'), name=dict(type='str', alias='templateName'), description=dict(type='str', alias='templateDescription'), templates=dict(type='str', alias='generalTemplates'), device_type=dict(type='list', alias='deviceType'), config_type=dict(type='list', alias='configType'), update=dict(type='bool', defaut=True), factory_default=dict(type='bool', alias='factoryDefault'), aggregate=dict(type='list'), push=dict(type='bool', default=False)) # seed the result dict in the object # we primarily care about changed and state # change is if this module effectively modified the target # state will include any data that you want your module to pass back # for consumption, for example, in a subsequent task result = dict(changed=False, ) # the AnsibleModule object will be our abstraction working with Ansible # this includes instantiation, a couple of common attr would be the # args/params passed to the execution, as well as if the module # supports check mode module = AnsibleModule( argument_spec=argument_spec, supports_check_mode=True, ) vmanage = Vmanage(module) vmanage_device_templates = DeviceTemplates(vmanage.auth, vmanage.host) vmanage_template_data = TemplateData(vmanage.auth, vmanage.host) # Always as an aggregate... make a list if just given a single entry if vmanage.params['aggregate']: device_template_list = vmanage.params['aggregate'] else: if vmanage.params['state'] == 'present': device_template_list = [{ 'templateName': vmanage.params['name'], 'templateDescription': vmanage.params['description'], 'deviceType': vmanage.params['device_type'], 'configType': vmanage.params['config_type'], 'factoryDefault': vmanage.params['factory_default'], 'generalTemplates': vmanage.params['templates'], }] else: device_template_list = [{ 'templateName': vmanage.params['name'], 'state': 'absent' }] device_template_updates = [] if vmanage.params['state'] == 'present': device_template_updates = vmanage_template_data.import_device_template_list( device_template_list, check_mode=module.check_mode, update=vmanage.params['update'], push=vmanage.params['push']) if device_template_updates: vmanage.result['changed'] = True else: device_template_dict = vmanage_device_templates.get_device_template_dict( factory_default=True, remove_key=False) for device_template in device_template_list: if device_template['templateName'] in device_template_dict: if not module.check_mode: vmanage_device_templates.delete_device_template( device_template_dict[ device_template['templateName']]['templateId']) vmanage.result['changed'] = True vmanage.result['updates'] = device_template_updates vmanage.exit_json(**vmanage.result)
class TemplateData(object): """Methods that deal with importing, exporting, and converting data from templates. """ def __init__(self, session, host, port=443): """Initialize Templates Method object with session parameters. Args: session (obj): Requests Session object host (str): hostname or IP address of vManage port (int): default HTTPS 443 """ self.session = session self.host = host self.port = port self.base_url = f'https://{self.host}:{self.port}/dataservice/' self.device_templates = DeviceTemplates(self.session, self.host, self.port) self.feature_templates = FeatureTemplates(self.session, self.host, self.port) def convert_device_template_to_name(self, device_template): """Convert a device template objects from IDs to Names. Args: device_template (dict): Device Template Returns: result (dict): Converted Device Template. """ feature_template_dict = self.feature_templates.get_feature_template_dict( factory_default=True, key_name='templateId') if 'policyId' in device_template and device_template['policyId']: policy_id = device_template['policyId'] vmanage_local_policy = LocalPolicy(self.session, self.host, self.port) local_policy_dict = vmanage_local_policy.get_local_policy_dict( key_name='policyId') if policy_id in list(local_policy_dict.keys()): device_template['policyName'] = local_policy_dict[policy_id][ 'policyName'] else: raise Exception(f"Could not find local policy {policy_id}") if 'securityPolicyId' in device_template and device_template[ 'securityPolicyId']: security_policy_id = device_template['securityPolicyId'] vmanage_security_policy = SecurityPolicy(self.session, self.host, self.port) security_policy_dict = vmanage_security_policy.get_security_policy_dict( key_name='policyId') if security_policy_id in list(security_policy_dict.keys()): device_template['securityPolicyName'] = security_policy_dict[ security_policy_id]['policyName'] else: raise Exception( f"Could not find security policy {security_policy_id}") if 'generalTemplates' in device_template: generalTemplates = [] for old_template in device_template.pop('generalTemplates'): new_template = { 'templateName': feature_template_dict[old_template['templateId']] ['templateName'], 'templateType': old_template['templateType'] } if 'subTemplates' in old_template: subTemplates = self.subTemplates_to_name( old_template, feature_template_dict) new_template['subTemplates'] = subTemplates generalTemplates.append(new_template) device_template['generalTemplates'] = generalTemplates return device_template def convert_device_template_to_id(self, device_template): """Convert a device template objects from Names to IDs. Args: device_template (dict): Device Template Returns: result (dict): Converted Device Template. """ if 'policyName' in device_template: vmanage_local_policy = LocalPolicy(self.session, self.host, self.port) local_policy_dict = vmanage_local_policy.get_local_policy_dict( key_name='policyName') if device_template['policyName'] in local_policy_dict: device_template['policyId'] = local_policy_dict[ device_template['policyName']]['policyId'] device_template.pop('policyName') else: raise Exception( f"Could not find local policy {device_template['policyName']}" ) else: device_template['policyId'] = '' if 'securityPolicyName' in device_template: vmanage_security_policy = SecurityPolicy(self.session, self.host, self.port) security_policy_dict = vmanage_security_policy.get_security_policy_dict( key_name='policyName') if device_template['securityPolicyName'] in security_policy_dict: device_template['securityPolicyId'] = security_policy_dict[ device_template['securityPolicyName']]['policyId'] device_template.pop('securityPolicyName') else: raise Exception( f"Could not find security policy {device_template['securityPolicyName']}" ) else: device_template['securityPolicyId'] = '' if 'generalTemplates' in device_template: device_template['generalTemplates'] = self.generalTemplates_to_id( device_template['generalTemplates']) return device_template def generalTemplates_to_id(self, generalTemplates): """Convert a generalTemplates object from Names to IDs. Args: generalTemplates (dict): generalTemplates object Returns: result (dict): Converted generalTemplates object. """ converted_generalTemplates = [] feature_template_dict = self.feature_templates.get_feature_template_dict( factory_default=True) for template in generalTemplates: if 'templateName' not in template: self.result['generalTemplates'] = generalTemplates self.fail_json(msg="Bad template") if template['templateName'] in feature_template_dict: template_item = { 'templateId': feature_template_dict[template['templateName']] ['templateId'], 'templateType': template['templateType'] } if 'subTemplates' in template: subTemplates = self.subTemplates_to_id( template, feature_template_dict) template_item['subTemplates'] = subTemplates converted_generalTemplates.append(template_item) else: self.fail_json( msg="There is no existing feature template named {0}". format(template['templateName'])) return converted_generalTemplates def import_feature_template_list(self, feature_template_list, check_mode=False, update=False): """Import a list of feature templates from list to vManage. Object Names are converted to IDs. Args: feature_template_list (list): List of feature templates check_mode (bool): Only check to see if changes would be made update (bool): Update the template if it exists Returns: result (list): Returns the diffs of the updates. """ # Process the feature templates feature_template_updates = [] feature_template_dict = self.feature_templates.get_feature_template_dict( factory_default=True, remove_key=False) for feature_template in feature_template_list: if 'templateId' in feature_template: feature_template.pop('templateId') if feature_template['templateName'] in feature_template_dict: existing_template = feature_template_dict[ feature_template['templateName']] feature_template['templateId'] = existing_template[ 'templateId'] diff = list( dictdiffer.diff(existing_template['templateDefinition'], feature_template['templateDefinition'])) if len(diff): feature_template_updates.append({ 'name': feature_template['templateName'], 'diff': diff }) if not check_mode and update: self.feature_templates.update_feature_template( feature_template) else: diff = list( dictdiffer.diff({}, feature_template['templateDefinition'])) feature_template_updates.append({ 'name': feature_template['templateName'], 'diff': diff }) if not check_mode: self.feature_templates.add_feature_template( feature_template) return feature_template_updates def export_device_template_list(self, factory_default=False, name_list=None): """Export device templates from vManage into a list. Object IDs are converted to Names. Args: factory_default (bool): Include factory default name_list (list of strings): A list of template names to retreive. Returns: result (dict): All data associated with a response. """ if name_list is None: name_list = [] device_template_list = self.device_templates.get_device_templates() return_list = [] #pylint: disable=too-many-nested-blocks for device_template in device_template_list: # If there is a list of template name, only return the ones asked for. # Otherwise, return them all if name_list and device_template['templateName'] not in name_list: continue obj = self.device_templates.get_device_template_object( device_template['templateId']) if obj: if not factory_default and obj['factoryDefault']: continue obj['templateId'] = device_template['templateId'] # obj['attached_devices'] = self.get_template_attachments(device['templateId']) # obj['input'] = self.get_template_input(device['templateId']) converted_device_template = self.convert_device_template_to_name( obj) return_list.append(converted_device_template) return return_list def import_device_template_list(self, device_template_list, check_mode=False, update=False): """Import a list of device templates from list to vManage. Object Names are converted to IDs. Args: device_template_list (list): List of device templates check_mode (bool): Only check to see if changes would be made update (bool): Update the template if it exists Returns: result (list): Returns the diffs of the updates. """ device_template_updates = [] device_template_dict = self.device_templates.get_device_template_dict() diff = [] for device_template in device_template_list: if 'policyId' in device_template: device_template.pop('policyId') if 'securityPolicyId' in device_template: device_template.pop('securityPolicyId') if device_template['templateName'] in device_template_dict: existing_template = self.convert_device_template_to_name( device_template_dict[device_template['templateName']]) device_template['templateId'] = existing_template['templateId'] # Just check the things that we care about changing. diff_ignore = set([ 'templateId', 'policyId', 'connectionPreferenceRequired', 'connectionPreference', 'templateName', 'attached_devices', 'input', 'securityPolicyId' ]) diff = list( dictdiffer.diff(existing_template, device_template, ignore=diff_ignore)) if len(diff): device_template_updates.append({ 'name': device_template['templateName'], 'diff': diff }) if not check_mode and update: if not check_mode: converted_device_template = self.convert_device_template_to_id( device_template) self.device_templates.update_device_template( converted_device_template) else: if 'generalTemplates' in device_template: diff = list( dictdiffer.diff({}, device_template['generalTemplates'])) elif 'templateConfiguration' in device_template: diff = list( dictdiffer.diff( {}, device_template['templateConfiguration'])) else: raise Exception("Template {0} is of unknown type".format( device_template['templateName'])) device_template_updates.append({ 'name': device_template['templateName'], 'diff': diff }) if not check_mode: converted_device_template = self.convert_device_template_to_id( device_template) self.device_templates.add_device_template( converted_device_template) return device_template_updates def import_attachment_list(self, attachment_list, check_mode=False, update=False): """Import a list of device attachments to vManage. Args: attachment_list (list): List of attachments check_mode (bool): Only check to see if changes would be made update (bool): Update the template if it exists Returns: result (list): Returns the diffs of the updates. """ attachment_updates = {} attachment_failures = {} action_id_list = [] device_template_dict = self.device_templates.get_device_template_dict() vmanage_device = Device(self.session, self.host, self.port) for attachment in attachment_list: if attachment['template'] in device_template_dict: if attachment['device_type'] == 'vedge': # The UUID is fixes from the serial file/upload device_uuid = attachment['uuid'] else: # If this is not a vedge, we need to get the UUID from the vmanage since # it is generated by that vmanage device_status = vmanage_device.get_device_status( attachment['host_name'], key='host-name') if device_status: device_uuid = device_status['uuid'] else: raise Exception( f"Cannot find UUID for {attachment['host_name']}") template_id = device_template_dict[ attachment['template']]['templateId'] attached_uuid_list = self.device_templates.get_attachments( template_id, key='uuid') if device_uuid in attached_uuid_list: # The device is already attached to the template. We need to see if any of # the input changed, so we make an API call to get the input on last attach existing_template_input = self.device_templates.get_template_input( device_template_dict[attachment['template']] ['templateId'], [device_uuid]) current_variables = existing_template_input['data'][0] changed = False for property_name in attachment['variables']: # Check to see if any of the passed in varibles have changed from what is # already on the attachment. We are are not checking to see if the # correct variables are here. That will be done on attachment. if ((property_name in current_variables) and (str(attachment['variables'][property_name]) != str(current_variables[property_name]))): changed = True if changed: if not check_mode and update: action_id = self.device_templates.attach_to_template( template_id, device_uuid, attachment['system_ip'], attachment['host_name'], attachment['site_id'], attachment['variables']) action_id_list.append(action_id) else: if not check_mode: action_id = self.device_templates.attach_to_template( template_id, device_uuid, attachment['system_ip'], attachment['host_name'], attachment['site_id'], attachment['variables']) action_id_list.append(action_id) else: raise Exception(f"No template named {attachment['template']}") utilities = Utilities(self.session, self.host) # Batch the waits so that the peocessing of the attachments is in parallel for action_id in action_id_list: result = utilities.waitfor_action_completion(action_id) data = result['action_response']['data'][0] if result['action_status'] == 'failure': attachment_failures.update( {data['uuid']: data['currentActivity']}) else: attachment_updates.update( {data['uuid']: data['currentActivity']}) result = { 'updates': attachment_updates, 'failures': attachment_failures } return result def subTemplates_to_name(self, old_template, feature_template_dict): """Convert a Sub Template objects from IDs to Names. Args: old_template (dict): a device template feature_template_dict (dict): dict of all the feature templates Returns: result (dict): Converted Device Template. """ subTemplates = [] for sub_template in old_template['subTemplates']: if 'subTemplates' in sub_template: subsubTemplates = [] for sub_sub_template in sub_template['subTemplates']: subsubTemplates.append({ 'templateName': feature_template_dict[sub_sub_template['templateId']] ['templateName'], 'templateType': sub_sub_template['templateType'] }) subTemplates.append({ 'templateName': feature_template_dict[sub_template['templateId']] ['templateName'], 'templateType': sub_template['templateType'], 'subTemplates': subsubTemplates }) else: subTemplates.append({ 'templateName': feature_template_dict[sub_template['templateId']] ['templateName'], 'templateType': sub_template['templateType'] }) return (subTemplates) def subTemplates_to_id(self, template, feature_template_dict): """Convert a Sub Template objects from IDs to Names. Args: template (dict): a device template feature_template_dict (dict): dict of all the feature templates Returns: result (dict): Converted Device Template. """ subTemplates = [] for sub_template in template['subTemplates']: if sub_template[ 'templateName'] in feature_template_dict and 'subTemplates' in sub_template: subsubTemplates = [] for sub_sub_template in sub_template['subTemplates']: if sub_sub_template[ 'templateName'] in feature_template_dict: subsubTemplates.append({ 'templateId': feature_template_dict[sub_sub_template[ 'templateName']]['templateId'], 'templateType': sub_sub_template['templateType'] }) else: self.fail_json( msg="There is no existing feature template named {0}" .format(sub_sub_template['templateName'])) subTemplates.append({ 'templateId': feature_template_dict[sub_template['templateName']] ['templateId'], 'templateType': sub_template['templateType'], 'subTemplates': subsubTemplates }) elif sub_template['templateName'] in feature_template_dict: subTemplates.append({ 'templateId': feature_template_dict[sub_template['templateName']] ['templateId'], 'templateType': sub_template['templateType'] }) else: self.fail_json( msg="There is no existing feature template named {0}". format(sub_template['templateName'])) return (subTemplates)
class Files(object): """Read and write data to file. """ def __init__(self, session, host, port=443): """Initialize Files object with session parameters. Args: session (obj): Requests Session object host (str): hostname or IP address of vManage port (int): default HTTPS 443 """ self.session = session self.host = host self.port = port self.base_url = f'https://{self.host}:{self.port}/dataservice/' self.device_templates = DeviceTemplates(self.session, self.host, self.port) self.feature_templates = FeatureTemplates(self.session, self.host, self.port) self.template_data = TemplateData(self.session, self.host, self.port) self.policy_data = PolicyData(self.session, self.host, self.port) self.policy_lists = PolicyLists(self.session, self.host, self.port) self.policy_definitions = PolicyDefinitions(self.session, self.host, self.port) self.local_policy = LocalPolicy(self.session, self.host, self.port) self.central_policy = CentralPolicy(self.session, self.host, self.port) self.security_policy = SecurityPolicy(self.session, self.host, self.port) self.vmanage_device = Device(self.session, self.host, self.port) def export_templates_to_file(self, export_file, name_list=None, template_type=None): """Export templates to a file. All object IDs will be translated to names. Use a '.yml' extention to export as YAML and a '.json' extension to export as JSON. Args: export_file (str): The name of the export file name_list (list): List of device templates to export template_type (str): Template type: device or template """ template_export = {} #pylint: disable=too-many-nested-blocks if template_type != 'feature': # Export the device templates and associated feature templates device_template_list = self.template_data.export_device_template_list(name_list=name_list) template_export.update({'vmanage_device_templates': device_template_list}) feature_name_list = [] if name_list: for device_template in device_template_list: if 'generalTemplates' in device_template: for general_template in device_template['generalTemplates']: if 'templateName' in general_template: feature_name_list.append(general_template['templateName']) if 'subTemplates' in general_template: for sub_template in general_template['subTemplates']: if 'templateName' in sub_template: feature_name_list.append(sub_template['templateName']) name_list = list(set(feature_name_list)) # Since device templates depend on feature templates, we always add them. feature_template_list = self.feature_templates.get_feature_template_list(name_list=name_list) template_export.update({'vmanage_feature_templates': feature_template_list}) if export_file.endswith('.json'): with open(export_file, 'w') as outfile: json.dump(template_export, outfile, indent=4, sort_keys=False) elif export_file.endswith('.yaml') or export_file.endswith('.yml'): with open(export_file, 'w') as outfile: yaml.dump(template_export, outfile, indent=4, sort_keys=False) else: raise Exception("File format not supported") #pylint: disable=unused-argument def import_templates_from_file(self, import_file, update=False, check_mode=False, name_list=None, template_type=None): """Import templates from a file. All object Names will be translated to IDs. Args: import_file (str): The name of the import file name_list (list): List of device templates to export template_type (str): Template type: device or template check_mode (bool): Try the import, but don't make changes (default: False) update (bool): Update existing templates (default: False) """ feature_template_updates = [] device_template_updates = [] imported_template_data = {} # Read in the datafile if not os.path.exists(import_file): raise Exception(f"Cannot find file {import_file}") with open(import_file) as f: if import_file.endswith('.yaml') or import_file.endswith('.yml'): imported_template_data = yaml.safe_load(f) else: imported_template_data = json.load(f) if 'vmanage_feature_templates' in imported_template_data: imported_feature_template_list = imported_template_data['vmanage_feature_templates'] else: imported_feature_template_list = [] imported_device_template_list = [] #pylint: disable=too-many-nested-blocks if template_type != 'feature': # Import the device templates and associated feature templates if 'vmanage_device_templates' in imported_template_data: imported_device_template_list = imported_template_data['vmanage_device_templates'] if name_list: feature_name_list = [] pruned_device_template_list = [] for device_template in imported_device_template_list: if device_template['templateName'] in name_list: pruned_device_template_list.append(device_template) if 'generalTemplates' in device_template: for general_template in device_template['generalTemplates']: if 'templateName' in general_template: feature_name_list.append(general_template['templateName']) if 'subTemplates' in general_template: for sub_template in general_template['subTemplates']: if 'templateName' in sub_template: feature_name_list.append(sub_template['templateName']) imported_device_template_list = pruned_device_template_list name_list = list(set(feature_name_list)) # Since device templates depend on feature templates, we always add them. if name_list: pruned_feature_template_list = [] imported_feature_template_dict = list_to_dict(imported_feature_template_list, key_name='templateName', remove_key=False) for feature_template_name in name_list: if feature_template_name in imported_feature_template_dict: pruned_feature_template_list.append(imported_feature_template_dict[feature_template_name]) # Otherwise, we hope the feature list is already there (e.g. Factory Default) imported_feature_template_list = pruned_feature_template_list # Process the feature templates feature_template_updates = self.template_data.import_feature_template_list(imported_feature_template_list, check_mode=check_mode, update=update) # Process the device templates device_template_updates = self.template_data.import_device_template_list(imported_device_template_list, check_mode=check_mode, update=update) return { 'feature_template_updates': feature_template_updates, 'device_template_updates': device_template_updates, } # # Policy # def export_policy_to_file(self, export_file): """Export policy to a file. All object IDs will be translated to names. Use a '.yml' extention to export as YAML and a '.json' extension to export as JSON. Args: export_file (str): The name of the export file """ policy_lists_list = self.policy_lists.get_policy_list_list() policy_definitions_list = self.policy_data.export_policy_definition_list() central_policies_list = self.policy_data.export_central_policy_list() local_policies_list = self.local_policy.get_local_policy_list() security_policies_list = self.policy_data.export_security_policy_list() policy_export = { 'vmanage_policy_lists': policy_lists_list, 'vmanage_policy_definitions': policy_definitions_list, 'vmanage_central_policies': central_policies_list, 'vmanage_local_policies': local_policies_list, 'vmanage_security_policies': security_policies_list } if export_file.endswith('.json'): with open(export_file, 'w') as outfile: json.dump(policy_export, outfile, indent=4, sort_keys=False) elif export_file.endswith(('.yaml', 'yml')): with open(export_file, 'w') as outfile: yaml.dump(policy_export, outfile, default_flow_style=False) else: raise Exception("File format not supported") def import_policy_from_file(self, file, update=False, check_mode=False, push=False): """Import policy from a file. All object Names will be translated to IDs. Args: import_file (str): The name of the import file check_mode (bool): Try the import, but don't make changes (default: False) update (bool): Update existing templates (default: False) push (bool): Push tempaltes to devices if changed (default: False) """ policy_list_updates = [] policy_definition_updates = [] central_policy_updates = [] local_policy_updates = [] security_policy_updates = [] # Read in the datafile if not os.path.exists(file): raise Exception('Cannot find file {0}'.format(file)) with open(file) as f: if file.endswith('.yaml') or file.endswith('.yml'): policy_data = yaml.safe_load(f) else: policy_data = json.load(f) # Separate the feature template data from the device template data if 'vmanage_policy_lists' in policy_data: policy_list_data = policy_data['vmanage_policy_lists'] else: policy_list_data = [] if 'vmanage_policy_definitions' in policy_data: policy_definition_data = policy_data['vmanage_policy_definitions'] else: policy_definition_data = [] if 'vmanage_central_policies' in policy_data: central_policy_data = policy_data['vmanage_central_policies'] else: central_policy_data = [] if 'vmanage_local_policies' in policy_data: local_policy_data = policy_data['vmanage_local_policies'] else: local_policy_data = [] if 'vmanage_security_policies' in policy_data: security_policy_data = policy_data['vmanage_security_policies'] else: security_policy_data = [] policy_list_updates = self.policy_data.import_policy_list_list(policy_list_data, check_mode=check_mode, update=update, push=push) self.policy_lists.clear_policy_list_cache() policy_definition_updates = self.policy_data.import_policy_definition_list(policy_definition_data, check_mode=check_mode, update=update, push=push) central_policy_updates = self.policy_data.import_central_policy_list(central_policy_data, check_mode=check_mode, update=update, push=push) local_policy_updates = self.policy_data.import_local_policy_list(local_policy_data, check_mode=check_mode, update=update, push=push) security_policy_updates = self.policy_data.import_security_policy_list(security_policy_data, check_mode=check_mode, update=update, push=push) return { 'policy_list_updates': policy_list_updates, 'policy_definition_updates': policy_definition_updates, 'central_policy_updates': central_policy_updates, 'local_policy_updates': local_policy_updates, 'security_policy_updates': security_policy_updates } def export_attachments_to_file(self, export_file, name_list=None, device_type=None): """Export attachments to a file. All object IDs will be translated to names. Use a '.yml' extention to export as YAML and a '.json' extension to export as JSON. Args: export_file (str): The name of the export file """ if name_list is None: name_list = [] device_template_dict = self.device_templates.get_device_template_dict() attachments_list = [] # Create a device config of the right type of things device_list = [] if device_type in (None, 'controllers'): device_list = self.vmanage_device.get_device_config_list('controllers') if device_type in (None, 'vedges'): edge_list = self.vmanage_device.get_device_config_list('vedges') device_list = device_list + edge_list for device_config in device_list: if 'configStatusMessage' in device_config and device_config['configStatusMessage'] != 'In Sync': continue if 'template' in device_config: if device_config['template'] in device_template_dict: template_id = device_template_dict[device_config['template']]['templateId'] else: raise Exception(f"Could not find ID for template {device_config['template']}") if name_list == [] or device_config.get('host-name') in name_list: variable_dict = {} template_input = self.device_templates.get_template_input(template_id, device_id_list=[device_config['uuid']]) data = template_input['data'][0] for column in template_input['columns']: variable_dict[column['variable']] = data[column['property']] entry = { 'host_name': device_config.get('host-name'), 'device_type': device_config['deviceType'], 'uuid': device_config['chasisNumber'], 'system_ip': device_config['deviceIP'], 'site_id': device_config.get('site-id'), 'template': device_config['template'], 'variables': variable_dict } attachments_list.append(entry) attachment_export = {'vmanage_attachments': attachments_list} if export_file.endswith('.json'): with open(export_file, 'w') as outfile: json.dump(attachment_export, outfile, indent=4, sort_keys=False) elif export_file.endswith(('.yaml', 'yml')): with open(export_file, 'w') as outfile: yaml.dump(attachment_export, outfile, indent=4, sort_keys=False) else: raise Exception("File format not supported") return (len(attachments_list)) def import_attachments_from_file(self, import_file, update=False, check_mode=False, name_list=None, template_type=None): """Import policy from a file. All object Names will be translated to IDs. Args: import_file (str): The name of the import file check_mode (bool): Try the import, but don't make changes (default: False) update (bool): Update existing templates (default: False) """ template_data = {} # Read in the datafile if not os.path.exists(import_file): raise Exception(f"Cannot find file {import_file}") with open(import_file) as f: if import_file.endswith('.yaml') or import_file.endswith('.yml'): template_data = yaml.safe_load(f) else: template_data = json.load(f) if 'vmanage_attachments' in template_data: imported_attachment_list = template_data['vmanage_attachments'] else: imported_attachment_list = [] # Process the device templates result = self.template_data.import_attachment_list(imported_attachment_list, check_mode=check_mode, update=update) return result