netbox-plugin-dns 0.22.8__py3-none-any.whl → 1.0.0__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 netbox-plugin-dns might be problematic. Click here for more details.

Files changed (115) hide show
  1. netbox_dns/__init__.py +4 -15
  2. netbox_dns/api/nested_serializers.py +4 -60
  3. netbox_dns/api/serializers.py +8 -314
  4. netbox_dns/api/serializers_/__init__.py +0 -0
  5. netbox_dns/api/serializers_/contact.py +37 -0
  6. netbox_dns/api/serializers_/nameserver.py +39 -0
  7. netbox_dns/api/serializers_/record.py +90 -0
  8. netbox_dns/api/serializers_/registrar.py +31 -0
  9. netbox_dns/api/serializers_/view.py +34 -0
  10. netbox_dns/api/serializers_/zone.py +159 -0
  11. netbox_dns/api/views.py +13 -13
  12. netbox_dns/fields/network.py +21 -22
  13. netbox_dns/fields/rfc2317.py +3 -3
  14. netbox_dns/{filters → filtersets}/contact.py +2 -1
  15. netbox_dns/filtersets/nameserver.py +37 -0
  16. netbox_dns/{filters → filtersets}/record.py +51 -6
  17. netbox_dns/{filters → filtersets}/registrar.py +2 -1
  18. netbox_dns/{filters → filtersets}/view.py +2 -2
  19. netbox_dns/filtersets/zone.py +205 -0
  20. netbox_dns/forms/contact.py +61 -33
  21. netbox_dns/forms/nameserver.py +21 -8
  22. netbox_dns/forms/record.py +65 -38
  23. netbox_dns/forms/registrar.py +45 -15
  24. netbox_dns/forms/view.py +23 -9
  25. netbox_dns/forms/zone.py +182 -188
  26. netbox_dns/graphql/__init__.py +17 -27
  27. netbox_dns/graphql/filters.py +49 -0
  28. netbox_dns/graphql/schema.py +66 -7
  29. netbox_dns/graphql/types.py +143 -0
  30. netbox_dns/management/commands/cleanup_database.py +0 -4
  31. netbox_dns/management/commands/cleanup_rrset_ttl.py +3 -5
  32. netbox_dns/management/commands/setup_coupling.py +15 -15
  33. netbox_dns/management/commands/update_soa.py +1 -1
  34. netbox_dns/migrations/0001_squashed_netbox_dns_0_15.py +0 -27
  35. netbox_dns/migrations/0001_squashed_netbox_dns_0_22.py +558 -0
  36. netbox_dns/migrations/{0013_add_nameserver_zone_record_description.py → 0002_contact_description_registrar_description.py} +4 -9
  37. netbox_dns/migrations/0003_default_view.py +15 -0
  38. netbox_dns/migrations/0004_create_and_assign_default_view.py +26 -0
  39. netbox_dns/migrations/0005_alter_zone_view_not_null.py +18 -0
  40. netbox_dns/migrations/0020_netbox_3_4.py +1 -1
  41. netbox_dns/models/contact.py +6 -1
  42. netbox_dns/models/nameserver.py +5 -1
  43. netbox_dns/models/record.py +32 -34
  44. netbox_dns/models/registrar.py +5 -1
  45. netbox_dns/models/view.py +54 -1
  46. netbox_dns/models/zone.py +68 -54
  47. netbox_dns/navigation.py +1 -15
  48. netbox_dns/signals/ipam_coupling.py +3 -9
  49. netbox_dns/tables/contact.py +1 -0
  50. netbox_dns/tables/nameserver.py +0 -2
  51. netbox_dns/tables/registrar.py +1 -0
  52. netbox_dns/tables/view.py +9 -2
  53. netbox_dns/template_content.py +4 -8
  54. netbox_dns/templates/netbox_dns/contact.html +60 -56
  55. netbox_dns/templates/netbox_dns/nameserver.html +27 -27
  56. netbox_dns/templates/netbox_dns/record.html +92 -94
  57. netbox_dns/templates/netbox_dns/registrar.html +38 -36
  58. netbox_dns/templates/netbox_dns/view.html +25 -21
  59. netbox_dns/templates/netbox_dns/zone/base.html +5 -3
  60. netbox_dns/templates/netbox_dns/zone/child.html +3 -3
  61. netbox_dns/templates/netbox_dns/zone/managed_record.html +1 -1
  62. netbox_dns/templates/netbox_dns/zone/record.html +3 -3
  63. netbox_dns/templates/netbox_dns/zone/registration.html +26 -27
  64. netbox_dns/templates/netbox_dns/zone/rfc2317_child_zone.html +1 -1
  65. netbox_dns/templates/netbox_dns/zone.html +148 -149
  66. netbox_dns/urls/__init__.py +17 -0
  67. netbox_dns/urls/contact.py +51 -0
  68. netbox_dns/urls/nameserver.py +69 -0
  69. netbox_dns/urls/record.py +41 -0
  70. netbox_dns/urls/registrar.py +63 -0
  71. netbox_dns/urls/view.py +39 -0
  72. netbox_dns/urls/zone.py +57 -0
  73. netbox_dns/utilities/__init__.py +1 -6
  74. netbox_dns/utilities/ipam_coupling.py +2 -7
  75. netbox_dns/validators/dns_name.py +4 -9
  76. netbox_dns/validators/rfc2317.py +2 -2
  77. netbox_dns/views/contact.py +4 -4
  78. netbox_dns/views/nameserver.py +5 -5
  79. netbox_dns/views/record.py +14 -29
  80. netbox_dns/views/registrar.py +4 -4
  81. netbox_dns/views/view.py +4 -4
  82. netbox_dns/views/zone.py +7 -8
  83. {netbox_plugin_dns-0.22.8.dist-info → netbox_plugin_dns-1.0.0.dist-info}/METADATA +27 -13
  84. netbox_plugin_dns-1.0.0.dist-info/RECORD +112 -0
  85. netbox_dns/filters/nameserver.py +0 -18
  86. netbox_dns/filters/zone.py +0 -112
  87. netbox_dns/graphql/contact.py +0 -19
  88. netbox_dns/graphql/nameserver.py +0 -19
  89. netbox_dns/graphql/record.py +0 -19
  90. netbox_dns/graphql/registrar.py +0 -19
  91. netbox_dns/graphql/view.py +0 -19
  92. netbox_dns/graphql/zone.py +0 -19
  93. netbox_dns/migrations/0001_initial.py +0 -115
  94. netbox_dns/migrations/0002_zone_default_ttl.py +0 -18
  95. netbox_dns/migrations/0003_soa_managed_records.py +0 -112
  96. netbox_dns/migrations/0004_create_ptr_for_a_aaaa_records.py +0 -80
  97. netbox_dns/migrations/0005_update_ns_records.py +0 -41
  98. netbox_dns/migrations/0006_zone_soa_serial_auto.py +0 -29
  99. netbox_dns/migrations/0007_alter_zone_soa_serial_auto.py +0 -17
  100. netbox_dns/migrations/0008_zone_status_names.py +0 -21
  101. netbox_dns/migrations/0009_netbox32.py +0 -71
  102. netbox_dns/migrations/0010_update_soa_records.py +0 -58
  103. netbox_dns/migrations/0011_add_view_model.py +0 -70
  104. netbox_dns/migrations/0012_adjust_zone_and_record.py +0 -17
  105. netbox_dns/migrations/0014_add_view_description.py +0 -16
  106. netbox_dns/migrations/0015_add_record_status.py +0 -17
  107. netbox_dns/migrations/0016_cleanup_ptr_records.py +0 -38
  108. netbox_dns/migrations/0017_alter_record_ttl.py +0 -17
  109. netbox_dns/migrations/0018_zone_arpa_network.py +0 -51
  110. netbox_dns/migrations/0019_update_ns_ttl.py +0 -19
  111. netbox_dns/urls.py +0 -297
  112. netbox_plugin_dns-0.22.8.dist-info/RECORD +0 -117
  113. /netbox_dns/{filters → filtersets}/__init__.py +0 -0
  114. {netbox_plugin_dns-0.22.8.dist-info → netbox_plugin_dns-1.0.0.dist-info}/LICENSE +0 -0
  115. {netbox_plugin_dns-0.22.8.dist-info → netbox_plugin_dns-1.0.0.dist-info}/WHEEL +0 -0
