ipfabric_netbox 4.3.2b8__py3-none-any.whl → 4.3.2b10__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.
Potentially problematic release.
This version of ipfabric_netbox might be problematic. Click here for more details.
- ipfabric_netbox/__init__.py +2 -2
- ipfabric_netbox/api/serializers.py +112 -7
- ipfabric_netbox/api/urls.py +6 -0
- ipfabric_netbox/api/views.py +23 -0
- ipfabric_netbox/choices.py +72 -40
- ipfabric_netbox/data/endpoint.json +47 -0
- ipfabric_netbox/data/filters.json +51 -0
- ipfabric_netbox/data/transform_map.json +188 -174
- ipfabric_netbox/exceptions.py +7 -5
- ipfabric_netbox/filtersets.py +310 -41
- ipfabric_netbox/forms.py +324 -79
- ipfabric_netbox/graphql/__init__.py +6 -0
- ipfabric_netbox/graphql/enums.py +5 -5
- ipfabric_netbox/graphql/filters.py +56 -4
- ipfabric_netbox/graphql/schema.py +28 -0
- ipfabric_netbox/graphql/types.py +61 -1
- ipfabric_netbox/jobs.py +18 -1
- ipfabric_netbox/migrations/0022_prepare_for_filters.py +182 -0
- ipfabric_netbox/migrations/0023_populate_filters_data.py +279 -0
- ipfabric_netbox/migrations/0024_finish_filters.py +29 -0
- ipfabric_netbox/models.py +384 -12
- ipfabric_netbox/navigation.py +98 -24
- ipfabric_netbox/tables.py +194 -9
- ipfabric_netbox/templates/ipfabric_netbox/htmx_list.html +5 -0
- ipfabric_netbox/templates/ipfabric_netbox/inc/combined_expressions.html +59 -0
- ipfabric_netbox/templates/ipfabric_netbox/inc/combined_expressions_content.html +39 -0
- ipfabric_netbox/templates/ipfabric_netbox/inc/endpoint_filters_with_selector.html +54 -0
- ipfabric_netbox/templates/ipfabric_netbox/ipfabricendpoint.html +39 -0
- ipfabric_netbox/templates/ipfabric_netbox/ipfabricfilter.html +51 -0
- ipfabric_netbox/templates/ipfabric_netbox/ipfabricfilterexpression.html +39 -0
- ipfabric_netbox/templates/ipfabric_netbox/ipfabricfilterexpression_edit.html +150 -0
- ipfabric_netbox/templates/ipfabric_netbox/ipfabricsync.html +1 -1
- ipfabric_netbox/templates/ipfabric_netbox/ipfabrictransformmap.html +16 -2
- ipfabric_netbox/templatetags/ipfabric_netbox_helpers.py +65 -0
- ipfabric_netbox/tests/api/test_api.py +333 -13
- ipfabric_netbox/tests/test_filtersets.py +2592 -0
- ipfabric_netbox/tests/test_forms.py +1256 -74
- ipfabric_netbox/tests/test_models.py +242 -34
- ipfabric_netbox/tests/test_views.py +2030 -25
- ipfabric_netbox/urls.py +35 -0
- ipfabric_netbox/utilities/endpoint.py +30 -0
- ipfabric_netbox/utilities/filters.py +88 -0
- ipfabric_netbox/utilities/ipfutils.py +254 -316
- ipfabric_netbox/utilities/logging.py +7 -7
- ipfabric_netbox/utilities/transform_map.py +126 -0
- ipfabric_netbox/views.py +719 -5
- {ipfabric_netbox-4.3.2b8.dist-info → ipfabric_netbox-4.3.2b10.dist-info}/METADATA +3 -2
- {ipfabric_netbox-4.3.2b8.dist-info → ipfabric_netbox-4.3.2b10.dist-info}/RECORD +49 -33
- {ipfabric_netbox-4.3.2b8.dist-info → ipfabric_netbox-4.3.2b10.dist-info}/WHEEL +1 -1
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: ipfabric_netbox
|
|
3
|
-
Version: 4.3.
|
|
3
|
+
Version: 4.3.2b10
|
|
4
4
|
Summary: NetBox plugin to sync IP Fabric data into NetBox
|
|
5
5
|
License: MIT
|
|
6
6
|
Keywords: netbox,ipfabric,plugin,sync
|
|
@@ -66,7 +66,8 @@ These are the required NetBox versions for corresponding plugin version. Any oth
|
|
|
66
66
|
|
|
67
67
|
| Netbox Version | Plugin Version |
|
|
68
68
|
|----------------|----------------|
|
|
69
|
-
| 4.4.
|
|
69
|
+
| 4.4.9 and up | 5.0.0 and up |
|
|
70
|
+
| 4.4.0 - 4.4.9 | 4.3.0 - 4.3.2 |
|
|
70
71
|
| 4.3.0 - 4.3.7 | 4.2.2 |
|
|
71
72
|
| 4.3.0 - 4.3.6 | 4.0.0 - 4.2.1 |
|
|
72
73
|
| 4.2.4 - 4.2.9 | 3.2.2 - 3.2.4 |
|
|
@@ -1,19 +1,21 @@
|
|
|
1
|
-
ipfabric_netbox/__init__.py,sha256=
|
|
1
|
+
ipfabric_netbox/__init__.py,sha256=OBDEtLySLsRadQTmCUfczfuW4qpe87-5NbjK6YPKMKg,675
|
|
2
2
|
ipfabric_netbox/api/__init__.py,sha256=XRclTGWVR0ZhAAwgYul5Wm_loug5_hUjEumbLQEwKYM,47
|
|
3
|
-
ipfabric_netbox/api/serializers.py,sha256=
|
|
4
|
-
ipfabric_netbox/api/urls.py,sha256=
|
|
5
|
-
ipfabric_netbox/api/views.py,sha256=
|
|
6
|
-
ipfabric_netbox/choices.py,sha256=
|
|
7
|
-
ipfabric_netbox/data/
|
|
8
|
-
ipfabric_netbox/
|
|
9
|
-
ipfabric_netbox/
|
|
10
|
-
ipfabric_netbox/
|
|
11
|
-
ipfabric_netbox/
|
|
12
|
-
ipfabric_netbox/
|
|
13
|
-
ipfabric_netbox/graphql/
|
|
14
|
-
ipfabric_netbox/graphql/
|
|
15
|
-
ipfabric_netbox/graphql/
|
|
16
|
-
ipfabric_netbox/
|
|
3
|
+
ipfabric_netbox/api/serializers.py,sha256=0eC79r-IprR39R5hdMGq-wrvsNctw13Ff-mb_zGq7P4,9415
|
|
4
|
+
ipfabric_netbox/api/urls.py,sha256=bOEh6Um7wh-CqafWVKttuo4pwWgWCK3MGO44EI90evA,1604
|
|
5
|
+
ipfabric_netbox/api/views.py,sha256=CKLM3-AwFBWHca-rlVNz06pQRiZ5PzimPhknULnpm-g,7777
|
|
6
|
+
ipfabric_netbox/choices.py,sha256=CIMpgHycdS7owN3flMagN87inC4n9VAC_zsjMjb_8MM,6767
|
|
7
|
+
ipfabric_netbox/data/endpoint.json,sha256=Xlo9SGWter_R4lm6k01BWY8KorGyDGprNE8ELIcTQsI,1092
|
|
8
|
+
ipfabric_netbox/data/filters.json,sha256=lMpUKrwzJ3LmVDqzoyN4LOTyxAkXXenfsC_ITOSewSs,1727
|
|
9
|
+
ipfabric_netbox/data/transform_map.json,sha256=lRNuG-9gc_PRx4TSbp-DADL4atzu4RcgAXBZ_wJSLnk,22911
|
|
10
|
+
ipfabric_netbox/exceptions.py,sha256=HXsfuSXBBwxh5nhVvKcrmvVihKK8uaNGfCCmNuOufho,1791
|
|
11
|
+
ipfabric_netbox/filtersets.py,sha256=XwalWZccwspqntUO0W3sZMo1lAAUT2SBwIi0MUPEFqs,16253
|
|
12
|
+
ipfabric_netbox/forms.py,sha256=tWwJ67ZyVZarXHmNwRyGXQWqEPLMTiy_blrQnp1N3fw,58714
|
|
13
|
+
ipfabric_netbox/graphql/__init__.py,sha256=iQkyaQCMoSfLIr3N2Pemg1wnoEdfQ2NXDueyiEvJlKE,973
|
|
14
|
+
ipfabric_netbox/graphql/enums.py,sha256=HT9e1cmvH-uRCUz6IBzHnwJAA9Zm-vtGGfLRoQRdtPk,1513
|
|
15
|
+
ipfabric_netbox/graphql/filters.py,sha256=iW7fh4-mM0OEBGNdzfwG4phbcqXW9yTJA1XUKLeKJ48,15073
|
|
16
|
+
ipfabric_netbox/graphql/schema.py,sha256=eqK64sAfwqQhzCkGw1T1aIUs-xgc0bmxxThigJB_ZWw,4145
|
|
17
|
+
ipfabric_netbox/graphql/types.py,sha256=8Sf_H86HQosDyh1uoAwl5Z1IwFGLeVTGdkgV7qr9dDQ,7484
|
|
18
|
+
ipfabric_netbox/jobs.py,sha256=KruoSBoWPIGabZAMzr9Hp4x6ryKxg8JSjEUGgEKNc8U,5454
|
|
17
19
|
ipfabric_netbox/migrations/0001_initial.py,sha256=VphxkWL6QzWq2tcrdXlog718xQtiEGizKwS830z_fOs,13824
|
|
18
20
|
ipfabric_netbox/migrations/0001_initial_squashed_0013_switch_to_branching_plugin.py,sha256=OvofuA8ImeJmjrbtCrZPcRxAUWx2Ww4DUXLBZYsy6qE,21381
|
|
19
21
|
ipfabric_netbox/migrations/0002_ipfabricsnapshot_status.py,sha256=xQpouHjOutyj6riN2B592njzSvz_icpkUbo5W7nWLYw,431
|
|
@@ -36,14 +38,21 @@ ipfabric_netbox/migrations/0018_remove_type_field.py,sha256=ffxW6IS3BLCbvM5M9DbD
|
|
|
36
38
|
ipfabric_netbox/migrations/0019_alter_ipfabrictransformmap_options_and_more.py,sha256=ieDVedt9KpJBicAiC3kdZXzHeos12N0L9EdRXKmIVgY,501
|
|
37
39
|
ipfabric_netbox/migrations/0020_clean_scheduled_jobs.py,sha256=zjCVKnCWTKYYkpVRwHjqRIRR2j6ALSKXYMfraRjNu7Y,2652
|
|
38
40
|
ipfabric_netbox/migrations/0021_update_transform_maps.py,sha256=W9GSgMQNmEdxnRI1c13at3XG1F_hyo9oZWsTZ0TLN9c,5464
|
|
41
|
+
ipfabric_netbox/migrations/0022_prepare_for_filters.py,sha256=HXXRQZz4xY036YN4ck10UcgTPflRzs35UGYUkwn-9V8,6931
|
|
42
|
+
ipfabric_netbox/migrations/0023_populate_filters_data.py,sha256=XorBfIrv26ZdN174OeZth3SX_hmkCsr2ypX5A5n1UnY,10814
|
|
43
|
+
ipfabric_netbox/migrations/0024_finish_filters.py,sha256=YVR1DBTqaOXNthG_V5QSWCpDV0S3Jh3WoCJ0RPVhVBI,972
|
|
39
44
|
ipfabric_netbox/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
40
|
-
ipfabric_netbox/models.py,sha256=
|
|
41
|
-
ipfabric_netbox/navigation.py,sha256=
|
|
45
|
+
ipfabric_netbox/models.py,sha256=w2pIxzEffj5jLZzoLsv6gHclKNH1dgr7d4ZLXjnk2e4,52709
|
|
46
|
+
ipfabric_netbox/navigation.py,sha256=8FfpYFW1fC7BzFSTZ-XBCxu5IVMKDvArhr8Zav-0Ud4,4688
|
|
42
47
|
ipfabric_netbox/signals.py,sha256=y3x2jKT8yTjOfC4B3h4YZPRsYQkBal4cFdHJFkbPoS8,1411
|
|
43
|
-
ipfabric_netbox/tables.py,sha256=
|
|
48
|
+
ipfabric_netbox/tables.py,sha256=dhsusCRTXspfNWJYN0hE83r39kQIZcgG5cwT_1qMGHA,14898
|
|
44
49
|
ipfabric_netbox/template_content.py,sha256=lxZ02BFVihbSgjXCETGsWmhdElQUUO3uUGd0WfhlRmw,1120
|
|
50
|
+
ipfabric_netbox/templates/ipfabric_netbox/htmx_list.html,sha256=9wrJqGsOPlGz1doeXxau5fOPhAPNq3idvYhgXfCE_I4,121
|
|
45
51
|
ipfabric_netbox/templates/ipfabric_netbox/inc/clone_form.html,sha256=f6O5ugjQg7u37QWxUpKvE38jNslwb3rCMghlAUqjWBk,1127
|
|
52
|
+
ipfabric_netbox/templates/ipfabric_netbox/inc/combined_expressions.html,sha256=CrvhkKP_-MUMhiSYjh4iHezcUGN_PQIBhSkjtupwITQ,2553
|
|
53
|
+
ipfabric_netbox/templates/ipfabric_netbox/inc/combined_expressions_content.html,sha256=1auDqh5Uc_fCcxh8-uipyTJS4F1Wrjn286B6pVMGzQs,1802
|
|
46
54
|
ipfabric_netbox/templates/ipfabric_netbox/inc/diff.html,sha256=tuXJdQnesdIF0pUoKoho_8fQTGSIwdoEWhieHu6ikVM,3439
|
|
55
|
+
ipfabric_netbox/templates/ipfabric_netbox/inc/endpoint_filters_with_selector.html,sha256=WahorNrzgxJ85FP0TBEg745N9rA35FN0ysHed9t_SJw,2080
|
|
47
56
|
ipfabric_netbox/templates/ipfabric_netbox/inc/json.html,sha256=Z1zxFjy4PaAin3g_1EXy1KSlJyqSxWCD096wbRulQaE,635
|
|
48
57
|
ipfabric_netbox/templates/ipfabric_netbox/inc/logs_pending.html,sha256=lZXUFWQCQtu6RMe_OQQmjLMjJEnZ71EHPrhvSTE_-R4,353
|
|
49
58
|
ipfabric_netbox/templates/ipfabric_netbox/inc/merge_form.html,sha256=hey2JVm3IDZUqdpujzPUJYB7xZ4nxQ0pxl5wwRQIxOY,836
|
|
@@ -53,11 +62,15 @@ ipfabric_netbox/templates/ipfabric_netbox/inc/snapshotdata.html,sha256=1ItOCPjjp
|
|
|
53
62
|
ipfabric_netbox/templates/ipfabric_netbox/inc/transform_map_field_map.html,sha256=MSpU2mQnrGg_jA1-eqQgaSK9DXCeo3w6j33tV_GFNJ4,535
|
|
54
63
|
ipfabric_netbox/templates/ipfabric_netbox/inc/transform_map_relationship_map.html,sha256=tmIV0gDhfVxBse4xDeE5atMi4KEMkvxB_WRx94gu44U,539
|
|
55
64
|
ipfabric_netbox/templates/ipfabric_netbox/ipfabric_table.html,sha256=HsxENF0KaaGT8w0_K6251LVH0W_mg60W8ktApxAG59U,1689
|
|
65
|
+
ipfabric_netbox/templates/ipfabric_netbox/ipfabricendpoint.html,sha256=bsXr4XdYjgNR8H4lcodi7ULKolrtyJ-ul9qd4l7pdBc,1150
|
|
66
|
+
ipfabric_netbox/templates/ipfabric_netbox/ipfabricfilter.html,sha256=9awoW_YXO2caPg1D7p5IGcLwBkUiAbICJcSuL8nfHH4,1533
|
|
67
|
+
ipfabric_netbox/templates/ipfabric_netbox/ipfabricfilterexpression.html,sha256=bdKszipF3NEJwTafKAwrvpkSv1NNrChaBW-rxcG2VGU,1163
|
|
68
|
+
ipfabric_netbox/templates/ipfabric_netbox/ipfabricfilterexpression_edit.html,sha256=iZKX-hRAewYqr2HdIuKWItuZgI8r5PRpye1kbH4Zgpc,5627
|
|
56
69
|
ipfabric_netbox/templates/ipfabric_netbox/ipfabricingestion.html,sha256=4cUP5KxCEtH4j5RFT68-7UJUCnJcOCxA0iBzrxwua4I,4760
|
|
57
70
|
ipfabric_netbox/templates/ipfabric_netbox/ipfabricsnapshot.html,sha256=JzvLqu0lIutCn_2f0alNVOAFbv2P6sqoZ1nYtVL9O8Y,3694
|
|
58
71
|
ipfabric_netbox/templates/ipfabric_netbox/ipfabricsource.html,sha256=I9K7Eob-jjNAy6lryq2QKpp-5JyR1DEJSPF3D6JKR_w,4063
|
|
59
|
-
ipfabric_netbox/templates/ipfabric_netbox/ipfabricsync.html,sha256=
|
|
60
|
-
ipfabric_netbox/templates/ipfabric_netbox/ipfabrictransformmap.html,sha256=
|
|
72
|
+
ipfabric_netbox/templates/ipfabric_netbox/ipfabricsync.html,sha256=deG7sRm1ndqHv2_pR71fxsZsBORQ1zkTjZ8q5MUvgWc,4882
|
|
73
|
+
ipfabric_netbox/templates/ipfabric_netbox/ipfabrictransformmap.html,sha256=WOGJkEl_relZlfXwi9AfR4qk1L83N5ARtaesb29adMI,2166
|
|
61
74
|
ipfabric_netbox/templates/ipfabric_netbox/ipfabrictransformmap_list.html,sha256=kRb6NsLxurojh4Afb_oJbIMlgMprsVuhvRiuk8hB7OM,482
|
|
62
75
|
ipfabric_netbox/templates/ipfabric_netbox/ipfabrictransformmap_restore.html,sha256=os11SIwApFAiA1j0ObaOqG_KDHuieMiwyv9gPpZ9exI,2594
|
|
63
76
|
ipfabric_netbox/templates/ipfabric_netbox/ipfabrictransformmapgroup.html,sha256=X5jsRsK1WCqYpf-iQuHKChbg_hTTcrMpg48K5BU2S_0,1033
|
|
@@ -70,19 +83,22 @@ ipfabric_netbox/templates/ipfabric_netbox/partials/object_tabs.html,sha256=3xbGy
|
|
|
70
83
|
ipfabric_netbox/templates/ipfabric_netbox/partials/sync_last_ingestion.html,sha256=3v6tC88xE5cic9l9lQw7Msawoq-AW2oo2odd-osGv50,179
|
|
71
84
|
ipfabric_netbox/templates/static/ipfabric_netbox/css/rack.css,sha256=z1H-RmmsqF2pGdhn5J64TMFiccy62xZUHHlCRd8fJrQ,118
|
|
72
85
|
ipfabric_netbox/templatetags/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
73
|
-
ipfabric_netbox/templatetags/ipfabric_netbox_helpers.py,sha256=
|
|
86
|
+
ipfabric_netbox/templatetags/ipfabric_netbox_helpers.py,sha256=icZ-WlCgM19k6pYiNHQuV3RW3p142aysQw2387nlaGs,2693
|
|
74
87
|
ipfabric_netbox/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
75
88
|
ipfabric_netbox/tests/api/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
76
|
-
ipfabric_netbox/tests/api/test_api.py,sha256=
|
|
77
|
-
ipfabric_netbox/tests/
|
|
78
|
-
ipfabric_netbox/tests/
|
|
79
|
-
ipfabric_netbox/tests/
|
|
80
|
-
ipfabric_netbox/
|
|
89
|
+
ipfabric_netbox/tests/api/test_api.py,sha256=3CKH3gkI-QDLKhrjVduHU6Qp2OJUg7y4ZRIwqm_yEf4,46492
|
|
90
|
+
ipfabric_netbox/tests/test_filtersets.py,sha256=95g1yq3oFjWLbmtWSbm3rAy-yncY5Hf9WfBkDp2ZT_4,103497
|
|
91
|
+
ipfabric_netbox/tests/test_forms.py,sha256=r7Etzlc5a7deHZ3Ct3guEl2vyBXliFBE6gijWgk4k-M,106651
|
|
92
|
+
ipfabric_netbox/tests/test_models.py,sha256=EdXlIohASB2HSddx8rsZBgIeD6j31P5Zew1hJ8REB08,24840
|
|
93
|
+
ipfabric_netbox/tests/test_views.py,sha256=uIAz4sQ2NEhduFuhG4COrBQvUOZp4b0BJh-15qAB_rs,167135
|
|
94
|
+
ipfabric_netbox/urls.py,sha256=6XAONbl0tKv2Vz4BfamAzLXpzmwdADMrXmuqPEQnvqE,3747
|
|
81
95
|
ipfabric_netbox/utilities/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
82
|
-
ipfabric_netbox/utilities/
|
|
83
|
-
ipfabric_netbox/utilities/
|
|
84
|
-
ipfabric_netbox/utilities/
|
|
85
|
-
ipfabric_netbox/
|
|
86
|
-
ipfabric_netbox
|
|
87
|
-
ipfabric_netbox
|
|
88
|
-
ipfabric_netbox-4.3.
|
|
96
|
+
ipfabric_netbox/utilities/endpoint.py,sha256=-Xp1Xz6a4MwluN1razmM8TkLgdrwBRjowcbm6VKFA6o,1001
|
|
97
|
+
ipfabric_netbox/utilities/filters.py,sha256=Lq5b_DDm0OVcfyp56br5hhnnhqT8_ZyNfSUApEG1U2k,2971
|
|
98
|
+
ipfabric_netbox/utilities/ipfutils.py,sha256=3jLcx16-ieMGHU0GZmMgYBwnm73Z5nw0RjMG6CbON2o,44844
|
|
99
|
+
ipfabric_netbox/utilities/logging.py,sha256=v80dyd58mm40Nj5L6Ew4AtnLC9lTuU6TyBJq42w4Jrc,3494
|
|
100
|
+
ipfabric_netbox/utilities/transform_map.py,sha256=2NLBlvGZr-ux4MCE3z2KI70EkQlcGN0x_iV7P8tXO4c,14010
|
|
101
|
+
ipfabric_netbox/views.py,sha256=7IJLqf6MdK4LhjMGtbYVd_YmOTCUp8BwMFPU7WUre-o,71211
|
|
102
|
+
ipfabric_netbox-4.3.2b10.dist-info/METADATA,sha256=mRVSk3BS6U-Ee7alCWS1fzLIT9-jr7tEouJ1M6cixNk,4818
|
|
103
|
+
ipfabric_netbox-4.3.2b10.dist-info/WHEEL,sha256=3ny-bZhpXrU6vSQ1UPG34FoxZBp3lVcvK0LkgUz6VLk,88
|
|
104
|
+
ipfabric_netbox-4.3.2b10.dist-info/RECORD,,
|