netbox-plugin-dns 0.21.4__py3-none-any.whl → 1.4.7__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.
Files changed (232) hide show
  1. netbox_dns/__init__.py +106 -41
  2. netbox_dns/api/field_serializers.py +25 -0
  3. netbox_dns/api/nested_serializers.py +95 -52
  4. netbox_dns/api/serializers.py +14 -296
  5. netbox_dns/api/serializers_/__init__.py +0 -0
  6. netbox_dns/api/serializers_/dnssec_key_template.py +69 -0
  7. netbox_dns/api/serializers_/dnssec_policy.py +165 -0
  8. netbox_dns/api/serializers_/nameserver.py +56 -0
  9. netbox_dns/api/serializers_/prefix.py +18 -0
  10. netbox_dns/api/serializers_/record.py +105 -0
  11. netbox_dns/api/serializers_/record_template.py +71 -0
  12. netbox_dns/api/serializers_/registrar.py +45 -0
  13. netbox_dns/api/serializers_/registration_contact.py +50 -0
  14. netbox_dns/api/serializers_/view.py +81 -0
  15. netbox_dns/api/serializers_/zone.py +247 -0
  16. netbox_dns/api/serializers_/zone_template.py +157 -0
  17. netbox_dns/api/urls.py +13 -2
  18. netbox_dns/api/views.py +96 -58
  19. netbox_dns/choices/__init__.py +4 -0
  20. netbox_dns/choices/dnssec_key_template.py +67 -0
  21. netbox_dns/choices/dnssec_policy.py +40 -0
  22. netbox_dns/choices/record.py +104 -0
  23. netbox_dns/choices/utilities.py +4 -0
  24. netbox_dns/choices/zone.py +119 -0
  25. netbox_dns/fields/__init__.py +4 -0
  26. netbox_dns/fields/address.py +22 -16
  27. netbox_dns/fields/choice_array.py +33 -0
  28. netbox_dns/fields/ipam.py +15 -0
  29. netbox_dns/fields/network.py +42 -18
  30. netbox_dns/fields/rfc2317.py +97 -0
  31. netbox_dns/fields/timeperiod.py +33 -0
  32. netbox_dns/filters.py +7 -0
  33. netbox_dns/filtersets/__init__.py +12 -0
  34. netbox_dns/filtersets/dnssec_key_template.py +57 -0
  35. netbox_dns/filtersets/dnssec_policy.py +101 -0
  36. netbox_dns/filtersets/nameserver.py +46 -0
  37. netbox_dns/filtersets/record.py +135 -0
  38. netbox_dns/filtersets/record_template.py +59 -0
  39. netbox_dns/{filters → filtersets}/registrar.py +8 -1
  40. netbox_dns/{filters/contact.py → filtersets/registration_contact.py} +9 -3
  41. netbox_dns/filtersets/view.py +45 -0
  42. netbox_dns/filtersets/zone.py +254 -0
  43. netbox_dns/filtersets/zone_template.py +165 -0
  44. netbox_dns/forms/__init__.py +5 -1
  45. netbox_dns/forms/dnssec_key_template.py +250 -0
  46. netbox_dns/forms/dnssec_policy.py +654 -0
  47. netbox_dns/forms/nameserver.py +121 -27
  48. netbox_dns/forms/record.py +215 -104
  49. netbox_dns/forms/record_template.py +285 -0
  50. netbox_dns/forms/registrar.py +108 -31
  51. netbox_dns/forms/registration_contact.py +282 -0
  52. netbox_dns/forms/view.py +331 -20
  53. netbox_dns/forms/zone.py +769 -373
  54. netbox_dns/forms/zone_template.py +463 -0
  55. netbox_dns/graphql/__init__.py +25 -22
  56. netbox_dns/graphql/enums.py +41 -0
  57. netbox_dns/graphql/filter_lookups.py +13 -0
  58. netbox_dns/graphql/filters/__init__.py +12 -0
  59. netbox_dns/graphql/filters/dnssec_key_template.py +63 -0
  60. netbox_dns/graphql/filters/dnssec_policy.py +124 -0
  61. netbox_dns/graphql/filters/nameserver.py +32 -0
  62. netbox_dns/graphql/filters/record.py +89 -0
  63. netbox_dns/graphql/filters/record_template.py +55 -0
  64. netbox_dns/graphql/filters/registrar.py +30 -0
  65. netbox_dns/graphql/filters/registration_contact.py +27 -0
  66. netbox_dns/graphql/filters/view.py +28 -0
  67. netbox_dns/graphql/filters/zone.py +147 -0
  68. netbox_dns/graphql/filters/zone_template.py +97 -0
  69. netbox_dns/graphql/schema.py +89 -7
  70. netbox_dns/graphql/types.py +355 -0
  71. netbox_dns/locale/de/LC_MESSAGES/django.mo +0 -0
  72. netbox_dns/locale/en/LC_MESSAGES/django.mo +0 -0
  73. netbox_dns/locale/fr/LC_MESSAGES/django.mo +0 -0
  74. netbox_dns/management/commands/cleanup_database.py +175 -156
  75. netbox_dns/management/commands/cleanup_rrset_ttl.py +64 -0
  76. netbox_dns/management/commands/rebuild_dnssync.py +23 -0
  77. netbox_dns/management/commands/setup_dnssync.py +140 -0
  78. netbox_dns/migrations/0001_squashed_netbox_dns_0_15.py +0 -27
  79. netbox_dns/migrations/0001_squashed_netbox_dns_0_22.py +557 -0
  80. netbox_dns/migrations/{0013_add_nameserver_zone_record_description.py → 0002_contact_description_registrar_description.py} +4 -9
  81. netbox_dns/migrations/0003_default_view.py +15 -0
  82. netbox_dns/migrations/0004_create_and_assign_default_view.py +26 -0
  83. netbox_dns/migrations/0005_alter_zone_view_not_null.py +18 -0
  84. netbox_dns/migrations/0006_templating.py +172 -0
  85. netbox_dns/migrations/0007_alter_ordering_options.py +25 -0
  86. netbox_dns/migrations/0008_view_prefixes.py +18 -0
  87. netbox_dns/migrations/0009_rename_contact_registrationcontact.py +36 -0
  88. netbox_dns/migrations/0010_view_ip_address_filter.py +18 -0
  89. netbox_dns/migrations/0011_rename_related_fields.py +63 -0
  90. netbox_dns/migrations/0012_natural_ordering.py +88 -0
  91. netbox_dns/migrations/0013_zonetemplate_soa_mname_zonetemplate_soa_rname.py +30 -0
  92. netbox_dns/migrations/0014_alter_unique_constraints_lowercase.py +42 -0
  93. netbox_dns/migrations/0015_dnssec.py +168 -0
  94. netbox_dns/migrations/{0015_add_record_status.py → 0016_dnssec_policy_status.py} +5 -4
  95. netbox_dns/migrations/0017_dnssec_policy_zone_zone_template.py +41 -0
  96. netbox_dns/migrations/0018_zone_domain_status_zone_expiration_date.py +23 -0
  97. netbox_dns/migrations/0019_dnssecpolicy_parental_agents.py +25 -0
  98. netbox_dns/migrations/0020_netbox_3_4.py +1 -1
  99. netbox_dns/migrations/0020_remove_dnssecpolicy_parental_agents_and_more.py +29 -0
  100. netbox_dns/migrations/0021_alter_record_ptr_record.py +25 -0
  101. netbox_dns/migrations/0021_record_ip_address.py +1 -1
  102. netbox_dns/migrations/0022_alter_record_ipam_ip_address.py +26 -0
  103. netbox_dns/migrations/0023_disable_ptr_false.py +27 -0
  104. netbox_dns/migrations/0024_zonetemplate_parental_agents.py +25 -0
  105. netbox_dns/migrations/0025_remove_zone_inline_signing_and_more.py +22 -0
  106. netbox_dns/migrations/0026_alter_dnssecpolicy_nsec3_opt_out.py +18 -0
  107. netbox_dns/migrations/0026_domain_registration.py +1 -1
  108. netbox_dns/migrations/0027_zone_comments.py +18 -0
  109. netbox_dns/migrations/0028_alter_zone_default_ttl_alter_zone_soa_minimum_and_more.py +54 -0
  110. netbox_dns/migrations/0028_rfc2317_fields.py +44 -0
  111. netbox_dns/migrations/0029_alter_registrationcontact_street.py +18 -0
  112. netbox_dns/migrations/0029_record_fqdn.py +30 -0
  113. netbox_dns/mixins/__init__.py +1 -0
  114. netbox_dns/mixins/object_modification.py +57 -0
  115. netbox_dns/models/__init__.py +5 -1
  116. netbox_dns/models/dnssec_key_template.py +114 -0
  117. netbox_dns/models/dnssec_policy.py +203 -0
  118. netbox_dns/models/nameserver.py +61 -30
  119. netbox_dns/models/record.py +781 -234
  120. netbox_dns/models/record_template.py +198 -0
  121. netbox_dns/models/registrar.py +34 -15
  122. netbox_dns/models/{contact.py → registration_contact.py} +72 -43
  123. netbox_dns/models/view.py +129 -9
  124. netbox_dns/models/zone.py +806 -242
  125. netbox_dns/models/zone_template.py +209 -0
  126. netbox_dns/navigation.py +176 -76
  127. netbox_dns/signals/__init__.py +0 -0
  128. netbox_dns/signals/dnssec.py +32 -0
  129. netbox_dns/signals/ipam_dnssync.py +216 -0
  130. netbox_dns/tables/__init__.py +5 -1
  131. netbox_dns/tables/dnssec_key_template.py +49 -0
  132. netbox_dns/tables/dnssec_policy.py +140 -0
  133. netbox_dns/tables/ipam_dnssync.py +12 -0
  134. netbox_dns/tables/nameserver.py +14 -17
  135. netbox_dns/tables/record.py +117 -59
  136. netbox_dns/tables/record_template.py +91 -0
  137. netbox_dns/tables/registrar.py +20 -10
  138. netbox_dns/tables/{contact.py → registration_contact.py} +22 -11
  139. netbox_dns/tables/view.py +47 -3
  140. netbox_dns/tables/zone.py +62 -31
  141. netbox_dns/tables/zone_template.py +78 -0
  142. netbox_dns/template_content.py +124 -38
  143. netbox_dns/templates/netbox_dns/dnsseckeytemplate.html +70 -0
  144. netbox_dns/templates/netbox_dns/dnssecpolicy.html +163 -0
  145. netbox_dns/templates/netbox_dns/nameserver.html +31 -28
  146. netbox_dns/templates/netbox_dns/record/managed.html +2 -1
  147. netbox_dns/templates/netbox_dns/record/related.html +17 -6
  148. netbox_dns/templates/netbox_dns/record.html +140 -93
  149. netbox_dns/templates/netbox_dns/recordtemplate.html +96 -0
  150. netbox_dns/templates/netbox_dns/registrar.html +41 -34
  151. netbox_dns/templates/netbox_dns/registrationcontact.html +76 -0
  152. netbox_dns/templates/netbox_dns/view/button.html +10 -0
  153. netbox_dns/templates/netbox_dns/view/prefix.html +44 -0
  154. netbox_dns/templates/netbox_dns/view/related.html +33 -0
  155. netbox_dns/templates/netbox_dns/view.html +62 -18
  156. netbox_dns/templates/netbox_dns/zone/base.html +6 -3
  157. netbox_dns/templates/netbox_dns/zone/child.html +6 -5
  158. netbox_dns/templates/netbox_dns/zone/child_zone.html +18 -0
  159. netbox_dns/templates/netbox_dns/zone/delegation_record.html +18 -0
  160. netbox_dns/templates/netbox_dns/zone/managed_record.html +1 -1
  161. netbox_dns/templates/netbox_dns/zone/record.html +6 -5
  162. netbox_dns/templates/netbox_dns/zone/registration.html +43 -24
  163. netbox_dns/templates/netbox_dns/zone/rfc2317_child_zone.html +18 -0
  164. netbox_dns/templates/netbox_dns/zone.html +178 -119
  165. netbox_dns/templates/netbox_dns/zonetemplate/child.html +46 -0
  166. netbox_dns/templates/netbox_dns/zonetemplate.html +124 -0
  167. netbox_dns/templatetags/netbox_dns.py +10 -0
  168. netbox_dns/urls.py +50 -210
  169. netbox_dns/utilities/__init__.py +3 -0
  170. netbox_dns/{utilities.py → utilities/conversions.py} +55 -7
  171. netbox_dns/utilities/dns.py +11 -0
  172. netbox_dns/utilities/ipam_dnssync.py +370 -0
  173. netbox_dns/validators/__init__.py +4 -0
  174. netbox_dns/validators/dns_name.py +116 -0
  175. netbox_dns/validators/dns_value.py +147 -0
  176. netbox_dns/validators/dnssec.py +148 -0
  177. netbox_dns/validators/rfc2317.py +28 -0
  178. netbox_dns/views/__init__.py +5 -1
  179. netbox_dns/views/dnssec_key_template.py +78 -0
  180. netbox_dns/views/dnssec_policy.py +146 -0
  181. netbox_dns/views/nameserver.py +34 -15
  182. netbox_dns/views/record.py +156 -15
  183. netbox_dns/views/record_template.py +93 -0
  184. netbox_dns/views/registrar.py +32 -13
  185. netbox_dns/views/registration_contact.py +101 -0
  186. netbox_dns/views/view.py +58 -14
  187. netbox_dns/views/zone.py +130 -33
  188. netbox_dns/views/zone_template.py +82 -0
  189. netbox_plugin_dns-1.4.7.dist-info/METADATA +132 -0
  190. netbox_plugin_dns-1.4.7.dist-info/RECORD +201 -0
  191. {netbox_plugin_dns-0.21.4.dist-info → netbox_plugin_dns-1.4.7.dist-info}/WHEEL +2 -1
  192. {netbox_plugin_dns-0.21.4.dist-info → netbox_plugin_dns-1.4.7.dist-info/licenses}/LICENSE +2 -1
  193. netbox_plugin_dns-1.4.7.dist-info/top_level.txt +1 -0
  194. netbox_dns/filters/__init__.py +0 -6
  195. netbox_dns/filters/nameserver.py +0 -18
  196. netbox_dns/filters/record.py +0 -53
  197. netbox_dns/filters/view.py +0 -18
  198. netbox_dns/filters/zone.py +0 -112
  199. netbox_dns/forms/contact.py +0 -211
  200. netbox_dns/graphql/contact.py +0 -19
  201. netbox_dns/graphql/nameserver.py +0 -19
  202. netbox_dns/graphql/record.py +0 -19
  203. netbox_dns/graphql/registrar.py +0 -19
  204. netbox_dns/graphql/view.py +0 -19
  205. netbox_dns/graphql/zone.py +0 -19
  206. netbox_dns/management/commands/setup_coupling.py +0 -75
  207. netbox_dns/management/commands/update_soa.py +0 -22
  208. netbox_dns/middleware.py +0 -226
  209. netbox_dns/migrations/0001_initial.py +0 -115
  210. netbox_dns/migrations/0002_zone_default_ttl.py +0 -18
  211. netbox_dns/migrations/0003_soa_managed_records.py +0 -112
  212. netbox_dns/migrations/0004_create_ptr_for_a_aaaa_records.py +0 -80
  213. netbox_dns/migrations/0005_update_ns_records.py +0 -41
  214. netbox_dns/migrations/0006_zone_soa_serial_auto.py +0 -29
  215. netbox_dns/migrations/0007_alter_zone_soa_serial_auto.py +0 -17
  216. netbox_dns/migrations/0008_zone_status_names.py +0 -21
  217. netbox_dns/migrations/0009_netbox32.py +0 -71
  218. netbox_dns/migrations/0010_update_soa_records.py +0 -58
  219. netbox_dns/migrations/0011_add_view_model.py +0 -70
  220. netbox_dns/migrations/0012_adjust_zone_and_record.py +0 -17
  221. netbox_dns/migrations/0014_add_view_description.py +0 -16
  222. netbox_dns/migrations/0016_cleanup_ptr_records.py +0 -38
  223. netbox_dns/migrations/0017_alter_record_ttl.py +0 -17
  224. netbox_dns/migrations/0018_zone_arpa_network.py +0 -51
  225. netbox_dns/migrations/0019_update_ns_ttl.py +0 -19
  226. netbox_dns/templates/netbox_dns/contact.html +0 -71
  227. netbox_dns/templates/netbox_dns/related_dns_objects.html +0 -21
  228. netbox_dns/templatetags/view_helpers.py +0 -15
  229. netbox_dns/validators.py +0 -57
  230. netbox_dns/views/contact.py +0 -83
  231. netbox_plugin_dns-0.21.4.dist-info/METADATA +0 -101
  232. netbox_plugin_dns-0.21.4.dist-info/RECORD +0 -110