netbox_dns/urls.py DELETED
@@ -1,297 +0,0 @@
1
- from django.urls import path
2
-
3
- from netbox.views.generic import ObjectChangeLogView, ObjectJournalView
4
-
5
- from netbox_dns.models import View, Zone, Record, NameServer, Contact, Registrar
6
- from netbox_dns.views import (
7
- # zone
8
- ZoneListView,
9
- ZoneView,
10
- ZoneDeleteView,
11
- ZoneEditView,
12
- ZoneBulkImportView,
13
- ZoneBulkEditView,
14
- ZoneBulkDeleteView,
15
- ZoneRecordListView,
16
- ZoneManagedRecordListView,
17
- ZoneRegistrationView,
18
- ZoneRFC2317ChildZoneListView,
19
- # nameserver
20
- NameServerListView,
21
- NameServerView,
22
- NameServerEditView,
23
- NameServerDeleteView,
24
- NameServerBulkImportView,
25
- NameServerBulkEditView,
26
- NameServerBulkDeleteView,
27
- NameServerZoneListView,
28
- NameServerSOAZoneListView,
29
- # record
30
- RecordListView,
31
- RecordView,
32
- RecordEditView,
33
- RecordDeleteView,
34
- RecordBulkImportView,
35
- RecordBulkEditView,
36
- RecordBulkDeleteView,
37
- # managed record
38
- ManagedRecordListView,
39
- # view
40
- ViewListView,
41
- ViewView,
42
- ViewDeleteView,
43
- ViewEditView,
44
- ViewBulkImportView,
45
- ViewBulkEditView,
46
- ViewBulkDeleteView,
47
- ViewZoneListView,
48
- # contact
49
- ContactListView,
50
- ContactView,
51
- ContactDeleteView,
52
- ContactEditView,
53
- ContactBulkImportView,
54
- ContactBulkEditView,
55
- ContactBulkDeleteView,
56
- ContactZoneListView,
57
- # registrar
58
- RegistrarListView,
59
- RegistrarView,
60
- RegistrarDeleteView,
61
- RegistrarEditView,
62
- RegistrarBulkImportView,
63
- RegistrarBulkEditView,
64
- RegistrarBulkDeleteView,
65
- RegistrarZoneListView,
66
- )
67
-
68
- app_name = "netbox_dns"
69
-
70
- urlpatterns = [
71
- #
72
- # Zone urls
73
- #
74
- path("zones/", ZoneListView.as_view(), name="zone_list"),
75
- path("zones/add/", ZoneEditView.as_view(), name="zone_add"),
76
- path("zones/import/", ZoneBulkImportView.as_view(), name="zone_import"),
77
- path("zones/edit/", ZoneBulkEditView.as_view(), name="zone_bulk_edit"),
78
- path("zones/delete/", ZoneBulkDeleteView.as_view(), name="zone_bulk_delete"),
79
- path("zones/<int:pk>/", ZoneView.as_view(), name="zone"),
80
- path("zones/<int:pk>/delete/", ZoneDeleteView.as_view(), name="zone_delete"),
81
- path("zones/<int:pk>/edit/", ZoneEditView.as_view(), name="zone_edit"),
82
- path(
83
- "zones/<int:pk>/journal/",
84
- ObjectJournalView.as_view(),
85
- name="zone_journal",
86
- kwargs={"model": Zone},
87
- ),
88
- path(
89
- "zones/<int:pk>/changelog/",
90
- ObjectChangeLogView.as_view(),
91
- name="zone_changelog",
92
- kwargs={"model": Zone},
93
- ),
94
- path("zones/<int:pk>/records/", ZoneRecordListView.as_view(), name="zone_records"),
95
- path(
96
- "zones/<int:pk>/managedrecords/",
97
- ZoneManagedRecordListView.as_view(),
98
- name="zone_managed_records",
99
- ),
100
- path(
101
- "zones/<int:pk>/rfc2317childzones/",
102
- ZoneRFC2317ChildZoneListView.as_view(),
103
- name="zone_rfc2317_child_zones",
104
- ),
105
- path(
106
- "zones/<int:pk>/registration/",
107
- ZoneRegistrationView.as_view(),
108
- name="zone_registration",
109
- ),
110
- #
111
- # NameServer urls
112
- #
113
- path("nameservers/", NameServerListView.as_view(), name="nameserver_list"),
114
- path("nameservers/add/", NameServerEditView.as_view(), name="nameserver_add"),
115
- path(
116
- "nameservers/import/",
117
- NameServerBulkImportView.as_view(),
118
- name="nameserver_import",
119
- ),
120
- path(
121
- "nameservers/edit/",
122
- NameServerBulkEditView.as_view(),
123
- name="nameserver_bulk_edit",
124
- ),
125
- path(
126
- "nameservers/delete/",
127
- NameServerBulkDeleteView.as_view(),
128
- name="nameserver_bulk_delete",
129
- ),
130
- path("nameservers/<int:pk>/", NameServerView.as_view(), name="nameserver"),
131
- path(
132
- "nameservers/<int:pk>/edit",
133
- NameServerEditView.as_view(),
134
- name="nameserver_edit",
135
- ),
136
- path(
137
- "nameservers/<int:pk>/delete",
138
- NameServerDeleteView.as_view(),
139
- name="nameserver_delete",
140
- ),
141
- path(
142
- "nameservers/<int:pk>/journal/",
143
- ObjectJournalView.as_view(),
144
- name="nameserver_journal",
145
- kwargs={"model": NameServer},
146
- ),
147
- path(
148
- "nameservers/<int:pk>/changelog/",
149
- ObjectChangeLogView.as_view(),
150
- name="nameserver_changelog",
151
- kwargs={"model": NameServer},
152
- ),
153
- path(
154
- "nameservers/<int:pk>/zones/",
155
- NameServerZoneListView.as_view(),
156
- name="nameserver_zones",
157
- ),
158
- path(
159
- "nameservers/<int:pk>/soazones/",
160
- NameServerSOAZoneListView.as_view(),
161
- name="nameserver_soa_zones",
162
- ),
163
- #
164
- # Record urls
165
- #
166
- path("records/", RecordListView.as_view(), name="record_list"),
167
- path("records/add/", RecordEditView.as_view(), name="record_add"),
168
- path("records/import/", RecordBulkImportView.as_view(), name="record_import"),
169
- path("records/edit/", RecordBulkEditView.as_view(), name="record_bulk_edit"),
170
- path("records/delete/", RecordBulkDeleteView.as_view(), name="record_bulk_delete"),
171
- path("records/<int:pk>/", RecordView.as_view(), name="record"),
172
- path("records/<int:pk>/edit/", RecordEditView.as_view(), name="record_edit"),
173
- path("records/<int:pk>/delete/", RecordDeleteView.as_view(), name="record_delete"),
174
- path(
175
- "records/<int:pk>/journal/",
176
- ObjectJournalView.as_view(),
177
- name="record_journal",
178
- kwargs={"model": Record},
179
- ),
180
- path(
181
- "records/<int:pk>/changelog/",
182
- ObjectChangeLogView.as_view(),
183
- name="record_changelog",
184
- kwargs={"model": Record},
185
- ),
186
- path(
187
- "managedrecords/", ManagedRecordListView.as_view(), name="managed_record_list"
188
- ),
189
- #
190
- # View urls
191
- #
192
- path("views/", ViewListView.as_view(), name="view_list"),
193
- path("views/add/", ViewEditView.as_view(), name="view_add"),
194
- path("views/import/", ViewBulkImportView.as_view(), name="view_import"),
195
- path("views/edit/", ViewBulkEditView.as_view(), name="view_bulk_edit"),
196
- path("views/delete/", ViewBulkDeleteView.as_view(), name="view_bulk_delete"),
197
- path("views/<int:pk>/", ViewView.as_view(), name="view"),
198
- path("views/<int:pk>/edit/", ViewEditView.as_view(), name="view_edit"),
199
- path("views/<int:pk>/delete/", ViewDeleteView.as_view(), name="view_delete"),
200
- path("views/<int:pk>/zones/", ViewZoneListView.as_view(), name="view_zones"),
201
- path(
202
- "views/<int:pk>/journal/",
203
- ObjectJournalView.as_view(),
204
- name="view_journal",
205
- kwargs={"model": View},
206
- ),
207
- path(
208
- "views/<int:pk>/changelog/",
209
- ObjectChangeLogView.as_view(),
210
- name="view_changelog",
211
- kwargs={"model": View},
212
- ),
213
- #
214
- # Contact urls
215
- #
216
- path("contacts/", ContactListView.as_view(), name="contact_list"),
217
- path("contacts/add/", ContactEditView.as_view(), name="contact_add"),
218
- path("contacts/import/", ContactBulkImportView.as_view(), name="contact_import"),
219
- path("contacts/edit/", ContactBulkEditView.as_view(), name="contact_bulk_edit"),
220
- path(
221
- "contacts/delete/",
222
- ContactBulkDeleteView.as_view(),
223
- name="contact_bulk_delete",
224
- ),
225
- path("contacts/<int:pk>/", ContactView.as_view(), name="contact"),
226
- path("contacts/<int:pk>/edit/", ContactEditView.as_view(), name="contact_edit"),
227
- path(
228
- "contacts/<int:pk>/delete/",
229
- ContactDeleteView.as_view(),
230
- name="contact_delete",
231
- ),
232
- path(
233
- "contacts/<int:pk>/zones/",
234
- ContactZoneListView.as_view(),
235
- name="contact_zones",
236
- ),
237
- path(
238
- "contacts/<int:pk>/journal/",
239
- ObjectJournalView.as_view(),
240
- name="contact_journal",
241
- kwargs={"model": Contact},
242
- ),
243
- path(
244
- "contacts/<int:pk>/changelog/",
245
- ObjectChangeLogView.as_view(),
246
- name="contact_changelog",
247
- kwargs={"model": Contact},
248
- ),
249
- #
250
- # Registrar urls
251
- #
252
- path("registrars/", RegistrarListView.as_view(), name="registrar_list"),
253
- path("registrars/add/", RegistrarEditView.as_view(), name="registrar_add"),
254
- path(
255
- "registrars/import/",
256
- RegistrarBulkImportView.as_view(),
257
- name="registrar_import",
258
- ),
259
- path(
260
- "registrars/edit/",
261
- RegistrarBulkEditView.as_view(),
262
- name="registrar_bulk_edit",
263
- ),
264
- path(
265
- "registrars/delete/",
266
- RegistrarBulkDeleteView.as_view(),
267
- name="registrar_bulk_delete",
268
- ),
269
- path("registrars/<int:pk>/", RegistrarView.as_view(), name="registrar"),
270
- path(
271
- "registrars/<int:pk>/edit/",
272
- RegistrarEditView.as_view(),
273
- name="registrar_edit",
274
- ),
275
- path(
276
- "registrars/<int:pk>/delete/",
277
- RegistrarDeleteView.as_view(),
278
- name="registrar_delete",
279
- ),
280
- path(
281
- "registrars/<int:pk>/zones/",
282
- RegistrarZoneListView.as_view(),
283
- name="registrar_zones",
284
- ),
285
- path(
286
- "registrars/<int:pk>/journal/",
287
- ObjectJournalView.as_view(),
288
- name="registrar_journal",
289
- kwargs={"model": Registrar},
290
- ),
291
- path(
292
- "registrars/<int:pk>/changelog/",
293
- ObjectChangeLogView.as_view(),
294
- name="registrar_changelog",
295
- kwargs={"model": Registrar},
296
- ),
297
- ]
@@ -1,117 +0,0 @@
1
- netbox_dns/__init__.py,sha256=ms-dOE6DcI1h8vdO1Ms_jC0aOcUxB8CfLDJsXPiFgV8,1314
2
- netbox_dns/api/nested_serializers.py,sha256=XB7bcCjVMPYrumJWgRicj06PukQ2UCBjdr84AIUJuVQ,3291
3
- netbox_dns/api/serializers.py,sha256=mCH6SvluOm9g3vV_hvxtNIyqGxtPAcLEBgLu-stq6AM,8203
4
- netbox_dns/api/urls.py,sha256=R9VmmWtdrjvr35i5d_SfZK2lGn6JzmPuWEKTQlZ8MJo,575
5
- netbox_dns/api/views.py,sha256=DjovvTfS4F2Fq2Ahea6f4LBJiWr01ajk-wSZHNTya5I,3527
6
- netbox_dns/apps.py,sha256=JCW5eS-AQBUubDJve1DjP-IRFKTFGQh1NLGWzJpC5MI,151
7
- netbox_dns/fields/__init__.py,sha256=egA6gLQ4SPYacECcYU4Vl_P7TbzLOMRfaX6rw3k26YA,69
8
- netbox_dns/fields/address.py,sha256=qklRDbZJVK20t2OIxGBoo9VVeuVTWvWkf2gHaZMnoAI,1494
9
- netbox_dns/fields/network.py,sha256=nDbWuvg4WUwItvuTfBViaF6Arx8QoL24hB_p4Nnt3pk,3592
10
- netbox_dns/fields/rfc2317.py,sha256=Er52Hxghj1trNo41naAgwsLGGLx2NCQ-fGhSaalpoPg,2521
11
- netbox_dns/filters/__init__.py,sha256=Aw8HrCTjaJfu5JSwJsQRHfOUz4zKwAmZNByT9q6BrFU,136
12
- netbox_dns/filters/contact.py,sha256=_onZ6G2KKgfvm9Emg_kng2RPETRMfbTyIR8Tvs9d2YM,1027
13
- netbox_dns/filters/nameserver.py,sha256=sDKsrluSmUZ0aTw_wagYJAh1g5fKzyzHXbJu6DaK1b8,522
14
- netbox_dns/filters/record.py,sha256=WOZQfcUPzDHiCVBbpdZ0Pd_QrVB3ed-Xw8xvZt_EgDo,2256
15
- netbox_dns/filters/registrar.py,sha256=8UXJXUb0XmkPyPQ2oACAhzhmZtAmvM2c4hTWMDLuBEo,911
16
- netbox_dns/filters/view.py,sha256=Sji4DKy0VKk8BLEdk8xCe8su3rUBtXeJUsUAee0IsOs,497
17
- netbox_dns/filters/zone.py,sha256=A8B7sZ1RVzeTrJV0ODCstO0mXiJ1o0Njfn0o1LXH6y0,3564
18
- netbox_dns/forms/__init__.py,sha256=Aw8HrCTjaJfu5JSwJsQRHfOUz4zKwAmZNByT9q6BrFU,136
19
- netbox_dns/forms/contact.py,sha256=Z8llYOpcGns8ZerOLsldpY836pfjO7427rmAZ4T8Kyg,4492
20
- netbox_dns/forms/nameserver.py,sha256=LUYV_tna667flgPdQevDFniMdXZUYRUG8iqCx7HKdxQ,2027
21
- netbox_dns/forms/record.py,sha256=HAjUQJsaQepnN6qbU9sYJrQQXchecTiiRccWUjEsej0,6266
22
- netbox_dns/forms/registrar.py,sha256=1YhbOle1gbgd02MfkGLhHJHIqvTd8sxLiu8cafmlT8s,2832
23
- netbox_dns/forms/view.py,sha256=KEWlUo8-oXP_QsqT5fW_UK-ZoX9g-f4CqRnJ_P6LHco,1627
24
- netbox_dns/forms/zone.py,sha256=KCRyWPZtQ-awoNOXC0PYBRPUzmJx7qrV8BQlS73WK9o,21740
25
- netbox_dns/graphql/__init__.py,sha256=v3lLvVoP-JQbEZ1NY49u1TNqvanF-4TqOtjHXrbsTvU,811
26
- netbox_dns/graphql/contact.py,sha256=2iyuvCxG09CLDUMhan5vR3uFZxCVzKNZBrotr_zoUVY,497
27
- netbox_dns/graphql/nameserver.py,sha256=mlQw1Po_Ax_fjyyXVBetyxlFLrCqmptYDgOspZvYtP4,527
28
- netbox_dns/graphql/record.py,sha256=r_dtqRAid7wN_XgWTCR6XuKSAnSTz0z7hKUXcFt4AjU,487
29
- netbox_dns/graphql/registrar.py,sha256=TEQSNT8CeIqquzySMRluGk3I2t9rYgQCgDbLJ0gnLRQ,517
30
- netbox_dns/graphql/schema.py,sha256=D_dDusogaI55tmGx_dr1owsgzXS5fd2S-kPZ7xcXxs8,221
31
- netbox_dns/graphql/view.py,sha256=S_61hYlQCtPQen1lI1UQs38UBWKQTaWfUxzlbpO07zA,467
32
- netbox_dns/graphql/zone.py,sha256=QDBxocezhLSHBGDV4RJnmarBfOsiUTeE9KzBGJ3gJi8,467
33
- netbox_dns/management/commands/cleanup_database.py,sha256=eggyMZrRg--cXDQJ-boofHboG1gJTs8j-oldhn6EuCo,6050
34
- netbox_dns/management/commands/cleanup_rrset_ttl.py,sha256=gCvwH6hGw32YJtcy_pEWIP29PSRMW23-qzB8SHEdixQ,2077
35
- netbox_dns/management/commands/setup_coupling.py,sha256=Yn1nffPR7fBgB6WWBdDqdnp3k8z1QK8k6qi9xbx4U6Y,4580
36
- netbox_dns/management/commands/update_soa.py,sha256=qvlApMngTVpauj0CU0yeOy9r3lxxDciKorMxFsyvQhs,661
37
- netbox_dns/migrations/0001_initial.py,sha256=R9FbIQ7nO1ROb12NL8YQDkFQuP1r6-TtMcPwg4rwjus,4153
38
- netbox_dns/migrations/0001_squashed_netbox_dns_0_15.py,sha256=nxktsb-1oyiw1bHiBpnp8Vq4ugT0p0UMdJcYiq-UHoo,11466
39
- netbox_dns/migrations/0002_zone_default_ttl.py,sha256=7I-GXqvlR0EgBhMWw59W5L-r0sS0UEIXnlTer_WpKkk,437
40
- netbox_dns/migrations/0003_soa_managed_records.py,sha256=W3Ukto3MNqFdEgLnMHt3k5tz3tbT6BiT1Pc872fg614,3716
41
- netbox_dns/migrations/0004_create_ptr_for_a_aaaa_records.py,sha256=TsxGLSTXQgQm2yaBGOTNwrdfKdgY6jbZS1q96MNkbnw,2287
42
- netbox_dns/migrations/0005_update_ns_records.py,sha256=PRM4BbDOFhxzelMjU0q4gTvDFutcM7sNXwuJeDYY-8M,1156
43
- netbox_dns/migrations/0006_zone_soa_serial_auto.py,sha256=vzNWOAcrxwPZRiI40qSOAL_-2szOPe_oTSJHxuBbqng,861
44
- netbox_dns/migrations/0007_alter_zone_soa_serial_auto.py,sha256=q6UhZWyqv542RMlpfUfdtRUMKTTC0gQhVs6ujwvjMnM,399
45
- netbox_dns/migrations/0008_zone_status_names.py,sha256=UYCxIzHcawHwigxBHZD6h6HsUdpCrkcS2SiJxQe8cxI,527
46
- netbox_dns/migrations/0009_netbox32.py,sha256=OKCSMHZwLcPpNAUwgxY5fO1L3WlLaybhFxwjUzy8rQI,2176
47
- netbox_dns/migrations/0010_update_soa_records.py,sha256=3iiNEiDJAkauAiwBbc8e1vQk7NiRNlSRftj6VnGsy44,1543
48
- netbox_dns/migrations/0011_add_view_model.py,sha256=ypTmFYEWvZyT8Q81ap2feo34rhNplE1oxwPXP7GkOJI,2201
49
- netbox_dns/migrations/0012_adjust_zone_and_record.py,sha256=tEGHQesYo-A3yekSoVvkSs2Gcj4MTpvjdsRbr7qjw3c,402
50
- netbox_dns/migrations/0013_add_nameserver_zone_record_description.py,sha256=0KkfhQzBl9D_1MLy1UvZNIzyFI91Hz1m2LQrWpYLIyc,733
51
- netbox_dns/migrations/0014_add_view_description.py,sha256=Bzo9-pIxziuaS9NxyWviYAaoOIRLeabHH8yDIAbTI0U,428
52
- netbox_dns/migrations/0015_add_record_status.py,sha256=9YoMjfyUdaaLksTGs6vGWJ2IA8fdJSVcOGAfVqj-iPA,393
53
- netbox_dns/migrations/0016_cleanup_ptr_records.py,sha256=2NRAPHLAZ4gBK-2QR11CrDyvBTiJW9CgBXKL-VeGWmk,1053
54
- netbox_dns/migrations/0017_alter_record_ttl.py,sha256=jQtHLdl5tRGjGT93liwUOlUefC_PThiPU5ygPO4N7X4,405
55
- netbox_dns/migrations/0018_zone_arpa_network.py,sha256=n0-6LUw0f1vKzYGMqV2c5yvn1oQdN5p-_i9xUsf2g58,1553
56
- netbox_dns/migrations/0019_update_ns_ttl.py,sha256=0WLvJu2ig32waQd9yPbKJRNh_Sov46nqY7B8p5Cy8gw,433
57
- netbox_dns/migrations/0020_netbox_3_4.py,sha256=GwnmlYdnWgLwt2-H7hOr0Zm4-s28aDpe-S1X3lco5PI,1260
58
- netbox_dns/migrations/0021_record_ip_address.py,sha256=k72KACwnaCkgXLMgrex_lZCB1xd614llxRBeBBuJTYU,3243
59
- netbox_dns/migrations/0022_search.py,sha256=KW1ffEZ4-0dppGQ_KD1EN7iw8eQJOnDco-xfJFRZqKQ,172
60
- netbox_dns/migrations/0023_alter_record_value.py,sha256=4_4v8YZzU8_jadJqIUUjH6SIhNTeALWhclozTqYDmv0,378
61
- netbox_dns/migrations/0024_tenancy.py,sha256=3kc5l5_AyfhOI6g6mbCfReUAbSgb2DAv0MDMZqJ-3YQ,1745
62
- netbox_dns/migrations/0025_ipam_coupling_cf.py,sha256=7uHujclWrsYw5QMLWft0Po78Ow5Q8MjPuU7moKyQ2qs,620
63
- netbox_dns/migrations/0026_domain_registration.py,sha256=qUJ1oUGHIGGNWD7QRLnxElbM5eNp7dYNNn_OYIw8Xvo,5796
64
- netbox_dns/migrations/0027_alter_registrar_iana_id.py,sha256=QUtRIrqqfkraFmzzeJFZWAEv4PfrOouoHtrV6FRn8Kc,404
65
- netbox_dns/migrations/0028_rfc2317_fields.py,sha256=D8r43xxBjYXiL6ycmX8RY5_WG7tRYEDjutOeYM1H56I,1364
66
- netbox_dns/migrations/0029_record_fqdn.py,sha256=UAAU38ekKQyiYDOJlcrz6Qbk4bqZfSHZyAHUZFFQrOw,808
67
- netbox_dns/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
68
- netbox_dns/models/__init__.py,sha256=Q7UIEe2vGh18AZN4er6CykciwXPQGgUq0L-9718wZqU,182
69
- netbox_dns/models/contact.py,sha256=Mzj4SR3fczOE96etWjObJElk0RVQetNuXZVtm8sS1h8,2849
70
- netbox_dns/models/nameserver.py,sha256=SjKUbMRNE3TSDzmxbKFR9b4AfYPS0UPj0QeO7XpwNRk,2941
71
- netbox_dns/models/record.py,sha256=f2NMdMVfsbjfo65uXyYzFCBGimEroLbt3AW9pkECeno,23917
72
- netbox_dns/models/registrar.py,sha256=ByKHeqH5KfswqOLjya8DZExJ1omSKFHMfCjIIYfnwTo,1416
73
- netbox_dns/models/view.py,sha256=ljs3Q2xQR63ZOSyja5H7DEdFbm7MX2ZjlR6uNVrAsVo,920
74
- netbox_dns/models/zone.py,sha256=EvNiZb0CfSg_VyjAOkKWVK-CSVDA9h_EYpt21N54C3Q,26637
75
- netbox_dns/navigation.py,sha256=IutEr_TcPgDGzqTT1ZzV4IUABLSOFU9v364BfpCqbro,4587
76
- netbox_dns/signals/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
77
- netbox_dns/signals/ipam_coupling.py,sha256=xbb37_77ZqtgT3mKXZp18QRduqZuiAuYGPk8R9d7SVc,5727
78
- netbox_dns/tables/__init__.py,sha256=Aw8HrCTjaJfu5JSwJsQRHfOUz4zKwAmZNByT9q6BrFU,136
79
- netbox_dns/tables/contact.py,sha256=HpblHKrlQqQAPC59gvw8wUV3tc6UBAphHPE6CfN2uVM,747
80
- netbox_dns/tables/nameserver.py,sha256=7Ap0px5gAHtgk5XFMpZCHccy9N-v8UKy19GP7fdWuPc,819
81
- netbox_dns/tables/record.py,sha256=VwBWMiZN_Lkl9SXfJLzd8-7TM1CKetwE7azhScF4r7I,3162
82
- netbox_dns/tables/registrar.py,sha256=fnClFyukZ5Un-jUigrjDRYK5_2YE2BAtbm6lqctbeJ4,621
83
- netbox_dns/tables/view.py,sha256=r9CLS96m-KojX3OYZ-k45FbVseHO20nPxRzlKrRrLio,501
84
- netbox_dns/tables/zone.py,sha256=4TlTB7lVsztZJ41aetkqr6PWosjZP-xc2sB9gDnw0z8,1886
85
- netbox_dns/template_content.py,sha256=dGy-CGnk03DA-MN6lXTjirY_spZ2l-Qb1ZWqsNynNjc,3936
86
- netbox_dns/templates/netbox_dns/contact.html,sha256=3qHGChgLYfqUgO3_z9jQ-lFIGS0ZehJdxJy04r3T0Tc,2858
87
- netbox_dns/templates/netbox_dns/nameserver.html,sha256=3AJVbsuhKg4Jy74rlvwrGSHd_IoDRdLT_XuK4EH3Djg,1623
88
- netbox_dns/templates/netbox_dns/record/managed.html,sha256=G6LPG1koUGuzUiwYdv1okdVa4sKaofiQegDBnsFL0kA,89
89
- netbox_dns/templates/netbox_dns/record/related.html,sha256=Aqor8uGcuHQTHjlX-Xmni2Yp4N7lOBrMOqQiszrQOC0,742
90
- netbox_dns/templates/netbox_dns/record.html,sha256=jq1kueOd5EN1myZt8RbXl4rjoTuxWezBnVv36i74QC8,5835
91
- netbox_dns/templates/netbox_dns/registrar.html,sha256=rSShbH68nP0r8EUHn0-TZOsUj6pg7hmfvM7h2tqouUA,2130
92
- netbox_dns/templates/netbox_dns/related_dns_objects.html,sha256=KSzlnw1cStrJa3poKkwrt_ycIH0oH0STWIHRNy3ks4g,806
93
- netbox_dns/templates/netbox_dns/view.html,sha256=_lDjd2xY3upfGpNpemXXMzgsaKZlX3-PzPPAdYkIjvs,1350
94
- netbox_dns/templates/netbox_dns/zone/base.html,sha256=pucf_b7iGg4hCXqwIbR0_WtEQdeH2LQtTCRTSoeBhFc,460
95
- netbox_dns/templates/netbox_dns/zone/child.html,sha256=Y9dOUA8MPxuPqbbYV0KEZvLw1JIvfvOxbAVSv1c1l-k,2171
96
- netbox_dns/templates/netbox_dns/zone/managed_record.html,sha256=5P85eJuQOB7omih2vUXexRGjt4UF6McOM8f4D7QQbEw,524
97
- netbox_dns/templates/netbox_dns/zone/record.html,sha256=1oIRGXOZAjwmTMkTgArfKyVrmL54Sh_IN7IAF3qYEKM,2218
98
- netbox_dns/templates/netbox_dns/zone/registration.html,sha256=3R5uqLXZxIJkp9_LVnTTgTV61mITfDPDDNofV7s4d1k,1283
99
- netbox_dns/templates/netbox_dns/zone/rfc2317_child_zone.html,sha256=kxIrhn0gghb4l1eZhpsICdfkSYegqSXR9zFIWiZLypA,527
100
- netbox_dns/templates/netbox_dns/zone.html,sha256=_lQhr00_V8ThadlTuTm5zPkcvyjYQxxYGHQsfTOgDCs,7187
101
- netbox_dns/urls.py,sha256=NxqvnRxLM6VwUBTY6KA8u-PRjNklmBai7gy6NXc-1xo,9172
102
- netbox_dns/utilities/__init__.py,sha256=8DqDx-99kejykwaIt_29W5KgY8RvWBOk6526vrf22UQ,1967
103
- netbox_dns/utilities/ipam_coupling.py,sha256=LhdFafF4OAOU8rgROOqY5Dt7XDT_SUZP2JuIqCQYVqw,3573
104
- netbox_dns/validators/__init__.py,sha256=5W8s31R1aT5B_mKJjTRwogEKj-Xun05iCyvRuYVGkdM,47
105
- netbox_dns/validators/dns_name.py,sha256=mauW5-7a-sjTxyP4qWiRi-kfffGEj9Ma7N2o-BJjx38,2232
106
- netbox_dns/validators/rfc2317.py,sha256=bgqDwdqwpf5d1mt24Wrr8z8t2IYbt5RovNr6l2nvdR4,503
107
- netbox_dns/views/__init__.py,sha256=Aw8HrCTjaJfu5JSwJsQRHfOUz4zKwAmZNByT9q6BrFU,136
108
- netbox_dns/views/contact.py,sha256=6-oCfK98-submcUTmi0ejw7QBscNn3S9bnS0oUTXOaY,2235
109
- netbox_dns/views/nameserver.py,sha256=Wa8CQ19P5uPNLMIYkj_U82wmwdp5gZoBWZnOR4ZExa0,2990
110
- netbox_dns/views/record.py,sha256=ocA-xTXAo8xWf20aG_a8NnRportID8CuWdufDIqfxyI,4904
111
- netbox_dns/views/registrar.py,sha256=aznSKt1L5tILMLGgcZiBR7u7B8rNl-jM1B2-N0fTeK8,2072
112
- netbox_dns/views/view.py,sha256=uUvtlNEh5MYoEALvWWaCOqj_Zj8dpGOL2PUyg-UPfEA,1895
113
- netbox_dns/views/zone.py,sha256=SyttTAgrPPzf1jIT1B4RexCLdXYjSmPIZsefO_zog1Q,4587
114
- netbox_plugin_dns-0.22.8.dist-info/LICENSE,sha256=tziMJKpkMbySr09L6bIwsu7Ca9ICoqpMO3yAXgEMQA4,1076
115
- netbox_plugin_dns-0.22.8.dist-info/METADATA,sha256=2vxCBGxDRbpd83kCHm5eeYScmOB_sV32za7KyiV5IZw,4572
116
- netbox_plugin_dns-0.22.8.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
117
- netbox_plugin_dns-0.22.8.dist-info/RECORD,,
File without changes