nornir-collection 0.0.2__py3-none-any.whl → 0.0.3__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- nornir_collection/batfish/assert_config.py +1 -5
- nornir_collection/batfish/utils.py +0 -2
- nornir_collection/cisco/configuration_management/cli/config_tasks.py +0 -8
- nornir_collection/cisco/configuration_management/cli/config_workflow.py +0 -1
- nornir_collection/cisco/configuration_management/cli/show_tasks.py +3 -7
- nornir_collection/cisco/configuration_management/netconf/config_tasks.py +3 -14
- nornir_collection/cisco/configuration_management/netconf/config_workflow.py +1 -6
- nornir_collection/cisco/configuration_management/netconf/nr_cfg_iosxe_netconf.py +0 -2
- nornir_collection/cisco/configuration_management/netconf/ops_tasks.py +2 -7
- nornir_collection/cisco/configuration_management/processor.py +2 -3
- nornir_collection/cisco/configuration_management/pyats.py +0 -2
- nornir_collection/cisco/configuration_management/restconf/cisco_rpc.py +1 -9
- nornir_collection/cisco/configuration_management/restconf/config_workflow.py +1 -3
- nornir_collection/cisco/configuration_management/restconf/tasks.py +2 -5
- nornir_collection/cisco/configuration_management/utils.py +1 -4
- nornir_collection/cisco/software_upgrade/cisco_software_upgrade.py +0 -3
- nornir_collection/cisco/software_upgrade/utils.py +5 -16
- nornir_collection/cisco/support_api/api_calls.py +1 -7
- nornir_collection/cisco/support_api/cisco_maintenance_report.py +0 -2
- nornir_collection/cisco/support_api/cisco_support.py +0 -9
- nornir_collection/cisco/support_api/reports.py +1 -9
- nornir_collection/cisco/support_api/utils.py +0 -4
- nornir_collection/fortinet/utils.py +0 -1
- nornir_collection/git.py +3 -4
- nornir_collection/netbox/custom_script.py +1 -4
- nornir_collection/netbox/inventory.py +1 -4
- nornir_collection/netbox/scan_prefixes_and_update_ip_addresses.py +3 -8
- nornir_collection/netbox/set_device_status.py +0 -1
- nornir_collection/netbox/sync_datasource.py +0 -1
- nornir_collection/netbox/update_cisco_inventory_data.py +1 -3
- nornir_collection/netbox/update_cisco_support_plugin_data.py +0 -4
- nornir_collection/netbox/update_fortinet_inventory_data.py +1 -3
- nornir_collection/netbox/update_purestorage_inventory_data.py +1 -3
- nornir_collection/netbox/utils.py +1 -4
- nornir_collection/netbox/verify_device_primary_ip.py +1 -4
- nornir_collection/nornir_plugins/inventory/netbox.py +3 -8
- nornir_collection/nornir_plugins/inventory/staggered_yaml.py +0 -2
- nornir_collection/nornir_plugins/inventory/utils.py +1 -3
- nornir_collection/purestorage/utils.py +1 -2
- nornir_collection/utils.py +8 -14
- {nornir_collection-0.0.2.dist-info → nornir_collection-0.0.3.dist-info}/METADATA +3 -4
- nornir_collection-0.0.3.dist-info/RECORD +59 -0
- nornir_collection-0.0.2.dist-info/RECORD +0 -59
- {nornir_collection-0.0.2.dist-info → nornir_collection-0.0.3.dist-info}/LICENSE +0 -0
- {nornir_collection-0.0.2.dist-info → nornir_collection-0.0.3.dist-info}/WHEEL +0 -0
- {nornir_collection-0.0.2.dist-info → nornir_collection-0.0.3.dist-info}/top_level.txt +0 -0
@@ -10,7 +10,6 @@ The functions are ordered as followed:
|
|
10
10
|
- Nornir Tasks in regular Function
|
11
11
|
"""
|
12
12
|
|
13
|
-
|
14
13
|
from typing import Any, Union
|
15
14
|
import pypureclient
|
16
15
|
from nornir.core.task import Task, Result
|
@@ -37,7 +36,7 @@ def _purestorage_get_connection(task: Task) -> Union[Any, Result]:
|
|
37
36
|
# Return the connection object
|
38
37
|
return conn
|
39
38
|
|
40
|
-
except Exception as error:
|
39
|
+
except Exception as error:
|
41
40
|
# Return the Nornir result as failed
|
42
41
|
result = (
|
43
42
|
f"'{task.name}' -> APIResponse <Success: False>\n"
|
nornir_collection/utils.py
CHANGED
@@ -130,7 +130,6 @@ def load_multiple_yaml_files_to_string(file_list: list, silent: bool = False) ->
|
|
130
130
|
"""
|
131
131
|
This function loads multiple yaml files into a string
|
132
132
|
"""
|
133
|
-
# pylint: disable=invalid-name
|
134
133
|
|
135
134
|
task_text = "Load multiple yaml files to string"
|
136
135
|
yaml_string = str()
|
@@ -233,7 +232,7 @@ def construct_filename_with_current_date(filename: str, name: Union[str, None],
|
|
233
232
|
return filename
|
234
233
|
|
235
234
|
|
236
|
-
def get_pandas_column_width(df: DataFrame) -> List[int]:
|
235
|
+
def get_pandas_column_width(df: DataFrame) -> List[int]:
|
237
236
|
"""
|
238
237
|
Helper function to get the width of each pandas dataframe column.
|
239
238
|
"""
|
@@ -352,7 +351,6 @@ def nr_filter_by_role_and_tag(
|
|
352
351
|
"""
|
353
352
|
TBD
|
354
353
|
"""
|
355
|
-
# pylint: disable=invalid-name
|
356
354
|
|
357
355
|
if not task_text:
|
358
356
|
task_text = "NORNIR filter inventory"
|
@@ -395,7 +393,6 @@ def nr_filter_by_hosts(nr: Nornir, hosts: Union[str, list], task_text: str = Non
|
|
395
393
|
"""
|
396
394
|
TBD
|
397
395
|
"""
|
398
|
-
# pylint: disable=invalid-name
|
399
396
|
|
400
397
|
if not task_text:
|
401
398
|
task_text = "NORNIR filter inventory"
|
@@ -440,7 +437,6 @@ def nr_filter_args(nr: Nornir, args: argparse.Namespace) -> Nornir:
|
|
440
437
|
creates a correct inventory filtering will be verified. The new filtered Nornir object will be returned
|
441
438
|
or the script terminates with an error message.
|
442
439
|
"""
|
443
|
-
# pylint: disable=invalid-name
|
444
440
|
|
445
441
|
task_text = "NORNIR filter inventory"
|
446
442
|
print_task_name(task_text)
|
@@ -473,7 +469,6 @@ def nr_filter_inventory_from_host_list(nr: Nornir, filter_reason: str, host_list
|
|
473
469
|
function checks if the hostname from the Nornir object is in that host list or list of strings. Every host
|
474
470
|
that matches will be added to the new filter target and the new filtered Nornir object will be returned.
|
475
471
|
"""
|
476
|
-
# pylint: disable=invalid-name
|
477
472
|
|
478
473
|
task_text = "NORNIR re-filter inventory"
|
479
474
|
print_task_name(task_text)
|
@@ -650,27 +645,27 @@ def _print_individual_result(
|
|
650
645
|
for attribute in attrs:
|
651
646
|
item = getattr(result, attribute, "")
|
652
647
|
if isinstance(item, BaseException):
|
653
|
-
# Deviation to print the
|
648
|
+
# Deviation to print the nornir_collection task_result function
|
654
649
|
print(task_result(text=result.name, changed=changed, level_name=level_name, failed=failed))
|
655
650
|
# for consistency between py3.6 and py3.7
|
656
651
|
print(f"{item.__class__.__name__}{item.args}")
|
657
652
|
|
658
|
-
# Deviation to print the
|
653
|
+
# Deviation to print the nornir_collection task_result function
|
659
654
|
elif item and result_sub_list and isinstance(item, list):
|
660
655
|
for list_item in item:
|
661
656
|
print(list_item)
|
662
657
|
|
663
658
|
elif item and not isinstance(item, str):
|
664
659
|
if isinstance(item, OrderedDict):
|
665
|
-
# Deviation to print the
|
660
|
+
# Deviation to print the nornir_collection task_result function
|
666
661
|
print(task_result(text=result.name, changed=changed, level_name=level_name, failed=failed))
|
667
662
|
print(json.dumps(item, indent=4))
|
668
663
|
else:
|
669
|
-
# Deviation to print the
|
664
|
+
# Deviation to print the nornir_collection task_result function
|
670
665
|
print(task_result(text=result.name, changed=changed, level_name=level_name, failed=failed))
|
671
666
|
pprint.pprint(item, indent=4)
|
672
667
|
elif item:
|
673
|
-
# Deviation to print the
|
668
|
+
# Deviation to print the nornir_collection task_result function
|
674
669
|
print(task_result(text=result.name, changed=changed, level_name=level_name, failed=failed))
|
675
670
|
print(item)
|
676
671
|
|
@@ -692,12 +687,12 @@ def _print_result(
|
|
692
687
|
attrs = [attrs]
|
693
688
|
|
694
689
|
if isinstance(result, AggregatedResult):
|
695
|
-
# Deviation to print the
|
690
|
+
# Deviation to print the nornir_collection print_task_name function
|
696
691
|
print_task_name(text=result.name)
|
697
692
|
|
698
693
|
for host, host_data in sorted(result.items()):
|
699
694
|
changed = "" if host_data.changed is None else host_data.changed
|
700
|
-
# Deviation to print the
|
695
|
+
# Deviation to print the nornir_collection task_host function
|
701
696
|
print(task_host(host=host, changed=changed))
|
702
697
|
# Recursion to print all MultiResult objects of the Nornir AggregatedResult object
|
703
698
|
_print_result(host_data, result_sub_list, attrs, failed, severity_level)
|
@@ -731,7 +726,6 @@ def print_result(
|
|
731
726
|
failed: if ``True`` assume the task failed
|
732
727
|
severity_level: Print only errors with this severity level or higher
|
733
728
|
"""
|
734
|
-
# pylint: disable=consider-using-with
|
735
729
|
|
736
730
|
lock = threading.Lock()
|
737
731
|
lock.acquire()
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.2
|
2
2
|
Name: nornir-collection
|
3
|
-
Version: 0.0.
|
3
|
+
Version: 0.0.3
|
4
4
|
Summary: Nornir-Collection contains network automation functions and complete IaC workflows with Nornir and other python libraries. It contains Nornir tasks and general functions in Nornir style.
|
5
5
|
Author: Willi Kubny
|
6
6
|
Author-email: willi.kubny@gmail.ch
|
@@ -37,9 +37,8 @@ Requires-Dist: XlsxWriter==3.1.9
|
|
37
37
|
Requires-Dist: yaspin==3.0.1
|
38
38
|
Requires-Dist: rich==13.7.0
|
39
39
|
Requires-Dist: tabulate==0.9.0
|
40
|
-
Requires-Dist:
|
40
|
+
Requires-Dist: ruff==0.9.2
|
41
41
|
Requires-Dist: yamllint==1.33.0
|
42
|
-
Requires-Dist: pylint==3.0.3
|
43
42
|
Requires-Dist: bandit==1.7.6
|
44
43
|
Requires-Dist: vulture==2.10
|
45
44
|
Dynamic: author
|
@@ -76,7 +75,7 @@ of Azure DevOps pipelines.
|
|
76
75
|
----
|
77
76
|
</br>
|
78
77
|
|
79
|
-
The Python scripts were developed with static code analysis,
|
78
|
+
The Python scripts were developed with static code analysis, ruff auto-formatting and functional testing with Azure
|
80
79
|
DevOps pipelines executed by a pipeline agent installed within the Kyndryl labor network. The `Makefile` is used to
|
81
80
|
run the black auto-formatter, yamllint, pylint and prospector linting, bandit for security and vulnerability verification
|
82
81
|
as well as vulture for dead code verification. All pylint warnings that should be ignored are part of the script with a
|
@@ -0,0 +1,59 @@
|
|
1
|
+
nornir_collection/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
2
|
+
nornir_collection/git.py,sha256=HSNFc090QL2y_ISP1Jw8pUOWMG2khxDncIHZj7oDvZc,8734
|
3
|
+
nornir_collection/utils.py,sha256=PzHHY45KtOu2k1jAXFp1DmLFTx7cHriV3TF7NrodW6A,26718
|
4
|
+
nornir_collection/batfish/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
5
|
+
nornir_collection/batfish/assert_config.py,sha256=X4YFXzblxu74PwNERvSudOzh8K2Ac6hO0BMyGaKwTts,15129
|
6
|
+
nornir_collection/batfish/utils.py,sha256=KzhXsnk0LQWNP6-8oHykVIlWIT0ZDLD-CSKL0B90ytU,4478
|
7
|
+
nornir_collection/cisco/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
8
|
+
nornir_collection/cisco/configuration_management/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
9
|
+
nornir_collection/cisco/configuration_management/processor.py,sha256=KjhilyyDDiYL7wFemGEWSP16OLeM4dENmrtb20LRssY,6443
|
10
|
+
nornir_collection/cisco/configuration_management/pyats.py,sha256=j9XzG3ttURR0wtu2Se9QQEpG5o2kq9mqDkReNCdWKpk,8932
|
11
|
+
nornir_collection/cisco/configuration_management/utils.py,sha256=oLrl-sjB7Uvfmo1vxSkL_Z_DZTS2I5WbQfrGGLZeP2k,18639
|
12
|
+
nornir_collection/cisco/configuration_management/cli/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
13
|
+
nornir_collection/cisco/configuration_management/cli/config_tasks.py,sha256=mWXysgUm6ymNLQjomB1T05QT9A-fdV1aEKFzzDrfCUw,22147
|
14
|
+
nornir_collection/cisco/configuration_management/cli/config_workflow.py,sha256=GIka5SPLZ7M2zCFv8Jadl73QC-InnGopzI8xQt36MfM,3459
|
15
|
+
nornir_collection/cisco/configuration_management/cli/show_tasks.py,sha256=w9p2Iks33-pE4-YztH6vj-eI0MuPI7YD6gZhRcpQF7M,27971
|
16
|
+
nornir_collection/cisco/configuration_management/netconf/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
17
|
+
nornir_collection/cisco/configuration_management/netconf/config_tasks.py,sha256=Sig1FNmjcXXWK0zIUp_-sCxZzYjnYjR_HuYguLlIlsA,22120
|
18
|
+
nornir_collection/cisco/configuration_management/netconf/config_workflow.py,sha256=x1eWzO-WpNi0rAvdngyZfAR4OV3a6Rw7NAWWaU1xm2Y,14146
|
19
|
+
nornir_collection/cisco/configuration_management/netconf/nr_cfg_iosxe_netconf.py,sha256=G20TnpJUdW7swb5fiSKdRgdZu6EfjWwDFqxc9ajzclg,8614
|
20
|
+
nornir_collection/cisco/configuration_management/netconf/ops_tasks.py,sha256=cj7cpJNvY2bytv9VOqwg_7qOekL-cIL0EjML2KT4TQM,10659
|
21
|
+
nornir_collection/cisco/configuration_management/restconf/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
22
|
+
nornir_collection/cisco/configuration_management/restconf/cisco_rpc.py,sha256=tIccCcWegIuTRREz9wd47is4vP0bvvjH2ljB4GaOUKY,18569
|
23
|
+
nornir_collection/cisco/configuration_management/restconf/config_workflow.py,sha256=Q0xoOqyjyWkHWzVX62wOYOvn4CRIW8Bc16atXJo-qVU,3362
|
24
|
+
nornir_collection/cisco/configuration_management/restconf/tasks.py,sha256=2x5ecw8PE4CZ2lf2q7NZlEQGYRjLJxYzC2udhNmqnGA,12221
|
25
|
+
nornir_collection/cisco/software_upgrade/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
26
|
+
nornir_collection/cisco/software_upgrade/cisco_software_upgrade.py,sha256=KX9PKTPsEVAf4DLSDCm4gP_hDUnIxlxXgG5925CYPSo,13138
|
27
|
+
nornir_collection/cisco/software_upgrade/utils.py,sha256=b5PFTkW5m9kObbfcAE3w7WGDAZHveQe_VabizqtuDFs,32825
|
28
|
+
nornir_collection/cisco/support_api/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
29
|
+
nornir_collection/cisco/support_api/api_calls.py,sha256=YIIIikw9yIn1H2PM_7ZHJALUrBC9v2YyYyyuCZfs4OI,33378
|
30
|
+
nornir_collection/cisco/support_api/cisco_maintenance_report.py,sha256=TLrKyZQtm1Bb5vyBeHLIBrkC8ae9Ynlf0PzNeD1i19Q,9824
|
31
|
+
nornir_collection/cisco/support_api/cisco_support.py,sha256=UfQiD8FFc8KDib_lskPPgMarcx_Q42rhA57qkcpnkLQ,32748
|
32
|
+
nornir_collection/cisco/support_api/reports.py,sha256=I8virPgcifc2EyKfvj9S1nakak-CYcfk1EamO8UwR_8,35152
|
33
|
+
nornir_collection/cisco/support_api/utils.py,sha256=Yx00HSBymQGBYW6DAu2jmtGlT-QF2jIkC4ctQUw6fXE,14134
|
34
|
+
nornir_collection/fortinet/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
35
|
+
nornir_collection/fortinet/utils.py,sha256=xkvxdJy3-aD39WK_9Gc0rY9r-OxfHnPVNMspy3KZbcE,1174
|
36
|
+
nornir_collection/netbox/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
37
|
+
nornir_collection/netbox/custom_script.py,sha256=yU1lbv_25b3qAWA6GRsVYpEuh0KUPTVo47U5s_lksjo,4050
|
38
|
+
nornir_collection/netbox/inventory.py,sha256=YYmnFgsOiYiu6tueH8Nu6o5SXOJbfWDMyyFM3A6Yqek,15104
|
39
|
+
nornir_collection/netbox/scan_prefixes_and_update_ip_addresses.py,sha256=IGaE-HR_eManlENJzx7odn6yuMgpUV85NZfhpfaxpA0,41376
|
40
|
+
nornir_collection/netbox/set_device_status.py,sha256=vtn0KcR-91Z2aLjbEpZRef1Jip8eM9GWbKRiAJuEjLY,2437
|
41
|
+
nornir_collection/netbox/sync_datasource.py,sha256=eEsgwy_arIPbA-ObqqzTNdU9aiP80s7LCzAKA6hCXYQ,4703
|
42
|
+
nornir_collection/netbox/update_cisco_inventory_data.py,sha256=Aq4VGvAIiBhOCsSOF-wBUrpYtBXR8HwR3NCWEeM4d0g,6426
|
43
|
+
nornir_collection/netbox/update_cisco_support_plugin_data.py,sha256=H8SfqESad64LrZrsWOaICHKj122sgu96dK9RcbvtzGM,13896
|
44
|
+
nornir_collection/netbox/update_fortinet_inventory_data.py,sha256=ltwkE_bFljRUR4aeOxorChCsHdZciD1TqvoPnWTUIUg,6367
|
45
|
+
nornir_collection/netbox/update_purestorage_inventory_data.py,sha256=cGZNMTZWJ0wu1BYdE92EVN-C-oLMJHxaKi_-1cMg0Ow,5368
|
46
|
+
nornir_collection/netbox/utils.py,sha256=hrpb-RTHGcJVCBGy38szwZDnXhsD9HJOSWMdUT9PbDk,9435
|
47
|
+
nornir_collection/netbox/verify_device_primary_ip.py,sha256=6UCdZaZxhV4v8KqpjSpE9c7jaxIAF2krrknrrRj1AvM,8690
|
48
|
+
nornir_collection/nornir_plugins/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
49
|
+
nornir_collection/nornir_plugins/inventory/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
50
|
+
nornir_collection/nornir_plugins/inventory/netbox.py,sha256=loKKu3sxBy_WChVADhX_9D3Dfvg2m0ov9K4iyWE0B2g,8685
|
51
|
+
nornir_collection/nornir_plugins/inventory/staggered_yaml.py,sha256=nBvUFq7U5zVTkwer_xQNpMqC7go8KnFwshgQxmqlaFc,5612
|
52
|
+
nornir_collection/nornir_plugins/inventory/utils.py,sha256=mxIlKK-4PHqCnFKn7Oozu1RW_JB5z1TgEYc-ave70nE,11822
|
53
|
+
nornir_collection/purestorage/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
54
|
+
nornir_collection/purestorage/utils.py,sha256=TqU2sKz0ENnmSDEBcSvXPnVkI1DVHOogI68D7l32g7I,1730
|
55
|
+
nornir_collection-0.0.3.dist-info/LICENSE,sha256=bOPVh1OVNwz2tCjkLaChWT6AoXdtqye3aua5l0tgYJo,1068
|
56
|
+
nornir_collection-0.0.3.dist-info/METADATA,sha256=otHwdca5grJ52laoiZHhVHc6TaJs_yn5gjPrRIFMplo,7137
|
57
|
+
nornir_collection-0.0.3.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
|
58
|
+
nornir_collection-0.0.3.dist-info/top_level.txt,sha256=OyCzPWABf-D0AOHm9ihrwdk5eq200BnKna6gIDspwsE,18
|
59
|
+
nornir_collection-0.0.3.dist-info/RECORD,,
|
@@ -1,59 +0,0 @@
|
|
1
|
-
nornir_collection/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
2
|
-
nornir_collection/git.py,sha256=8qGzH1AQuW8HvxgDwIr2X6eYNVRazZ7WgwR69n4Y95A,8864
|
3
|
-
nornir_collection/utils.py,sha256=6pwIxm_qHPjdriAWIhtQ5m87kuTUECacqe7r7m7hNnk,26918
|
4
|
-
nornir_collection/batfish/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
5
|
-
nornir_collection/batfish/assert_config.py,sha256=a1DajP4jrirbaylrqFAkHBmGRQ1JxvHHzYZRX1yN4yg,15273
|
6
|
-
nornir_collection/batfish/utils.py,sha256=x0Wfg42SY9x0FG6mzO-yZ5H46z6-a5SjoQLHl40Iri0,4548
|
7
|
-
nornir_collection/cisco/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
8
|
-
nornir_collection/cisco/configuration_management/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
9
|
-
nornir_collection/cisco/configuration_management/processor.py,sha256=tpkqDldsSsSIDN6tU3qf4LG8MAlIHfr9801USi4mSZw,6527
|
10
|
-
nornir_collection/cisco/configuration_management/pyats.py,sha256=5mP6euFcxEGn2zlvgnNcf9_FhS7KBvRBHNOQxZ-Z2as,9002
|
11
|
-
nornir_collection/cisco/configuration_management/utils.py,sha256=_WluhApXidWlpjMGoTw9DAExd5_Pb-Bjc5O2L5Zs-OE,18765
|
12
|
-
nornir_collection/cisco/configuration_management/cli/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
13
|
-
nornir_collection/cisco/configuration_management/cli/config_tasks.py,sha256=JujICR0ofe78m9zHT1FLFlsmoaZGN-2OTL6MVNqLTm4,22393
|
14
|
-
nornir_collection/cisco/configuration_management/cli/config_workflow.py,sha256=os8BtzwPr6GQqIIVewHaBr_nLCxXKyccJ8nGQdMzzwU,3494
|
15
|
-
nornir_collection/cisco/configuration_management/cli/show_tasks.py,sha256=6-s1iDcIye5Ayd0ZIgNm8_YAnq04SM9uayO_OQHRUgk,28218
|
16
|
-
nornir_collection/cisco/configuration_management/netconf/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
17
|
-
nornir_collection/cisco/configuration_management/netconf/config_tasks.py,sha256=npHRvekGmYCmHGO0VbureptQsB2aw9DdHLjng0ASBkQ,22511
|
18
|
-
nornir_collection/cisco/configuration_management/netconf/config_workflow.py,sha256=npFmku_Tt6ZmZHVOnUeLfQWGZC7P2txFos-nb7qotsI,14265
|
19
|
-
nornir_collection/cisco/configuration_management/netconf/nr_cfg_iosxe_netconf.py,sha256=mVTn-OhnGr8dpQE6X4DJnRhsqGFSsTD1QNIx7sO9ylE,8650
|
20
|
-
nornir_collection/cisco/configuration_management/netconf/ops_tasks.py,sha256=ngj7iIfFfa6OU22RS_cS-DhMRutEunT4PuW0leuLsvY,10953
|
21
|
-
nornir_collection/cisco/configuration_management/restconf/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
22
|
-
nornir_collection/cisco/configuration_management/restconf/cisco_rpc.py,sha256=l6YKznklWwE3f12EME1pi-nVMjGUnNbjEPz3utpVKSo,18828
|
23
|
-
nornir_collection/cisco/configuration_management/restconf/config_workflow.py,sha256=sVUrkqanjpz50vk6PRh2-gYV6029OL3mdSdMq0ewOtY,3425
|
24
|
-
nornir_collection/cisco/configuration_management/restconf/tasks.py,sha256=a1gOe55VTKXcLOxANw5V_UFw-8OLIRiKs53N9inGrfQ,12347
|
25
|
-
nornir_collection/cisco/software_upgrade/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
26
|
-
nornir_collection/cisco/software_upgrade/cisco_software_upgrade.py,sha256=TcfPImGRszs67f3rSoBJ6KjbflXWRaZ8bRJZ-FUwnDU,13209
|
27
|
-
nornir_collection/cisco/software_upgrade/utils.py,sha256=7S0Q1uq7pkZ0gH7GWCe02VQfAash8PqrBWH6nsyctR8,33204
|
28
|
-
nornir_collection/cisco/support_api/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
29
|
-
nornir_collection/cisco/support_api/api_calls.py,sha256=hErqejlWVP6UhYn6BOJHSGFdmqo5XynzRyzMaDWygYI,33503
|
30
|
-
nornir_collection/cisco/support_api/cisco_maintenance_report.py,sha256=T0VaPNGgSjY16DOILW5Zw8DITmF8bDsHAp9_yIcpymc,9894
|
31
|
-
nornir_collection/cisco/support_api/cisco_support.py,sha256=c98MmXdrGwip8c1nHkAKsSCMWaJ9T9dXSA9wY23VOdQ,32972
|
32
|
-
nornir_collection/cisco/support_api/reports.py,sha256=wOcYSgnKyfVjuhP4nit-zNyBIx9xiflo0FoSMe6SDNs,35439
|
33
|
-
nornir_collection/cisco/support_api/utils.py,sha256=YFmrBWX4ng-C_rFpAvElZukcAAiSgP1iG08pD3JdsNU,14240
|
34
|
-
nornir_collection/fortinet/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
35
|
-
nornir_collection/fortinet/utils.py,sha256=MmDukn_m5m47EASObrgDf_h8AFdyGPETLHT65CDXL0U,1175
|
36
|
-
nornir_collection/netbox/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
37
|
-
nornir_collection/netbox/custom_script.py,sha256=T8e117JGhPP2Eyze-A8xGerxXxaVpIoQnXHw3D4K0EQ,4100
|
38
|
-
nornir_collection/netbox/inventory.py,sha256=temkBT2xYcafW0dFZmOoDyFT_92dme2ABpV5DCWWLoc,15178
|
39
|
-
nornir_collection/netbox/scan_prefixes_and_update_ip_addresses.py,sha256=3BQK0f6885UD9IJvSA_KvXw2-86nOuBoeWwVmPNe-eM,41492
|
40
|
-
nornir_collection/netbox/set_device_status.py,sha256=eQ3pWFChYoythAZ-OS7lVBSm01Gx_1qFj6n4Gq6nHtI,2438
|
41
|
-
nornir_collection/netbox/sync_datasource.py,sha256=0Sqt8Rn77fHqeuazcAD_yTFb0pcPXI7gE0eSFjzHV0E,4704
|
42
|
-
nornir_collection/netbox/update_cisco_inventory_data.py,sha256=kutbiH6HV2Ufn7ZeCJFvurt_1tEBN1DbcmDjZZ34uhE,6496
|
43
|
-
nornir_collection/netbox/update_cisco_support_plugin_data.py,sha256=yCoCgJ_tN1Bhc40GXQ3XiWSle1VWxPo6oHAidMNoDpI,13968
|
44
|
-
nornir_collection/netbox/update_fortinet_inventory_data.py,sha256=OIjdYFWVcwlrcpx-yaCfGFLfq9asSPUFJq98ySHiJBg,6437
|
45
|
-
nornir_collection/netbox/update_purestorage_inventory_data.py,sha256=gaCvpeW_MYb68joqZNlcM29WKlb24YPXz9RG1uKDZ1w,5438
|
46
|
-
nornir_collection/netbox/utils.py,sha256=9x7MsLHblJt7zygvl539K4qS4blK1sy5h4Ih6pEGCy8,9485
|
47
|
-
nornir_collection/netbox/verify_device_primary_ip.py,sha256=HkGpHbe2Z9tPUPi-ezTEOLrZnYHOdisf4SJ8ONEhS_4,8825
|
48
|
-
nornir_collection/nornir_plugins/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
49
|
-
nornir_collection/nornir_plugins/inventory/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
50
|
-
nornir_collection/nornir_plugins/inventory/netbox.py,sha256=Q8-P-0X7-Q2uS_5_hnq4g1sx_TN8XGtMKg5wfvzz9Ko,8946
|
51
|
-
nornir_collection/nornir_plugins/inventory/staggered_yaml.py,sha256=I4t09CRGOP6NJn4zlxfUgrMHKwwNANwMSdcYs0IbG4w,5648
|
52
|
-
nornir_collection/nornir_plugins/inventory/utils.py,sha256=pcQ6DhlONzjM8QQ2cPLOdp35Yp5okcQBgBVM0b8TEcU,11890
|
53
|
-
nornir_collection/purestorage/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
54
|
-
nornir_collection/purestorage/utils.py,sha256=UyTVr9xjZkHkhISfr-Gp72eDPMS2QV9veSJ0rDkVaOw,1771
|
55
|
-
nornir_collection-0.0.2.dist-info/LICENSE,sha256=bOPVh1OVNwz2tCjkLaChWT6AoXdtqye3aua5l0tgYJo,1068
|
56
|
-
nornir_collection-0.0.2.dist-info/METADATA,sha256=ibyVpZz3YKGnpcPdAK5_fSowLrRYqJnPbpW2P0Ou1C8,7170
|
57
|
-
nornir_collection-0.0.2.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
|
58
|
-
nornir_collection-0.0.2.dist-info/top_level.txt,sha256=OyCzPWABf-D0AOHm9ihrwdk5eq200BnKna6gIDspwsE,18
|
59
|
-
nornir_collection-0.0.2.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|