@@ -0,0 +1,201 @@
1
+ netbox_dns/__init__.py,sha256=k0lnkAKuyqKtF3pHrBaaoptS2rFpZtxS9Kbm7GYkevs,4917
2
+ netbox_dns/apps.py,sha256=JCW5eS-AQBUubDJve1DjP-IRFKTFGQh1NLGWzJpC5MI,151
3
+ netbox_dns/filters.py,sha256=MQyBoWMybirgaQrnlZZZ4_NY6uMyPDXevprpioTMOSM,161
4
+ netbox_dns/navigation.py,sha256=ZF2-bKRfuxXnLArSCvozyRXRd7GME14sVJZdmDEMhBk,7741
5
+ netbox_dns/template_content.py,sha256=BCBx7dFZOu429CSyG5jFPnDSF8nJNLzwAsCGpAGF0zI,5787
6
+ netbox_dns/urls.py,sha256=wrse8l5scD-jz_O7WY0YXRlYPzpkL-0-kyAd-wCPtbQ,2596
7
+ netbox_dns/api/field_serializers.py,sha256=nVZ6d69DWagONDwbYCP2j3cmL-x9lryitF1wThEJxyI,725
8
+ netbox_dns/api/nested_serializers.py,sha256=oox7KSh_c4Zk8gt4bETtjOIedNsH_cAUk9ytlB7Wsnc,3860
9
+ netbox_dns/api/serializers.py,sha256=OHrpfJkBn6D1y6b3nIxBEFyE50U5p-Aqv4lBojMEFgk,474
10
+ netbox_dns/api/urls.py,sha256=-kQaei47yZeGbDpQ9RaFaFlFb682ThuPA5h321_2cgM,1000
11
+ netbox_dns/api/views.py,sha256=nmv2LTo8PSEOmb8JWPlZ2eCqXZtIznvyNITwj1Y9Lx0,4418
12
+ netbox_dns/api/serializers_/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
13
+ netbox_dns/api/serializers_/dnssec_key_template.py,sha256=90pPJJ7qqlFEKHKohf5dLfHKkzkKo9kzjt0JRzdsJXA,1681
14
+ netbox_dns/api/serializers_/dnssec_policy.py,sha256=oOYI4eZ9PuA10BOS4G0B1ukaP7yyMFIP_H12eurT21U,4409
15
+ netbox_dns/api/serializers_/nameserver.py,sha256=pJw3qcU-d-f3qXZddn8p9EPWZ-CJtP1YkqMpQ4bpF9Q,1315
16
+ netbox_dns/api/serializers_/prefix.py,sha256=kZ1DjDly6VFZamXSxGa57YC6MfZZcI5S7jmGBkVB2_I,551
17
+ netbox_dns/api/serializers_/record.py,sha256=U7BygrV8QTeV9ng3cB5VlI4fad9leoDL1x1Hswaam4k,2597
18
+ netbox_dns/api/serializers_/record_template.py,sha256=bxIlAZS0OmpfW4CsfCfMtPxVOKL0mlrxy6K6UxH_Ws4,1709
19
+ netbox_dns/api/serializers_/registrar.py,sha256=6S13zlKJrKg3gtkM_JM1fnAEyMlJYnL7BbYnrlj6UqY,974
20
+ netbox_dns/api/serializers_/registration_contact.py,sha256=92MjoGzeupZ6TwZDhyf7JMhV73uggNjA37aWePKjO94,1155
21
+ netbox_dns/api/serializers_/view.py,sha256=ch1v2_CrIO2a3pT-SDd6DnPdUUpmDUIMKs5i2FrxdQ0,1921
22
+ netbox_dns/api/serializers_/zone.py,sha256=KkbbH3uPQEESAx14wagJQ2EXjA4sE-FlJdXGEIFmgyQ,6599
23
+ netbox_dns/api/serializers_/zone_template.py,sha256=kXuu6t7okqHce0IaHWGOckPeS8lejhyIvN4dQLlhyZ4,4465
24
+ netbox_dns/choices/__init__.py,sha256=K3JfawICeoUny8O_Dqexr7DOxwyg3QqijZ4DO6j5yP8,106
25
+ netbox_dns/choices/dnssec_key_template.py,sha256=Xl3y_ScKJmnsqMH1sv6ezLcZI1rruHDGJP5e2IRSC4s,1511
26
+ netbox_dns/choices/dnssec_policy.py,sha256=1EH1VoLbewiTZmnACpxq6GN0UJDVA1L6cxs-Jf6OagI,839
27
+ netbox_dns/choices/record.py,sha256=Ynw1aDASQEovzIPJbRFRM6F-M9u39iHMe0aj9DZsrfk,2650
28
+ netbox_dns/choices/utilities.py,sha256=osvDMxOZnvxx9Jc7zKjkMGNFGxtnhM49q71Q-h61lLA,123
29
+ netbox_dns/choices/zone.py,sha256=KvyNL_TR_2FXCoH6usrXTRJYRzZ9W1PiDvunutAUYhY,4294
30
+ netbox_dns/fields/__init__.py,sha256=yUVrNQ7BvoeVRGoiRFmrZxXsp1LIwHLRLl0_5mBIyzk,143
31
+ netbox_dns/fields/address.py,sha256=t0BLnGKYyqraiHixEtt6FvpqUixaHoIFTN9YgNufWng,1750
32
+ netbox_dns/fields/choice_array.py,sha256=qECgwzJ9PVGIbpqC_JVzuSUsV7C3FG03ibv1EUrvZr4,850
33
+ netbox_dns/fields/ipam.py,sha256=wla-kBm77BpD0LNQhgRZS1RYbVois7WDqPpyQkUT02k,481
34
+ netbox_dns/fields/network.py,sha256=a5nTzjscRufxgMjVsf5juszSYuTujU50pQ9P7q4qMVs,3740
35
+ netbox_dns/fields/rfc2317.py,sha256=y72PZKlXZ8_6P4eeWZ8IF3gqOMjPxW48gk3AB81XboE,2642
36
+ netbox_dns/fields/timeperiod.py,sha256=InK3FVc8gHNQjx101a7HsGfrHxvoG1y6drYwuRjRSIE,941
37
+ netbox_dns/filtersets/__init__.py,sha256=bKppz_w3X2xNNHOcxZZiIO7zSkDaNTrZJ__k1U7rKik,275
38
+ netbox_dns/filtersets/dnssec_key_template.py,sha256=tu67QeZumlnEF6IrWrIF4UTHT5koRN87_xj-Y_YRDg4,1719
39
+ netbox_dns/filtersets/dnssec_policy.py,sha256=fx73JBXAPh-oiXc40Qcu6T59_zc8izsczVM6FW6Pzbw,3306
40
+ netbox_dns/filtersets/nameserver.py,sha256=4Yoejgw2eF1gw_3d_ah8UE13UJTML15BwvhXKN40mdA,1288
41
+ netbox_dns/filtersets/record.py,sha256=eR_tu8i5DlAo5OmdtOV7z0gRu7SDyyNoNgQ2FKBQESU,4038
42
+ netbox_dns/filtersets/record_template.py,sha256=8RDNACAr9qCgpPi2J4QOFLGR-1HAVLD09zCUlXeYHhc,1728
43
+ netbox_dns/filtersets/registrar.py,sha256=N9Y0qafHJBwrw4Yl1p_0SFb8oNDP8kJ-fkzJhCrf5-o,1024
44
+ netbox_dns/filtersets/registration_contact.py,sha256=3DkMc5ws4xiF0s5M3N-iuI0mwgix57FHb3mdM3lhEKU,1186
45
+ netbox_dns/filtersets/view.py,sha256=TxEAmUZ6p7fXXfSnFhdN8Ub6MsZNZ1cy8-Sy3cgG77k,1145
46
+ netbox_dns/filtersets/zone.py,sha256=Hzvpd2UFcsSSKJqtpwbhMsIKe1EAr82IC_LN1FPx91g,8442
47
+ netbox_dns/filtersets/zone_template.py,sha256=P4UM-2nTiFGWlcexflKpacszeBHLuHrE_ixGGonZaQ0,5404
48
+ netbox_dns/forms/__init__.py,sha256=tObkTOHw_6kVtEcwdyshN0Ql-8VGhwsgQw7owL_s2lI,273
49
+ netbox_dns/forms/dnssec_key_template.py,sha256=QpNJFF_fx31JEFqRE0_91y8nYQ9_t62TV9l9QJmmMU0,6048
50
+ netbox_dns/forms/dnssec_policy.py,sha256=aARkERqxU7DugvgvO0cwxpynvGz_YGtlDX6R9My1rHE,18523
51
+ netbox_dns/forms/nameserver.py,sha256=_iQJXbdFrrtMnRT8yZHnOp1Nj1iwxjHIAH_hrvCkrKU,3848
52
+ netbox_dns/forms/record.py,sha256=wRl3uRY13VK8cF79u69-DDJmHJnZjwuLR60PsUGJ3p0,8493
53
+ netbox_dns/forms/record_template.py,sha256=5yuY2ppV2diEOdm_IN3QSLLEdWkOkWZOYRtOh0qPY7A,6796
54
+ netbox_dns/forms/registrar.py,sha256=oLMcXJOpt0F02a2Aga6A45rja7TvI18nTCZb_Dx_8t0,4038
55
+ netbox_dns/forms/registration_contact.py,sha256=GtUmHzPmAFNRt81rTgJbmb5TMoEJ-mpmjltkuyppJwc,6157
56
+ netbox_dns/forms/view.py,sha256=KZ2enzbqAEElt3b5C02kMJwnIDEjdQf_BsgMuMqKP50,10836
57
+ netbox_dns/forms/zone.py,sha256=mS1kCz57I0SXMLFqR_fPYK4TSKbiknf8Aplo2TnchsU,30541
58
+ netbox_dns/forms/zone_template.py,sha256=SN4E-DkD1RgUcZhvUNzRFg4-FHbkvdFs1l28eShAx4o,12203
59
+ netbox_dns/graphql/__init__.py,sha256=0xg_5d1PPFTadBOZo752t5sfZeLFrqs2jM51Rbf8ti4,652
60
+ netbox_dns/graphql/enums.py,sha256=vC-v24AuNbaGoekLTDu1PBVbnR1aYeX6LmvrZkfd2F4,1453
61
+ netbox_dns/graphql/filter_lookups.py,sha256=P6wW2JrtkzUiIx6mJz_DvwYg5Sov68IKAx0zVQfuvYY,355
62
+ netbox_dns/graphql/schema.py,sha256=KlbJmlfQEqZhvb6-cYmq94mrMFcQoCh3MldaUD5eVV4,2904
63
+ netbox_dns/graphql/types.py,sha256=drw0dQO10QAle8__YBhtK-uZwsGZurfcpXBb3Et35uA,10279
64
+ netbox_dns/graphql/filters/__init__.py,sha256=bKppz_w3X2xNNHOcxZZiIO7zSkDaNTrZJ__k1U7rKik,275
65
+ netbox_dns/graphql/filters/dnssec_key_template.py,sha256=hK7KgikQOC-BMp88PR1moHQboWd-DS59GwQ0TJADdLM,2076
66
+ netbox_dns/graphql/filters/dnssec_policy.py,sha256=MAnnCU48UhtETcXJjwLdiikczpb5fR3k6wrfZCQKJTI,4737
67
+ netbox_dns/graphql/filters/nameserver.py,sha256=sDVIrRXBeyscGfQSost4SqrBnBQ_ZIK13GjaXkKAcCw,1050
68
+ netbox_dns/graphql/filters/record.py,sha256=v3-8zyVrA0Hl4AC9d4SkYAQLHpQ1StIP-ws8xM_5Qb4,3313
69
+ netbox_dns/graphql/filters/record_template.py,sha256=sCAm-ct3aXjz9XNtAfUhPXaXRRHIaiXq_oQ4oFzxFY8,1819
70
+ netbox_dns/graphql/filters/registrar.py,sha256=4tv1nlZU41-sOsNXf3-JyZESpAdktsDj7JTr1hv0aG4,1158
71
+ netbox_dns/graphql/filters/registration_contact.py,sha256=feCw4zZd2UQ9895Gg0PJ4R-oGm90ss5XB6ve3B9JlVg,1402
72
+ netbox_dns/graphql/filters/view.py,sha256=ozXGNJ0ELri2FAnQXPHDs3--Hznzx4ZF5mH264nr-DI,934
73
+ netbox_dns/graphql/filters/zone.py,sha256=T-f-2P9v9PqJSSUEs5uz1r9l9ULvVBqwiLNkHecE0vk,5247
74
+ netbox_dns/graphql/filters/zone_template.py,sha256=6ZxBN_VPXvBDGXXwcYlkX6wJXx_IlMAZIEDX5-ARO_4,3100
75
+ netbox_dns/locale/de/LC_MESSAGES/django.mo,sha256=Q6edOBPHxBTbVYE-7TM9G_o83ED_9TpGgefOazR6TP0,29831
76
+ netbox_dns/locale/en/LC_MESSAGES/django.mo,sha256=GDnSZkfHs3yjtTsll7dksEEej4B50F8pc9RGytZNubM,393
77
+ netbox_dns/locale/fr/LC_MESSAGES/django.mo,sha256=7SR-6NFpGK9eR6v6fOyrOgEUDeher2jzg_mOvPiNIIk,29910
78
+ netbox_dns/management/commands/cleanup_database.py,sha256=Dv1DCN55MzIHoQk3TBV-SmaNf_mFo-PbzCm7fOmZspY,7953
79
+ netbox_dns/management/commands/cleanup_rrset_ttl.py,sha256=7W4_qRzm_Crnb1L4X8lfrXRJanBqDGLC1yCLvrIaGG4,2256
80
+ netbox_dns/management/commands/rebuild_dnssync.py,sha256=Wnix38pzuC1AtGm9-xU8W8j7NYLlUIMpmw5mT2rhBYc,929
81
+ netbox_dns/management/commands/setup_dnssync.py,sha256=qtVj6egSjclaQbuI60hLfl-zg89VJVbX-TB17f1k77Y,5730
82
+ netbox_dns/migrations/0001_squashed_netbox_dns_0_15.py,sha256=3U0810NWSHPu2dTSHpfzlleDgwMS04FhJ_CkO76SDaw,10283
83
+ netbox_dns/migrations/0001_squashed_netbox_dns_0_22.py,sha256=ML6Hp17lrXiaG0eUlBjKMm6HUNhw0AHPnKrb9AN-F6E,20279
84
+ netbox_dns/migrations/0002_contact_description_registrar_description.py,sha256=ZrI-L3jJ5GzdVx21pomgM4waE-njixHQjl_grjsGr0I,583
85
+ netbox_dns/migrations/0003_default_view.py,sha256=NByVlAyiiK6WCfJ014BiFPkoNcHeqr1IpkgNdHiwbWw,367
86
+ netbox_dns/migrations/0004_create_and_assign_default_view.py,sha256=npBFxWuJCZeMhbZLEH9C_sZcQZRaa3IOlyn4p_GULyk,627
87
+ netbox_dns/migrations/0005_alter_zone_view_not_null.py,sha256=vUfCFD-qeh5M1WCqtE1eYHXZwQVCcf841Z2-0CdcMRI,463
88
+ netbox_dns/migrations/0006_templating.py,sha256=7MOZ2bLwkjK1BQCBPBaFWJ-mS_JNrok1XUSh4rriq9Y,6271
89
+ netbox_dns/migrations/0007_alter_ordering_options.py,sha256=IDGgxEWOaSs9_WKJK1C_5_6M1uJtYscn3Vco0UHAol8,639
90
+ netbox_dns/migrations/0008_view_prefixes.py,sha256=LInzrOXTflGd2WUmyXZtjEegg7S_KBNvrbdo3jE28fE,472
91
+ netbox_dns/migrations/0009_rename_contact_registrationcontact.py,sha256=-8IknnaIZxoBaf5uSQj8rVe0SRvYsuhcJ0_jzRh4EUk,1314
92
+ netbox_dns/migrations/0010_view_ip_address_filter.py,sha256=uARQADJB7u1vpx0TBlOfGTkqMCF4xZclMhITESHm-ok,420
93
+ netbox_dns/migrations/0011_rename_related_fields.py,sha256=j9lI-QBmTSzOrAxDl02SdgHZtv9nRfJ3cZX_wjj5urM,1881
94
+ netbox_dns/migrations/0012_natural_ordering.py,sha256=h5XVSmRwisUqz5OJzkBW41dwHIBlu08zqG2-1mxiiw4,2725
95
+ netbox_dns/migrations/0013_zonetemplate_soa_mname_zonetemplate_soa_rname.py,sha256=Y6TdD_dUZ-Pb1kuRR3l3kSwObn_Cpcmp3tm75qSkc5g,795
96
+ netbox_dns/migrations/0014_alter_unique_constraints_lowercase.py,sha256=Ueesv7uoB2ZQ1-7kG_qsMlPv0mn3mdDeI8OoAKIschM,1409
97
+ netbox_dns/migrations/0015_dnssec.py,sha256=PRS8wjN3_h-M17gOHagM-5pkZuuS5nlaJjlIqzKr5f8,6716
98
+ netbox_dns/migrations/0016_dnssec_policy_status.py,sha256=MAGTAz95WYkp2PR1Q1EQehEvAYgL1V-ksMa3wlKHgGE,384
99
+ netbox_dns/migrations/0017_dnssec_policy_zone_zone_template.py,sha256=m36a08UMLzs2l-IpKY1nXdspcbGouCQWMG15m19s8kE,1162
100
+ netbox_dns/migrations/0018_zone_domain_status_zone_expiration_date.py,sha256=P_JaNl3NhTPgX7pgA-ZyBJpujrg4HzPcpW6X3FbghMk,595
101
+ netbox_dns/migrations/0019_dnssecpolicy_parental_agents.py,sha256=ENbj3lhsCYHBflUnb2LrfUyTxwvPwcACmL8sUsm7P7A,655
102
+ netbox_dns/migrations/0020_netbox_3_4.py,sha256=UMcHdn8ZAuQjUaM_3rEGpktYrM0TuvhccD7Jt7WQnPs,1271
103
+ netbox_dns/migrations/0020_remove_dnssecpolicy_parental_agents_and_more.py,sha256=Fq2Tv-yz4TAY0yzyVs6j79ztIJa1wOm5oSdbPosYdh0,756
104
+ netbox_dns/migrations/0021_alter_record_ptr_record.py,sha256=arSb_EVRX0RjuldPpFTjfyLHPmzQbyzHq9qw1It50c0,656
105
+ netbox_dns/migrations/0021_record_ip_address.py,sha256=EqdhWXmq7aiK4X79xTRUZng3zFncCl-8JoO65HqlJKw,3244
106
+ netbox_dns/migrations/0022_alter_record_ipam_ip_address.py,sha256=KKmB3moxPJBKytOBymy0tS6ABIKjpNd5YY6cG--Lluk,727
107
+ netbox_dns/migrations/0022_search.py,sha256=KW1ffEZ4-0dppGQ_KD1EN7iw8eQJOnDco-xfJFRZqKQ,172
108
+ netbox_dns/migrations/0023_alter_record_value.py,sha256=4_4v8YZzU8_jadJqIUUjH6SIhNTeALWhclozTqYDmv0,378
109
+ netbox_dns/migrations/0023_disable_ptr_false.py,sha256=Wo-d60QmPCcvdVIVShF8L7z-L2eofJwWTIiyrr51bjU,652
110
+ netbox_dns/migrations/0024_tenancy.py,sha256=3kc5l5_AyfhOI6g6mbCfReUAbSgb2DAv0MDMZqJ-3YQ,1745
111
+ netbox_dns/migrations/0024_zonetemplate_parental_agents.py,sha256=e1mQ1NwP8eqqfgc74PFSRmnENL5VCLPIFzInePsZd4w,635
112
+ netbox_dns/migrations/0025_ipam_coupling_cf.py,sha256=7uHujclWrsYw5QMLWft0Po78Ow5Q8MjPuU7moKyQ2qs,620
113
+ netbox_dns/migrations/0025_remove_zone_inline_signing_and_more.py,sha256=jCubcnlrdTbffK-DpRvmJ5CKcg5drGJg13sUG7OTtdU,522
114
+ netbox_dns/migrations/0026_alter_dnssecpolicy_nsec3_opt_out.py,sha256=bDjqslmVEBOspXmGbhakf8juZdHT9fU_ZY2kSUs7mUI,430
115
+ netbox_dns/migrations/0026_domain_registration.py,sha256=qUJ1oUGHIGGNWD7QRLnxElbM5eNp7dYNNn_OYIw8Xvo,5796
116
+ netbox_dns/migrations/0027_alter_registrar_iana_id.py,sha256=QUtRIrqqfkraFmzzeJFZWAEv4PfrOouoHtrV6FRn8Kc,404
117
+ netbox_dns/migrations/0027_zone_comments.py,sha256=brM80qZzY2bsyArrF5Nj6QLStSi3z5r7FhxErVwL5Po,398
118
+ netbox_dns/migrations/0028_alter_zone_default_ttl_alter_zone_soa_minimum_and_more.py,sha256=N0BDmAJd1GSUq16R7HB2V1-cDhMW_nb3HVxz88pvDwc,1639
119
+ netbox_dns/migrations/0028_rfc2317_fields.py,sha256=D8r43xxBjYXiL6ycmX8RY5_WG7tRYEDjutOeYM1H56I,1364
120
+ netbox_dns/migrations/0029_alter_registrationcontact_street.py,sha256=VIKu4oIrfbL5MVqJ-VuPlqdAKBMmy5FqaykUZdA42C4,451
121
+ netbox_dns/migrations/0029_record_fqdn.py,sha256=UAAU38ekKQyiYDOJlcrz6Qbk4bqZfSHZyAHUZFFQrOw,808
122
+ netbox_dns/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
123
+ netbox_dns/mixins/__init__.py,sha256=LxTEfpod_RHCyMtnzDljv0_dwqp2z3Q6tqbXW8LTGD8,35
124
+ netbox_dns/mixins/object_modification.py,sha256=AR64fU5f7g-scNAj9b54eSoS9dpjyOpqrxXVXPcOhY8,1807
125
+ netbox_dns/models/__init__.py,sha256=CuwFENIVUv0FNMDlY18Am-mvN5kBGkPOGavCP0cle7c,273
126
+ netbox_dns/models/dnssec_key_template.py,sha256=AcyD9PLtg1lLZAFlEJ8TugSlglOSIBVihxgmi39zRm4,2738
127
+ netbox_dns/models/dnssec_policy.py,sha256=be-ceOgUS48ACsZcZW51VivkWmuqXAszlAJEKt11gf8,5398
128
+ netbox_dns/models/nameserver.py,sha256=oVfyc_iWRzxVE2tIhfRb1Vuj2gZmlfFFzEtXj9ZEr6s,3848
129
+ netbox_dns/models/record.py,sha256=7TQFfZFGE-PhdTaE6TsAr4qIcso3upK7poB9N8Ats7Y,32838
130
+ netbox_dns/models/record_template.py,sha256=DyoUwPpvUL3oCELwsbw2z4zjoYLgzRnBt2t8kitALJc,5280
131
+ netbox_dns/models/registrar.py,sha256=PSKoMN-29l1aszqiYQ3HKlgBVivBN-ZbmqZqCtzbL78,1777
132
+ netbox_dns/models/registration_contact.py,sha256=yiK-ef9wTcSoQvar_snqJn7J_TbZ8hZOcxEeJOmYmQk,3651
133
+ netbox_dns/models/view.py,sha256=pwo7i8gtukIRgAC1A4rm58jcEpIbsSW_IUq6vSv-mRo,4618
134
+ netbox_dns/models/zone.py,sha256=JAKk_4bw3LOENFCKzjEiehIu1_ryU-I7vRP4QsAbw5o,36982
135
+ netbox_dns/models/zone_template.py,sha256=jm7XsBADOWhGYOH-_n9a97CTE6w_BCP3gMEUIO-tfTs,5391
136
+ netbox_dns/signals/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
137
+ netbox_dns/signals/dnssec.py,sha256=o4MOEg6ftxoDWFAhDtajkXzb7Nb6KuUHjtx1zNu7C1w,1040
138
+ netbox_dns/signals/ipam_dnssync.py,sha256=1zhlf4cMcJLlFosX7YzyqVYdFFHV4MFwTz5KCdL8xQc,7730
139
+ netbox_dns/tables/__init__.py,sha256=tObkTOHw_6kVtEcwdyshN0Ql-8VGhwsgQw7owL_s2lI,273
140
+ netbox_dns/tables/dnssec_key_template.py,sha256=5Y4S3Q_RtDdUHI4KxY37Trm7uKQCFUcqkC5mrb8Wi_A,1101
141
+ netbox_dns/tables/dnssec_policy.py,sha256=3DzCHcR6Rj4K6X8tjll1D6vthgvlvHRpezy42x-SCKg,3417
142
+ netbox_dns/tables/ipam_dnssync.py,sha256=7IK95XlA2ter6gsHqXjXPd6WubpOxrV-O5-UT6R1CKU,330
143
+ netbox_dns/tables/nameserver.py,sha256=NFFHwwW174x_XskHF9oBllnI22PGV0J78mklrJF_psw,741
144
+ netbox_dns/tables/record.py,sha256=yaRcdBic9dGmeZGFmGsGWV_ZcmpVKBgxd5CYgI20VWY,4788
145
+ netbox_dns/tables/record_template.py,sha256=Bsjz4yZEQ3Eh-akMMEgPRB1z0ZZ4ysSotb-CwdOFwUI,2012
146
+ netbox_dns/tables/registrar.py,sha256=yI4n0jq7igYwa-zs6YT6YVV2FxkgpfkSAsA_iPzel7A,776
147
+ netbox_dns/tables/registration_contact.py,sha256=PeXp5l2WC5qIwctNdk_WP9LRDq_7bnoUlSS3OS6-SDs,980
148
+ netbox_dns/tables/view.py,sha256=Z3323-796hbpQMCH7CbmcXp3QxaGHEh6_MwJ2UqDpiI,1326
149
+ netbox_dns/tables/zone.py,sha256=Dv8NvUrfepXhba1kMxLrqRUQEy0v4jKq5_5dCAR0iuw,2481
150
+ netbox_dns/tables/zone_template.py,sha256=90geASGP6jSqKnvx2t-DaSxNZpp7j67lH1t0UzsKZ1Q,1755
151
+ netbox_dns/templates/netbox_dns/dnsseckeytemplate.html,sha256=dSEyHgUp0k_5JSdR4s4m_7Rom67TqvRIQN0zbQKYfjE,2839
152
+ netbox_dns/templates/netbox_dns/dnssecpolicy.html,sha256=e1nfrk-VvSY1AC9Vi9LO5Eukck6l10pdtDwW0zKbRjE,8105
153
+ netbox_dns/templates/netbox_dns/nameserver.html,sha256=MawPiuAmjFrbv0zRi-7xkm8vr-dT1tlEno8EcoQ9peU,1714
154
+ netbox_dns/templates/netbox_dns/record.html,sha256=aFvbIEhhfp0AH5tRDNSgc2nQIymGgnVilk5Q8lCpKKw,7055
155
+ netbox_dns/templates/netbox_dns/recordtemplate.html,sha256=a29PAUl-KI_I1lxWpVdPp2loJtzgis9DG9erOWrOZM0,3708
156
+ netbox_dns/templates/netbox_dns/registrar.html,sha256=4kJuj3biiDxQrIMQEQUEmF4iGRE4psr6Fh0CBP1evz8,2308
157
+ netbox_dns/templates/netbox_dns/registrationcontact.html,sha256=sljVp_MrPSJRc2vJCPFXq9MiWOw4wjbr1kI_YStBntw,3094
158
+ netbox_dns/templates/netbox_dns/view.html,sha256=1MuzOYNQezRrryNjlklgxErjGTFoVnwqcxf4qceuglw,3320
159
+ netbox_dns/templates/netbox_dns/zone.html,sha256=zCw33RbcsGO5FhJ_en7olBXWJBArsxUp9Uv5jNS0vTQ,8111
160
+ netbox_dns/templates/netbox_dns/zonetemplate.html,sha256=juPdeCtpZGcCqM-nJT4IVTmwgOtTOEvDek2iiAJ6aQw,4801
161
+ netbox_dns/templates/netbox_dns/record/managed.html,sha256=uwpxQTxyfAXkWqThLT-T2ZssKNUhXTDDMnLWJSVuDNU,119
162
+ netbox_dns/templates/netbox_dns/record/related.html,sha256=RUQpZN-pox7oVZ3Excxi0ZbqlO2UD4FN_RmB1nNJf-E,699
163
+ netbox_dns/templates/netbox_dns/view/button.html,sha256=EMOB5x78XpyfN1qi-pY1CKKKLjyHo9rFUa4Uhq6rFMc,322
164
+ netbox_dns/templates/netbox_dns/view/prefix.html,sha256=Eaur1fd0YHeGttp2vRucz-ix7itxNu6To3NXwliGZco,1560
165
+ netbox_dns/templates/netbox_dns/view/related.html,sha256=C5P6IuRmQ_S2hAC44ceFyNJn8JVqRxMwIXkS0dEL500,1239
166
+ netbox_dns/templates/netbox_dns/zone/base.html,sha256=TWmFHnwRNjtBxidmSbiF7DzUmb6Poc2wnKNZDq9Karw,552
167
+ netbox_dns/templates/netbox_dns/zone/child.html,sha256=zvRHvgWiRmd58YlJCjVTPK4tdyH1UYXOJt8SzUuLMcM,2191
168
+ netbox_dns/templates/netbox_dns/zone/child_zone.html,sha256=b9CSGWEfWT7hLQ80gApMnu7mXM8w2LT-3UaOYe6HIRQ,510
169
+ netbox_dns/templates/netbox_dns/zone/delegation_record.html,sha256=bpJoyEYb5CVCoeH2260KMwwL6pUJxKA-Dt0qUruBEdk,517
170
+ netbox_dns/templates/netbox_dns/zone/managed_record.html,sha256=LOchMAJyfMZIICE6q0pX1eorRbtgUtOQ1u0VvJKCDZ8,514
171
+ netbox_dns/templates/netbox_dns/zone/record.html,sha256=Y_gg9EUIqjSYxmIZKufAK8jyg9A54J-BoewNxUBoO1Y,2238
172
+ netbox_dns/templates/netbox_dns/zone/registration.html,sha256=jbgKoMVG8YNNXTBDEclUCxfj4KbV05C250jt6x6n9cc,2069
173
+ netbox_dns/templates/netbox_dns/zone/rfc2317_child_zone.html,sha256=rWlmb3zRQbLYQ_1dsa0twwu6y1dRj2tfFVEERH07p-s,517
174
+ netbox_dns/templates/netbox_dns/zonetemplate/child.html,sha256=S8BMNOZkfs8SM_4yfKR8_RnQXG47FHCe7rf2quDTc_Y,2247
175
+ netbox_dns/templatetags/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
176
+ netbox_dns/templatetags/netbox_dns.py,sha256=DND1DMPzv636Rak3M6Hor_Vw6pjqUfSTquofIw4dIsA,223
177
+ netbox_dns/utilities/__init__.py,sha256=cSGf-nGaRWx9b-Xrh3dLMJYoWNsZ6FF-qdmV4F1uOgg,74
178
+ netbox_dns/utilities/conversions.py,sha256=qYnzecmR28l8Je_H0vFvzJ2sikTiEiyxr6drl_aRocg,3016
179
+ netbox_dns/utilities/dns.py,sha256=UBiyQe8thiOTnKOmU9e2iRHHnGF9toVLe4efU623kX4,322
180
+ netbox_dns/utilities/ipam_dnssync.py,sha256=3AQ4-O34ma0flop3X88ZGEQQ56fVhl-ZlpWQT70UOB0,10634
181
+ netbox_dns/validators/__init__.py,sha256=X0hPZlC3VZcXMcvXKZ2_5LSoEJdXPNSBr4QtEIFSBJ0,94
182
+ netbox_dns/validators/dns_name.py,sha256=1MKnYAmkSTIQGf6zInqkpbIj5SCeCM0YGKmYOqFzUK4,3770
183
+ netbox_dns/validators/dns_value.py,sha256=cADhgTohXAtOLPzaoMKO9DahEUiDanpdiuKonrwFw0E,5278
184
+ netbox_dns/validators/dnssec.py,sha256=FzWLXX3qwS9ZMaLWHaBJStwJ_D96wp7GI4LYoKjoegc,4909
185
+ netbox_dns/validators/rfc2317.py,sha256=uKkwxpakiFFKdYA0qy8WSlEnbFwJD4MDw6gGV4F6skg,706
186
+ netbox_dns/views/__init__.py,sha256=tObkTOHw_6kVtEcwdyshN0Ql-8VGhwsgQw7owL_s2lI,273
187
+ netbox_dns/views/dnssec_key_template.py,sha256=06omBc2RCTltGH078mNLLwz3A_y9gqrtQ08ex1XEwlg,2694
188
+ netbox_dns/views/dnssec_policy.py,sha256=ZvkCVfvI78w8e9c0m8lSWgRwg-jg07PM8Od0HwAVjGI,4427
189
+ netbox_dns/views/nameserver.py,sha256=cLB0W1UnnvEmYdoCYH5HmjrFhbEZ1gWxJTKdMS-wuh0,3564
190
+ netbox_dns/views/record.py,sha256=eAHMxsd2xKL9Yc_lijSC28RkvDnOolh-tdYLxb0d9aA,7219
191
+ netbox_dns/views/record_template.py,sha256=Cye1rjlpAewRgIv7QGD7o5n-knjzqjEUJzZHVxtGX4s,3041
192
+ netbox_dns/views/registrar.py,sha256=gYpMyz3rRJDmBfEeRfVENvR6fdWXN1y0XbN4JBlXoHc,2625
193
+ netbox_dns/views/registration_contact.py,sha256=5bJWjNBisqCkBo6d2TJyyBJlc95WM7VcSA6wsEB184k,3383
194
+ netbox_dns/views/view.py,sha256=xLXt7sKrda3FpNXsBSJk8L8P2XhZ1sVb5OOXovCsKEU,3089
195
+ netbox_dns/views/zone.py,sha256=do8kB6o911D7wCdUbU72SRTaaNhDUG5pCT8WXGhGnWc,7122
196
+ netbox_dns/views/zone_template.py,sha256=5P9DT3XBRL-TiM5zFhBTMlMusL4bP2jTu3GHxKz5ojc,2553
197
+ netbox_plugin_dns-1.4.7.dist-info/licenses/LICENSE,sha256=I3tDu11bZfhFm3EkV4zOD5TmWgLjnUNLEFwrdjniZYs,1112
198
+ netbox_plugin_dns-1.4.7.dist-info/METADATA,sha256=WcRvZsiOHILEKyH_iUY45ofRPiFoUfBUIKXgktupw-E,8293
199
+ netbox_plugin_dns-1.4.7.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
200
+ netbox_plugin_dns-1.4.7.dist-info/top_level.txt,sha256=sA1Rwl1mRKvMC6XHe2ylZ1GF-Q1NGd08XedK9Y4xZc4,11
201
+ netbox_plugin_dns-1.4.7.dist-info/RECORD,,
@@ -1,4 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: poetry-core 1.8.1
2
+ Generator: setuptools (80.9.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
+
@@ -1,6 +1,7 @@
1
1
  MIT License
2
2
 
3
- Copyright (c) 2021 Aurora Research Lab
3
+ Copyright (c) 2021-2023 Aurora Research Lab
4
+ Copyright (c) 2023 Peter Eckel
4
5
 
5
6
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
7
  of this software and associated documentation files (the "Software"), to deal
@@ -0,0 +1 @@
1
+ netbox_dns
@@ -1,6 +0,0 @@
1
- from .view import *
2
- from .zone import *
3
- from .nameserver import *
4
- from .record import *
5
- from .contact import *
6
- from .registrar import *
@@ -1,18 +0,0 @@
1
- from django.db.models import Q
2
-
3
- from netbox.filtersets import NetBoxModelFilterSet
4
- from tenancy.filtersets import TenancyFilterSet
5
-
6
- from netbox_dns.models import NameServer
7
-
8
-
9
- class NameServerFilter(TenancyFilterSet, NetBoxModelFilterSet):
10
- class Meta:
11
- model = NameServer
12
- fields = ("id", "name", "tenant")
13
-
14
- def search(self, queryset, name, value):
15
- if not value.strip():
16
- return queryset
17
- qs_filter = Q(name__icontains=value)
18
- return queryset.filter(qs_filter)
@@ -1,53 +0,0 @@
1
- import django_filters
2
- from django.db.models import Q
3
-
4
- from netbox.filtersets import NetBoxModelFilterSet
5
- from tenancy.filtersets import TenancyFilterSet
6
-
7
- from netbox_dns.models import View, Zone, Record, RecordTypeChoices
8
-
9
-
10
- class RecordFilter(TenancyFilterSet, NetBoxModelFilterSet):
11
- """Filter capabilities for Record instances."""
12
-
13
- type = django_filters.MultipleChoiceFilter(
14
- choices=RecordTypeChoices,
15
- null_value=None,
16
- )
17
- zone_id = django_filters.ModelMultipleChoiceFilter(
18
- queryset=Zone.objects.all(),
19
- label="Parent Zone ID",
20
- )
21
- zone = django_filters.ModelMultipleChoiceFilter(
22
- queryset=Zone.objects.all(),
23
- field_name="zone__name",
24
- to_field_name="name",
25
- label="Parent Zone",
26
- )
27
- view_id = django_filters.ModelMultipleChoiceFilter(
28
- queryset=View.objects.all(),
29
- field_name="zone__view",
30
- label="ID of the View the Parent Zone belongs to",
31
- )
32
- view = django_filters.ModelMultipleChoiceFilter(
33
- queryset=View.objects.all(),
34
- field_name="zone__view__name",
35
- to_field_name="name",
36
- label="View the Parent Zone belongs to",
37
- )
38
- managed = django_filters.BooleanFilter()
39
-
40
- class Meta:
41
- model = Record
42
- fields = ("id", "type", "name", "value", "status", "zone", "managed", "tenant")
43
-
44
- def search(self, queryset, name, value):
45
- """Perform the filtered search."""
46
- if not value.strip():
47
- return queryset
48
- qs_filter = (
49
- Q(name__icontains=value)
50
- | Q(value__icontains=value)
51
- | Q(zone__name__icontains=value)
52
- )
53
- return queryset.filter(qs_filter)
@@ -1,18 +0,0 @@
1
- from django.db.models import Q
2
-
3
- from netbox.filtersets import NetBoxModelFilterSet
4
- from tenancy.filtersets import TenancyFilterSet
5
-
6
- from netbox_dns.models import View
7
-
8
-
9
- class ViewFilter(NetBoxModelFilterSet, TenancyFilterSet):
10
- class Meta:
11
- model = View
12
- fields = ("id", "name", "tenant")
13
-
14
- def search(self, queryset, name, value):
15
- if not value.strip():
16
- return queryset
17
- qs_filter = Q(name__icontains=value)
18
- return queryset.filter(qs_filter)
@@ -1,112 +0,0 @@
1
- import django_filters
2
- from django.db.models import Q
3
-
4
- from netbox.filtersets import NetBoxModelFilterSet
5
- from tenancy.filtersets import TenancyFilterSet
6
-
7
- from netbox_dns.models import View, Zone, ZoneStatusChoices, Registrar, Contact
8
-
9
-
10
- class ZoneFilter(TenancyFilterSet, NetBoxModelFilterSet):
11
- status = django_filters.ChoiceFilter(
12
- choices=ZoneStatusChoices,
13
- )
14
- view_id = django_filters.ModelMultipleChoiceFilter(
15
- queryset=View.objects.all(),
16
- label="View ID",
17
- )
18
- view = django_filters.ModelMultipleChoiceFilter(
19
- queryset=View.objects.all(),
20
- field_name="view__name",
21
- to_field_name="name",
22
- label="View",
23
- )
24
- registrar_id = django_filters.ModelMultipleChoiceFilter(
25
- queryset=Registrar.objects.all(),
26
- label="Registrar ID",
27
- )
28
- registrar = django_filters.ModelMultipleChoiceFilter(
29
- queryset=Registrar.objects.all(),
30
- field_name="registrar__name",
31
- to_field_name="name",
32
- label="Registrar",
33
- )
34
- registrant_id = django_filters.ModelMultipleChoiceFilter(
35
- queryset=Contact.objects.all(),
36
- label="Registrant ID",
37
- )
38
- registrant = django_filters.ModelMultipleChoiceFilter(
39
- queryset=Contact.objects.all(),
40
- field_name="registrant__contact_id",
41
- to_field_name="contact_id",
42
- label="Registrant",
43
- )
44
- admin_c_id = django_filters.ModelMultipleChoiceFilter(
45
- queryset=Contact.objects.all(),
46
- label="Administrative Contact ID",
47
- )
48
- admin_c = django_filters.ModelMultipleChoiceFilter(
49
- queryset=Contact.objects.all(),
50
- field_name="admin_c__contact_id",
51
- to_field_name="contact_id",
52
- label="Administrative Contact",
53
- )
54
- tech_c_id = django_filters.ModelMultipleChoiceFilter(
55
- queryset=Contact.objects.all(),
56
- label="Technical Contact ID",
57
- )
58
- tech_c = django_filters.ModelMultipleChoiceFilter(
59
- queryset=Contact.objects.all(),
60
- field_name="tech_c__contact_id",
61
- to_field_name="contact_id",
62
- label="Technical Contact",
63
- )
64
- billing_c_id = django_filters.ModelMultipleChoiceFilter(
65
- queryset=Contact.objects.all(),
66
- label="Billing Contact ID",
67
- )
68
- billing_c = django_filters.ModelMultipleChoiceFilter(
69
- queryset=Contact.objects.all(),
70
- field_name="billing_c__contact_id",
71
- to_field_name="contact_id",
72
- label="Billing Contact",
73
- )
74
-
75
- active = django_filters.BooleanFilter(
76
- label="Zone is active",
77
- )
78
-
79
- class Meta:
80
- model = Zone
81
- fields = (
82
- "id",
83
- "name",
84
- "view",
85
- "status",
86
- "nameservers",
87
- "registrar",
88
- "registry_domain_id",
89
- "registrant",
90
- "admin_c",
91
- "tech_c",
92
- "billing_c",
93
- "active",
94
- "tenant",
95
- )
96
-
97
- def search(self, queryset, name, value):
98
- """Perform the filtered search."""
99
- if not value.strip():
100
- return queryset
101
- qs_filter = (
102
- Q(name__icontains=value)
103
- | Q(status__icontains=value)
104
- | Q(view__name__icontains=value)
105
- | Q(registrar__name__icontains=value)
106
- | Q(registry_domain_id__icontains=value)
107
- | Q(registrant__name__icontains=value)
108
- | Q(admin_c__name__icontains=value)
109
- | Q(tech_c__name__icontains=value)
110
- | Q(billing_c__name__icontains=value)
111
- )
112
- return queryset.filter(qs_filter)
@@ -1,211 +0,0 @@
1
- from django import forms
2
-
3
- from netbox.forms import (
4
- NetBoxModelBulkEditForm,
5
- NetBoxModelFilterSetForm,
6
- NetBoxModelImportForm,
7
- NetBoxModelForm,
8
- )
9
- from utilities.forms.fields import TagFilterField
10
-
11
- from netbox_dns.models import Contact
12
-
13
-
14
- class ContactForm(NetBoxModelForm):
15
- class Meta:
16
- model = Contact
17
- fields = (
18
- "name",
19
- "contact_id",
20
- "organization",
21
- "street",
22
- "city",
23
- "state_province",
24
- "postal_code",
25
- "country",
26
- "phone",
27
- "phone_ext",
28
- "fax",
29
- "fax_ext",
30
- "email",
31
- "tags",
32
- )
33
-
34
-
35
- class ContactFilterForm(NetBoxModelFilterSetForm):
36
- model = Contact
37
- fieldsets = (
38
- (None, ("q", "name", "tags", "contact_id")),
39
- (
40
- "Address",
41
- (
42
- "organization",
43
- "street",
44
- "city",
45
- "state_province",
46
- "postal_code",
47
- "country",
48
- ),
49
- ),
50
- ("Communication", ("phone", "phone_ext", "fax", "fax_ext", "email")),
51
- )
52
-
53
- name = forms.CharField(
54
- required=False,
55
- )
56
- contact_id = forms.CharField(
57
- required=False,
58
- label="Contact ID",
59
- )
60
- organization = forms.CharField(
61
- required=False,
62
- )
63
- street = forms.CharField(
64
- required=False,
65
- )
66
- city = forms.CharField(
67
- required=False,
68
- )
69
- state_province = forms.CharField(
70
- required=False,
71
- label="State/Province",
72
- )
73
- postal_code = forms.CharField(
74
- required=False,
75
- label="Postal Code",
76
- )
77
- country = forms.CharField(
78
- required=False,
79
- )
80
- phone = forms.CharField(
81
- required=False,
82
- )
83
- phone_ext = forms.CharField(
84
- required=False,
85
- label="Phone Extension",
86
- )
87
- fax = forms.CharField(
88
- required=False,
89
- )
90
- fax_ext = forms.CharField(
91
- required=False,
92
- label="Fax Extension",
93
- )
94
- email = forms.CharField(
95
- required=False,
96
- )
97
- tags = TagFilterField(Contact)
98
-
99
-
100
- class ContactImportForm(NetBoxModelImportForm):
101
- class Meta:
102
- model = Contact
103
- fields = (
104
- "name",
105
- "contact_id",
106
- "organization",
107
- "street",
108
- "city",
109
- "state_province",
110
- "postal_code",
111
- "country",
112
- "phone",
113
- "phone_ext",
114
- "fax",
115
- "fax_ext",
116
- "email",
117
- "tags",
118
- )
119
-
120
-
121
- class ContactBulkEditForm(NetBoxModelBulkEditForm):
122
- model = Contact
123
-
124
- name = forms.CharField(
125
- required=False,
126
- label="Name",
127
- )
128
- organization = forms.CharField(
129
- required=False,
130
- label="Organization",
131
- )
132
- street = forms.CharField(
133
- required=False,
134
- label="Street",
135
- )
136
- city = forms.CharField(
137
- required=False,
138
- label="City",
139
- )
140
- state_province = forms.CharField(
141
- required=False,
142
- label="State/Province",
143
- )
144
- postal_code = forms.CharField(
145
- required=False,
146
- label="Postal Code",
147
- )
148
- country = forms.CharField(
149
- required=False,
150
- label="Country",
151
- )
152
- phone = forms.CharField(
153
- required=False,
154
- label="Phone",
155
- )
156
- phone_ext = forms.CharField(
157
- required=False,
158
- label="Phone Extension",
159
- )
160
- fax = forms.CharField(
161
- required=False,
162
- label="Fax",
163
- )
164
- fax_ext = forms.CharField(
165
- required=False,
166
- label="Fax Extension",
167
- )
168
- email = forms.CharField(
169
- required=False,
170
- label="Email Address",
171
- )
172
-
173
- fieldsets = (
174
- (None, ("name",)),
175
- (
176
- "Address",
177
- (
178
- "organization",
179
- "street",
180
- "city",
181
- "state_province",
182
- "postal_code",
183
- "country",
184
- ),
185
- ),
186
- (
187
- "Communication",
188
- (
189
- "phone",
190
- "phone_ext",
191
- "fax",
192
- "fax_ext",
193
- "email",
194
- ),
195
- ),
196
- )
197
-
198
- nullable_fields = (
199
- "name",
200
- "organization",
201
- "street",
202
- "city",
203
- "state_province",
204
- "postal_code",
205
- "country",
206
- "phone",
207
- "phone_ext",
208
- "fax",
209
- "fax_ext",
210
- "email",
211
- )
@@ -1,19 +0,0 @@
1
- from graphene import ObjectType
2
-
3
- from netbox.graphql.fields import ObjectField, ObjectListField
4
- from netbox.graphql.types import NetBoxObjectType
5
-
6
- from netbox_dns.models import Contact
7
- from netbox_dns.filters import ContactFilter
8
-
9
-
10
- class ContactType(NetBoxObjectType):
11
- class Meta:
12
- model = Contact
13
- fields = "__all__"
14
- filterset_class = ContactFilter
15
-
16
-
17
- class ContactQuery(ObjectType):
18
- contact = ObjectField(ContactType)
19
- contact_list = ObjectListField(ContactType)