netbox-plugin-dns 1.2.10__py3-none-any.whl → 1.3.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.
- netbox_dns/__init__.py +2 -2
- netbox_dns/api/nested_serializers.py +54 -49
- netbox_dns/api/serializers_/dnssec_key_template.py +22 -13
- netbox_dns/api/serializers_/dnssec_policy.py +89 -40
- netbox_dns/api/serializers_/nameserver.py +25 -13
- netbox_dns/api/serializers_/record.py +45 -37
- netbox_dns/api/serializers_/record_template.py +21 -12
- netbox_dns/api/serializers_/registrar.py +14 -5
- netbox_dns/api/serializers_/registration_contact.py +13 -5
- netbox_dns/api/serializers_/view.py +28 -19
- netbox_dns/api/serializers_/zone.py +87 -63
- netbox_dns/api/serializers_/zone_template.py +40 -34
- netbox_dns/choices/dnssec_key_template.py +4 -0
- netbox_dns/filtersets/dnssec_key_template.py +10 -4
- netbox_dns/filtersets/dnssec_policy.py +1 -0
- netbox_dns/filtersets/nameserver.py +9 -4
- netbox_dns/filtersets/record.py +14 -13
- netbox_dns/filtersets/record_template.py +13 -12
- netbox_dns/filtersets/registrar.py +1 -0
- netbox_dns/filtersets/registration_contact.py +1 -0
- netbox_dns/filtersets/view.py +10 -4
- netbox_dns/filtersets/zone.py +22 -21
- netbox_dns/filtersets/zone_template.py +10 -9
- netbox_dns/forms/dnssec_key_template.py +97 -46
- netbox_dns/forms/dnssec_policy.py +130 -110
- netbox_dns/forms/nameserver.py +71 -36
- netbox_dns/forms/record.py +96 -78
- netbox_dns/forms/record_template.py +87 -59
- netbox_dns/forms/registrar.py +55 -39
- netbox_dns/forms/registration_contact.py +64 -41
- netbox_dns/forms/view.py +98 -51
- netbox_dns/forms/zone.py +259 -250
- netbox_dns/forms/zone_template.py +151 -101
- netbox_dns/graphql/enums.py +41 -0
- netbox_dns/graphql/filter_lookups.py +13 -0
- netbox_dns/graphql/filters/__init__.py +12 -0
- netbox_dns/graphql/filters/dnssec_key_template.py +63 -0
- netbox_dns/graphql/filters/dnssec_policy.py +123 -0
- netbox_dns/graphql/filters/nameserver.py +32 -0
- netbox_dns/graphql/filters/record.py +89 -0
- netbox_dns/graphql/filters/record_template.py +55 -0
- netbox_dns/graphql/filters/registrar.py +30 -0
- netbox_dns/graphql/filters/registration_contact.py +27 -0
- netbox_dns/graphql/filters/view.py +28 -0
- netbox_dns/graphql/filters/zone.py +146 -0
- netbox_dns/graphql/filters/zone_template.py +97 -0
- netbox_dns/models/dnssec_key_template.py +24 -27
- netbox_dns/models/dnssec_policy.py +17 -21
- netbox_dns/models/nameserver.py +26 -30
- netbox_dns/models/record.py +42 -46
- netbox_dns/models/record_template.py +30 -34
- netbox_dns/models/registrar.py +13 -17
- netbox_dns/models/registration_contact.py +33 -37
- netbox_dns/models/view.py +16 -20
- netbox_dns/models/zone.py +75 -78
- netbox_dns/models/zone_template.py +35 -39
- netbox_dns/tables/dnssec_key_template.py +13 -12
- netbox_dns/tables/dnssec_policy.py +18 -15
- netbox_dns/tables/nameserver.py +10 -8
- netbox_dns/tables/record.py +29 -21
- netbox_dns/tables/record_template.py +21 -17
- netbox_dns/tables/registrar.py +15 -9
- netbox_dns/tables/registration_contact.py +15 -9
- netbox_dns/tables/view.py +24 -12
- netbox_dns/tables/zone.py +23 -21
- netbox_dns/tables/zone_template.py +17 -13
- netbox_dns/views/dnssec_key_template.py +0 -9
- netbox_dns/views/dnssec_policy.py +0 -9
- netbox_dns/views/nameserver.py +0 -9
- netbox_dns/views/record.py +0 -9
- netbox_dns/views/record_template.py +0 -3
- netbox_dns/views/registrar.py +0 -3
- netbox_dns/views/registration_contact.py +0 -3
- netbox_dns/views/view.py +0 -9
- netbox_dns/views/zone.py +0 -10
- netbox_dns/views/zone_template.py +0 -4
- {netbox_plugin_dns-1.2.10.dist-info → netbox_plugin_dns-1.3.0.dist-info}/METADATA +4 -2
- {netbox_plugin_dns-1.2.10.dist-info → netbox_plugin_dns-1.3.0.dist-info}/RECORD +81 -69
- netbox_dns/graphql/filters.py +0 -88
- {netbox_plugin_dns-1.2.10.dist-info → netbox_plugin_dns-1.3.0.dist-info}/WHEEL +0 -0
- {netbox_plugin_dns-1.2.10.dist-info → netbox_plugin_dns-1.3.0.dist-info}/licenses/LICENSE +0 -0
- {netbox_plugin_dns-1.2.10.dist-info → netbox_plugin_dns-1.3.0.dist-info}/top_level.txt +0 -0
|
@@ -2,7 +2,6 @@ from django.utils.translation import gettext_lazy as _
|
|
|
2
2
|
|
|
3
3
|
from netbox.views import generic
|
|
4
4
|
from utilities.views import ViewTab, register_model_view
|
|
5
|
-
from tenancy.views import ObjectContactsView
|
|
6
5
|
|
|
7
6
|
from netbox_dns.filtersets import (
|
|
8
7
|
DNSSECPolicyFilterSet,
|
|
@@ -78,13 +77,11 @@ class DNSSECPolicyView(generic.ObjectView):
|
|
|
78
77
|
class DNSSECPolicyEditView(generic.ObjectEditView):
|
|
79
78
|
queryset = DNSSECPolicy.objects.all()
|
|
80
79
|
form = DNSSECPolicyForm
|
|
81
|
-
default_return_url = "plugins:netbox_dns:dnssecpolicy_list"
|
|
82
80
|
|
|
83
81
|
|
|
84
82
|
@register_model_view(DNSSECPolicy, "delete")
|
|
85
83
|
class DNSSECPolicyDeleteView(generic.ObjectDeleteView):
|
|
86
84
|
queryset = DNSSECPolicy.objects.all()
|
|
87
|
-
default_return_url = "plugins:netbox_dns:dnssecpolicy_list"
|
|
88
85
|
|
|
89
86
|
|
|
90
87
|
@register_model_view(DNSSECPolicy, "bulk_import", detail=False)
|
|
@@ -92,7 +89,6 @@ class DNSSECPolicyBulkImportView(generic.BulkImportView):
|
|
|
92
89
|
queryset = DNSSECPolicy.objects.all()
|
|
93
90
|
model_form = DNSSECPolicyImportForm
|
|
94
91
|
table = DNSSECPolicyTable
|
|
95
|
-
default_return_url = "plugins:netbox_dns:dnssecpolicy_list"
|
|
96
92
|
|
|
97
93
|
|
|
98
94
|
@register_model_view(DNSSECPolicy, "bulk_edit", path="edit", detail=False)
|
|
@@ -110,11 +106,6 @@ class DNSSECPolicyBulkDeleteView(generic.BulkDeleteView):
|
|
|
110
106
|
table = DNSSECPolicyTable
|
|
111
107
|
|
|
112
108
|
|
|
113
|
-
@register_model_view(DNSSECPolicy, "contacts")
|
|
114
|
-
class DNSSECPolicyContactsView(ObjectContactsView):
|
|
115
|
-
queryset = DNSSECPolicy.objects.all()
|
|
116
|
-
|
|
117
|
-
|
|
118
109
|
@register_model_view(DNSSECPolicy, "zones")
|
|
119
110
|
class DNSSECPolicyZoneListView(generic.ObjectChildrenView):
|
|
120
111
|
queryset = DNSSECPolicy.objects.all()
|
netbox_dns/views/nameserver.py
CHANGED
|
@@ -4,7 +4,6 @@ from django.utils.translation import gettext_lazy as _
|
|
|
4
4
|
|
|
5
5
|
from netbox.views import generic
|
|
6
6
|
from utilities.views import ViewTab, register_model_view
|
|
7
|
-
from tenancy.views import ObjectContactsView
|
|
8
7
|
|
|
9
8
|
from netbox_dns.filtersets import NameServerFilterSet, ZoneFilterSet
|
|
10
9
|
from netbox_dns.forms import (
|
|
@@ -55,13 +54,11 @@ class NameServerView(generic.ObjectView):
|
|
|
55
54
|
class NameServerEditView(generic.ObjectEditView):
|
|
56
55
|
queryset = NameServer.objects.all()
|
|
57
56
|
form = NameServerForm
|
|
58
|
-
default_return_url = "plugins:netbox_dns:nameserver_list"
|
|
59
57
|
|
|
60
58
|
|
|
61
59
|
@register_model_view(NameServer, "delete")
|
|
62
60
|
class NameServerDeleteView(generic.ObjectDeleteView):
|
|
63
61
|
queryset = NameServer.objects.all()
|
|
64
|
-
default_return_url = "plugins:netbox_dns:nameserver_list"
|
|
65
62
|
|
|
66
63
|
|
|
67
64
|
@register_model_view(NameServer, "bulk_import", detail=False)
|
|
@@ -69,7 +66,6 @@ class NameServerBulkImportView(generic.BulkImportView):
|
|
|
69
66
|
queryset = NameServer.objects.all()
|
|
70
67
|
model_form = NameServerImportForm
|
|
71
68
|
table = NameServerTable
|
|
72
|
-
default_return_url = "plugins:netbox_dns:nameserver_list"
|
|
73
69
|
|
|
74
70
|
|
|
75
71
|
@register_model_view(NameServer, "bulk_edit", path="edit", detail=False)
|
|
@@ -87,11 +83,6 @@ class NameServerBulkDeleteView(generic.BulkDeleteView):
|
|
|
87
83
|
table = NameServerTable
|
|
88
84
|
|
|
89
85
|
|
|
90
|
-
@register_model_view(NameServer, "contacts")
|
|
91
|
-
class NameServerContactsView(ObjectContactsView):
|
|
92
|
-
queryset = NameServer.objects.all()
|
|
93
|
-
|
|
94
|
-
|
|
95
86
|
@register_model_view(NameServer, "zones")
|
|
96
87
|
class NameServerZoneListView(generic.ObjectChildrenView):
|
|
97
88
|
queryset = NameServer.objects.prefetch_related("zones")
|
netbox_dns/views/record.py
CHANGED
|
@@ -4,7 +4,6 @@ from django.utils.translation import gettext_lazy as _
|
|
|
4
4
|
|
|
5
5
|
from netbox.views import generic
|
|
6
6
|
from utilities.views import register_model_view
|
|
7
|
-
from tenancy.views import ObjectContactsView
|
|
8
7
|
|
|
9
8
|
from netbox_dns.filtersets import RecordFilterSet
|
|
10
9
|
from netbox_dns.forms import (
|
|
@@ -178,13 +177,11 @@ class RecordEditView(generic.ObjectEditView):
|
|
|
178
177
|
"zone", "ptr_record"
|
|
179
178
|
)
|
|
180
179
|
form = RecordForm
|
|
181
|
-
default_return_url = "plugins:netbox_dns:record_list"
|
|
182
180
|
|
|
183
181
|
|
|
184
182
|
@register_model_view(Record, "delete")
|
|
185
183
|
class RecordDeleteView(generic.ObjectDeleteView):
|
|
186
184
|
queryset = Record.objects.filter(managed=False)
|
|
187
|
-
default_return_url = "plugins:netbox_dns:record_list"
|
|
188
185
|
|
|
189
186
|
|
|
190
187
|
@register_model_view(Record, "bulk_import", detail=False)
|
|
@@ -194,7 +191,6 @@ class RecordBulkImportView(generic.BulkImportView):
|
|
|
194
191
|
)
|
|
195
192
|
model_form = RecordImportForm
|
|
196
193
|
table = RecordTable
|
|
197
|
-
default_return_url = "plugins:netbox_dns:record_list"
|
|
198
194
|
|
|
199
195
|
|
|
200
196
|
@register_model_view(Record, "bulk_edit", path="edit", detail=False)
|
|
@@ -210,8 +206,3 @@ class RecordBulkDeleteView(generic.BulkDeleteView):
|
|
|
210
206
|
queryset = Record.objects.filter(managed=False)
|
|
211
207
|
filterset = RecordFilterSet
|
|
212
208
|
table = RecordTable
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
@register_model_view(Record, "contacts")
|
|
216
|
-
class RecordContactsView(ObjectContactsView):
|
|
217
|
-
queryset = Record.objects.all()
|
|
@@ -62,13 +62,11 @@ class RecordTemplateView(generic.ObjectView):
|
|
|
62
62
|
class RecordTemplateEditView(generic.ObjectEditView):
|
|
63
63
|
queryset = RecordTemplate.objects.all()
|
|
64
64
|
form = RecordTemplateForm
|
|
65
|
-
default_return_url = "plugins:netbox_dns:recordtemplate_list"
|
|
66
65
|
|
|
67
66
|
|
|
68
67
|
@register_model_view(RecordTemplate, "delete")
|
|
69
68
|
class RecordTemplateDeleteView(generic.ObjectDeleteView):
|
|
70
69
|
queryset = RecordTemplate.objects.all()
|
|
71
|
-
default_return_url = "plugins:netbox_dns:recordtemplate_list"
|
|
72
70
|
|
|
73
71
|
|
|
74
72
|
@register_model_view(RecordTemplate, "bulk_import", detail=False)
|
|
@@ -76,7 +74,6 @@ class RecordTemplateBulkImportView(generic.BulkImportView):
|
|
|
76
74
|
queryset = RecordTemplate.objects.all()
|
|
77
75
|
model_form = RecordTemplateImportForm
|
|
78
76
|
table = RecordTemplateTable
|
|
79
|
-
default_return_url = "plugins:netbox_dns:recordtemplate_list"
|
|
80
77
|
|
|
81
78
|
|
|
82
79
|
@register_model_view(RecordTemplate, "bulk_edit", path="edit", detail=False)
|
netbox_dns/views/registrar.py
CHANGED
|
@@ -44,13 +44,11 @@ class RegistrarView(generic.ObjectView):
|
|
|
44
44
|
class RegistrarEditView(generic.ObjectEditView):
|
|
45
45
|
queryset = Registrar.objects.all()
|
|
46
46
|
form = RegistrarForm
|
|
47
|
-
default_return_url = "plugins:netbox_dns:registrar_list"
|
|
48
47
|
|
|
49
48
|
|
|
50
49
|
@register_model_view(Registrar, "delete")
|
|
51
50
|
class RegistrarDeleteView(generic.ObjectDeleteView):
|
|
52
51
|
queryset = Registrar.objects.all()
|
|
53
|
-
default_return_url = "plugins:netbox_dns:registrar_list"
|
|
54
52
|
|
|
55
53
|
|
|
56
54
|
@register_model_view(Registrar, "bulk_import", detail=False)
|
|
@@ -58,7 +56,6 @@ class RegistrarBulkImportView(generic.BulkImportView):
|
|
|
58
56
|
queryset = Registrar.objects.all()
|
|
59
57
|
model_form = RegistrarImportForm
|
|
60
58
|
table = RegistrarTable
|
|
61
|
-
default_return_url = "plugins:netbox_dns:registrar_list"
|
|
62
59
|
|
|
63
60
|
|
|
64
61
|
@register_model_view(Registrar, "bulk_edit", path="edit", detail=False)
|
|
@@ -45,13 +45,11 @@ class RegistrationContactView(generic.ObjectView):
|
|
|
45
45
|
class RegistrationContactEditView(generic.ObjectEditView):
|
|
46
46
|
queryset = RegistrationContact.objects.all()
|
|
47
47
|
form = RegistrationContactForm
|
|
48
|
-
default_return_url = "plugins:netbox_dns:registrationcontact_list"
|
|
49
48
|
|
|
50
49
|
|
|
51
50
|
@register_model_view(RegistrationContact, "delete")
|
|
52
51
|
class RegistrationContactDeleteView(generic.ObjectDeleteView):
|
|
53
52
|
queryset = RegistrationContact.objects.all()
|
|
54
|
-
default_return_url = "plugins:netbox_dns:registrationcontact_list"
|
|
55
53
|
|
|
56
54
|
|
|
57
55
|
@register_model_view(RegistrationContact, "bulk_import", detail=False)
|
|
@@ -59,7 +57,6 @@ class RegistrationContactBulkImportView(generic.BulkImportView):
|
|
|
59
57
|
queryset = RegistrationContact.objects.all()
|
|
60
58
|
model_form = RegistrationContactImportForm
|
|
61
59
|
table = RegistrationContactTable
|
|
62
|
-
default_return_url = "plugins:netbox_dns:registrationcontact_list"
|
|
63
60
|
|
|
64
61
|
|
|
65
62
|
@register_model_view(RegistrationContact, "bulk_edit", path="edit", detail=False)
|
netbox_dns/views/view.py
CHANGED
|
@@ -2,7 +2,6 @@ from utilities.views import ViewTab, register_model_view
|
|
|
2
2
|
from django.utils.translation import gettext_lazy as _
|
|
3
3
|
|
|
4
4
|
from netbox.views import generic
|
|
5
|
-
from tenancy.views import ObjectContactsView
|
|
6
5
|
from ipam.models import Prefix
|
|
7
6
|
|
|
8
7
|
from netbox_dns.models import View, Zone
|
|
@@ -48,13 +47,11 @@ class ViewView(generic.ObjectView):
|
|
|
48
47
|
class ViewEditView(generic.ObjectEditView):
|
|
49
48
|
queryset = View.objects.all()
|
|
50
49
|
form = ViewForm
|
|
51
|
-
default_return_url = "plugins:netbox_dns:view_list"
|
|
52
50
|
|
|
53
51
|
|
|
54
52
|
@register_model_view(View, "delete")
|
|
55
53
|
class ViewDeleteView(generic.ObjectDeleteView):
|
|
56
54
|
queryset = View.objects.all()
|
|
57
|
-
default_return_url = "plugins:netbox_dns:view_list"
|
|
58
55
|
|
|
59
56
|
|
|
60
57
|
@register_model_view(View, "bulk_import", detail=False)
|
|
@@ -62,7 +59,6 @@ class ViewBulkImportView(generic.BulkImportView):
|
|
|
62
59
|
queryset = View.objects.all()
|
|
63
60
|
model_form = ViewImportForm
|
|
64
61
|
table = ViewTable
|
|
65
|
-
default_return_url = "plugins:netbox_dns:view_list"
|
|
66
62
|
|
|
67
63
|
|
|
68
64
|
@register_model_view(View, "bulk_edit", path="edit", detail=False)
|
|
@@ -115,8 +111,3 @@ class ViewZoneListView(generic.ObjectChildrenView):
|
|
|
115
111
|
|
|
116
112
|
def get_children(self, request, parent):
|
|
117
113
|
return parent.zones
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
@register_model_view(View, "contacts")
|
|
121
|
-
class ViewContactsView(ObjectContactsView):
|
|
122
|
-
queryset = View.objects.all()
|
netbox_dns/views/zone.py
CHANGED
|
@@ -4,7 +4,6 @@ from django.utils.translation import gettext_lazy as _
|
|
|
4
4
|
|
|
5
5
|
from netbox.views import generic
|
|
6
6
|
from utilities.views import ViewTab, register_model_view
|
|
7
|
-
from tenancy.views import ObjectContactsView
|
|
8
7
|
|
|
9
8
|
from netbox_dns.filtersets import ZoneFilterSet, RecordFilterSet
|
|
10
9
|
from netbox_dns.forms import (
|
|
@@ -72,13 +71,11 @@ class ZoneView(generic.ObjectView):
|
|
|
72
71
|
class ZoneEditView(generic.ObjectEditView):
|
|
73
72
|
queryset = Zone.objects.prefetch_related("view", "tags", "nameservers", "soa_mname")
|
|
74
73
|
form = ZoneForm
|
|
75
|
-
default_return_url = "plugins:netbox_dns:zone_list"
|
|
76
74
|
|
|
77
75
|
|
|
78
76
|
@register_model_view(Zone, "delete")
|
|
79
77
|
class ZoneDeleteView(generic.ObjectDeleteView):
|
|
80
78
|
queryset = Zone.objects.all()
|
|
81
|
-
default_return_url = "plugins:netbox_dns:zone_list"
|
|
82
79
|
|
|
83
80
|
|
|
84
81
|
@register_model_view(Zone, "bulk_import", detail=False)
|
|
@@ -86,7 +83,6 @@ class ZoneBulkImportView(generic.BulkImportView):
|
|
|
86
83
|
queryset = Zone.objects.prefetch_related("view", "tags", "nameservers", "soa_mname")
|
|
87
84
|
model_form = ZoneImportForm
|
|
88
85
|
table = ZoneTable
|
|
89
|
-
default_return_url = "plugins:netbox_dns:zone_list"
|
|
90
86
|
|
|
91
87
|
|
|
92
88
|
@register_model_view(Zone, "bulk_edit", path="edit", detail=False)
|
|
@@ -95,7 +91,6 @@ class ZoneBulkEditView(generic.BulkEditView):
|
|
|
95
91
|
filterset = ZoneFilterSet
|
|
96
92
|
table = ZoneTable
|
|
97
93
|
form = ZoneBulkEditForm
|
|
98
|
-
default_return_url = "plugins:netbox_dns:zone_list"
|
|
99
94
|
|
|
100
95
|
|
|
101
96
|
@register_model_view(Zone, "bulk_delete", path="delete", detail=False)
|
|
@@ -247,8 +242,3 @@ class ZoneChildZoneListView(generic.ObjectChildrenView):
|
|
|
247
242
|
|
|
248
243
|
def get_children(self, request, parent):
|
|
249
244
|
return parent.child_zones
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
@register_model_view(Zone, "contacts")
|
|
253
|
-
class ZoneContactsView(ObjectContactsView):
|
|
254
|
-
queryset = Zone.objects.all()
|
|
@@ -51,13 +51,11 @@ class ZoneTemplateView(generic.ObjectView):
|
|
|
51
51
|
class ZoneTemplateEditView(generic.ObjectEditView):
|
|
52
52
|
queryset = ZoneTemplate.objects.all()
|
|
53
53
|
form = ZoneTemplateForm
|
|
54
|
-
default_return_url = "plugins:netbox_dns:zonetemplate_list"
|
|
55
54
|
|
|
56
55
|
|
|
57
56
|
@register_model_view(ZoneTemplate, "delete")
|
|
58
57
|
class ZoneTemplateDeleteView(generic.ObjectDeleteView):
|
|
59
58
|
queryset = ZoneTemplate.objects.all()
|
|
60
|
-
default_return_url = "plugins:netbox_dns:zonetemplate_list"
|
|
61
59
|
|
|
62
60
|
|
|
63
61
|
@register_model_view(ZoneTemplate, "bulk_import", detail=False)
|
|
@@ -65,7 +63,6 @@ class ZoneTemplateBulkImportView(generic.BulkImportView):
|
|
|
65
63
|
queryset = ZoneTemplate.objects.all()
|
|
66
64
|
model_form = ZoneTemplateImportForm
|
|
67
65
|
table = ZoneTemplateTable
|
|
68
|
-
default_return_url = "plugins:netbox_dns:zonetemplate_list"
|
|
69
66
|
|
|
70
67
|
|
|
71
68
|
@register_model_view(ZoneTemplate, "bulk_edit", path="edit", detail=False)
|
|
@@ -74,7 +71,6 @@ class ZoneTemplateBulkEditView(generic.BulkEditView):
|
|
|
74
71
|
filterset = ZoneTemplateFilterSet
|
|
75
72
|
table = ZoneTemplateTable
|
|
76
73
|
form = ZoneTemplateBulkEditForm
|
|
77
|
-
default_return_url = "plugins:netbox_dns:zonetemplate_list"
|
|
78
74
|
|
|
79
75
|
|
|
80
76
|
@register_model_view(ZoneTemplate, "bulk_delete", path="delete", detail=False)
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: netbox-plugin-dns
|
|
3
|
-
Version: 1.
|
|
3
|
+
Version: 1.3.0
|
|
4
4
|
Summary: NetBox DNS is a NetBox plugin for managing DNS data.
|
|
5
5
|
Author-email: Peter Eckel <pete@netbox-dns.org>
|
|
6
6
|
Project-URL: Homepage, https://github.com/peteeckel/netbox-plugin-dns
|
|
@@ -52,6 +52,7 @@ The main focus of the plugin is to ensure the quality of the data stored in it.
|
|
|
52
52
|
* Support for [RFC 2317](https://datatracker.ietf.org/doc/html/rfc2317) delegation of PTR zones for IPv4 subnets longer than 24 bits
|
|
53
53
|
* Templating for zones and records enables faster creations of zones with given boilerplate object relations, such as name servers, tags, tenants or registration information, or records like standard SPF or MX records that are the same for a subset of zones
|
|
54
54
|
* IPAM DNSsync can be used to automatically create address and pointer records for IP addresses by assigning prefixes to DNS views. When an IP address has a DNS name assigned and there are zones with matching names in the DNS views linked to the IP address' prefix, a matching DNS record will be created in these zones
|
|
55
|
+
* DNSSEC support for storing configuration data relevant to DNSSEC operation in NetBox DNS
|
|
55
56
|
|
|
56
57
|
Other main features include:
|
|
57
58
|
|
|
@@ -67,7 +68,7 @@ For integration with a large number of DNS server implementations integration to
|
|
|
67
68
|
|
|
68
69
|
## Requirements
|
|
69
70
|
|
|
70
|
-
* NetBox 4.
|
|
71
|
+
* NetBox 4.3.0 or higher
|
|
71
72
|
* Python 3.10 or higher
|
|
72
73
|
|
|
73
74
|
## Compatibility with NetBox Versions
|
|
@@ -80,6 +81,7 @@ NetBox Version | NetBox DNS Version | Comment
|
|
|
80
81
|
4.0 - 4.1 | 1.0 | Supports legacy IPAM Coupling
|
|
81
82
|
4.0 - 4.1 | 1.1 | Supports IPAM DNSsync
|
|
82
83
|
4.2 | 1.2 |
|
|
84
|
+
4.3 | 1.3 |
|
|
83
85
|
|
|
84
86
|
## Installation & Configuration
|
|
85
87
|
|
|
@@ -1,27 +1,27 @@
|
|
|
1
|
-
netbox_dns/__init__.py,sha256=
|
|
1
|
+
netbox_dns/__init__.py,sha256=uyFKjP5e41iPe81C_zjzXcvuUb-V4cXsXi9nFZZ6s6s,4890
|
|
2
2
|
netbox_dns/apps.py,sha256=JCW5eS-AQBUubDJve1DjP-IRFKTFGQh1NLGWzJpC5MI,151
|
|
3
3
|
netbox_dns/navigation.py,sha256=u90MwWBySg1Z9yfZEdvUctYWEkab5z1Y3019J7U_-3g,7741
|
|
4
4
|
netbox_dns/template_content.py,sha256=irgHJe91TnmmL9K1Xnv07uGmOeJMn9zTrIKtJev88XI,4283
|
|
5
5
|
netbox_dns/urls.py,sha256=wrse8l5scD-jz_O7WY0YXRlYPzpkL-0-kyAd-wCPtbQ,2596
|
|
6
6
|
netbox_dns/api/field_serializers.py,sha256=nVZ6d69DWagONDwbYCP2j3cmL-x9lryitF1wThEJxyI,725
|
|
7
|
-
netbox_dns/api/nested_serializers.py,sha256=
|
|
7
|
+
netbox_dns/api/nested_serializers.py,sha256=7ViTZBNMEZ7-NAGn5LXnd7AWxt7TbpFdAq1pcCPtTK8,3695
|
|
8
8
|
netbox_dns/api/serializers.py,sha256=OHrpfJkBn6D1y6b3nIxBEFyE50U5p-Aqv4lBojMEFgk,474
|
|
9
9
|
netbox_dns/api/urls.py,sha256=-kQaei47yZeGbDpQ9RaFaFlFb682ThuPA5h321_2cgM,1000
|
|
10
10
|
netbox_dns/api/views.py,sha256=w71SRyZue5zPD1C64TIr496nYFA_ARjHTlpSVFTZ76o,4522
|
|
11
11
|
netbox_dns/api/serializers_/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
12
|
-
netbox_dns/api/serializers_/dnssec_key_template.py,sha256=
|
|
13
|
-
netbox_dns/api/serializers_/dnssec_policy.py,sha256=
|
|
14
|
-
netbox_dns/api/serializers_/nameserver.py,sha256=
|
|
12
|
+
netbox_dns/api/serializers_/dnssec_key_template.py,sha256=gZNv8hdpTc_X0rhfuKfUcsLzV_l6CV_tTzElw6tyEGw,1654
|
|
13
|
+
netbox_dns/api/serializers_/dnssec_policy.py,sha256=DOGtQDiLLMmH2TvmVp9w-enZtrXygiSwfiREWk2IjH0,4322
|
|
14
|
+
netbox_dns/api/serializers_/nameserver.py,sha256=0ItKFCmDVqMbw9i5LandYMZTpJAGClu6lejaWvpLbBY,1288
|
|
15
15
|
netbox_dns/api/serializers_/prefix.py,sha256=kZ1DjDly6VFZamXSxGa57YC6MfZZcI5S7jmGBkVB2_I,551
|
|
16
|
-
netbox_dns/api/serializers_/record.py,sha256=
|
|
17
|
-
netbox_dns/api/serializers_/record_template.py,sha256=
|
|
18
|
-
netbox_dns/api/serializers_/registrar.py,sha256=
|
|
19
|
-
netbox_dns/api/serializers_/registration_contact.py,sha256=
|
|
20
|
-
netbox_dns/api/serializers_/view.py,sha256=
|
|
21
|
-
netbox_dns/api/serializers_/zone.py,sha256=
|
|
22
|
-
netbox_dns/api/serializers_/zone_template.py,sha256=
|
|
16
|
+
netbox_dns/api/serializers_/record.py,sha256=p33Nw1TV5pvlcEmEVt5Q_4HxLo8D0cop45FP5kNCmgI,2570
|
|
17
|
+
netbox_dns/api/serializers_/record_template.py,sha256=imRRPkCXQMCpXUUk58kB2KwXC6SyAo4HN18pSZyLpHI,1682
|
|
18
|
+
netbox_dns/api/serializers_/registrar.py,sha256=ul_6SJVqxvTE2ysXBy52U59oTzwmaD781URH1l1OW9o,927
|
|
19
|
+
netbox_dns/api/serializers_/registration_contact.py,sha256=P_aoG_1rriHn4KkwTx5Dhw37Rn3VY2whg0vAIm55cjk,1108
|
|
20
|
+
netbox_dns/api/serializers_/view.py,sha256=ipuL4FVTl5MYt5_ThayBAOBMGu61ZUGnCb8Co1tNQGU,1894
|
|
21
|
+
netbox_dns/api/serializers_/zone.py,sha256=JfjhxmfbpJRNzFqnjueFvpJS5ASnbomm1jzJrjYPpqo,6407
|
|
22
|
+
netbox_dns/api/serializers_/zone_template.py,sha256=AYlkOiAuPf0hWcj-FU3j_byY3MO3kkZ7f5xuIGA5m-Y,4407
|
|
23
23
|
netbox_dns/choices/__init__.py,sha256=K3JfawICeoUny8O_Dqexr7DOxwyg3QqijZ4DO6j5yP8,106
|
|
24
|
-
netbox_dns/choices/dnssec_key_template.py,sha256=
|
|
24
|
+
netbox_dns/choices/dnssec_key_template.py,sha256=Xl3y_ScKJmnsqMH1sv6ezLcZI1rruHDGJP5e2IRSC4s,1511
|
|
25
25
|
netbox_dns/choices/dnssec_policy.py,sha256=1EH1VoLbewiTZmnACpxq6GN0UJDVA1L6cxs-Jf6OagI,839
|
|
26
26
|
netbox_dns/choices/record.py,sha256=Ynw1aDASQEovzIPJbRFRM6F-M9u39iHMe0aj9DZsrfk,2650
|
|
27
27
|
netbox_dns/choices/utilities.py,sha256=osvDMxOZnvxx9Jc7zKjkMGNFGxtnhM49q71Q-h61lLA,123
|
|
@@ -34,31 +34,43 @@ netbox_dns/fields/network.py,sha256=a5nTzjscRufxgMjVsf5juszSYuTujU50pQ9P7q4qMVs,
|
|
|
34
34
|
netbox_dns/fields/rfc2317.py,sha256=y72PZKlXZ8_6P4eeWZ8IF3gqOMjPxW48gk3AB81XboE,2642
|
|
35
35
|
netbox_dns/fields/timeperiod.py,sha256=InK3FVc8gHNQjx101a7HsGfrHxvoG1y6drYwuRjRSIE,941
|
|
36
36
|
netbox_dns/filtersets/__init__.py,sha256=bKppz_w3X2xNNHOcxZZiIO7zSkDaNTrZJ__k1U7rKik,275
|
|
37
|
-
netbox_dns/filtersets/dnssec_key_template.py,sha256=
|
|
38
|
-
netbox_dns/filtersets/dnssec_policy.py,sha256=
|
|
39
|
-
netbox_dns/filtersets/nameserver.py,sha256=
|
|
40
|
-
netbox_dns/filtersets/record.py,sha256=
|
|
41
|
-
netbox_dns/filtersets/record_template.py,sha256=
|
|
42
|
-
netbox_dns/filtersets/registrar.py,sha256=
|
|
43
|
-
netbox_dns/filtersets/registration_contact.py,sha256=
|
|
44
|
-
netbox_dns/filtersets/view.py,sha256=
|
|
45
|
-
netbox_dns/filtersets/zone.py,sha256=
|
|
46
|
-
netbox_dns/filtersets/zone_template.py,sha256=
|
|
37
|
+
netbox_dns/filtersets/dnssec_key_template.py,sha256=dFaNGYdGXghe_uDMedOPxrMGxhDu4gHXwSQ6VLSY7gk,1625
|
|
38
|
+
netbox_dns/filtersets/dnssec_policy.py,sha256=FRmHulpWmglf89J6bzQYUVFFxvt0mvp29kp7LHA5080,3071
|
|
39
|
+
netbox_dns/filtersets/nameserver.py,sha256=4hkFsohhvBptFwY9_LJJN8_8KkMhCPsFujzIlDhlnqw,1251
|
|
40
|
+
netbox_dns/filtersets/record.py,sha256=PWNNVIzur_5sJDJ2t6hqThg3TaJjEeMOWtw_uAp9NsA,3914
|
|
41
|
+
netbox_dns/filtersets/record_template.py,sha256=Pc4P479MqfgdUMvBK39ic2nsV_gg4GT_tbdVcCL9wSI,1605
|
|
42
|
+
netbox_dns/filtersets/registrar.py,sha256=6QrsrWXu19bMa99DzwwXqfNqxpvTG0JwGEpybhOSYps,978
|
|
43
|
+
netbox_dns/filtersets/registration_contact.py,sha256=42j7NkwkbSEfomCDekkIE9ZWNug_qfvmTO_D1e-fFIw,1140
|
|
44
|
+
netbox_dns/filtersets/view.py,sha256=g8Qz363F9sieNtf4zA2L87mR86HFtkpvHTCkql6TxGk,1107
|
|
45
|
+
netbox_dns/filtersets/zone.py,sha256=Uzlgo2dGCQhH_S3tI8gVYHi7tMoNS1YK5agbLRkV7bc,7603
|
|
46
|
+
netbox_dns/filtersets/zone_template.py,sha256=U7lj26nxxSHZ0csRxWbdUTbgopTzTt_sxE5z3skn9mo,4738
|
|
47
47
|
netbox_dns/forms/__init__.py,sha256=tObkTOHw_6kVtEcwdyshN0Ql-8VGhwsgQw7owL_s2lI,273
|
|
48
|
-
netbox_dns/forms/dnssec_key_template.py,sha256=
|
|
49
|
-
netbox_dns/forms/dnssec_policy.py,sha256=
|
|
50
|
-
netbox_dns/forms/nameserver.py,sha256=
|
|
51
|
-
netbox_dns/forms/record.py,sha256=
|
|
52
|
-
netbox_dns/forms/record_template.py,sha256=
|
|
53
|
-
netbox_dns/forms/registrar.py,sha256=
|
|
54
|
-
netbox_dns/forms/registration_contact.py,sha256=
|
|
55
|
-
netbox_dns/forms/view.py,sha256=
|
|
56
|
-
netbox_dns/forms/zone.py,sha256=
|
|
57
|
-
netbox_dns/forms/zone_template.py,sha256=
|
|
48
|
+
netbox_dns/forms/dnssec_key_template.py,sha256=7zQCbpLaMiVcZ__zMswVJ2MNqlStFm22YWr1wZbi93I,5793
|
|
49
|
+
netbox_dns/forms/dnssec_policy.py,sha256=_KCGgWZB8yrC2wNFefqaM32cYMFzHsCAdqq83AF9jiw,17139
|
|
50
|
+
netbox_dns/forms/nameserver.py,sha256=_iQJXbdFrrtMnRT8yZHnOp1Nj1iwxjHIAH_hrvCkrKU,3848
|
|
51
|
+
netbox_dns/forms/record.py,sha256=wRl3uRY13VK8cF79u69-DDJmHJnZjwuLR60PsUGJ3p0,8493
|
|
52
|
+
netbox_dns/forms/record_template.py,sha256=5yuY2ppV2diEOdm_IN3QSLLEdWkOkWZOYRtOh0qPY7A,6796
|
|
53
|
+
netbox_dns/forms/registrar.py,sha256=oLMcXJOpt0F02a2Aga6A45rja7TvI18nTCZb_Dx_8t0,4038
|
|
54
|
+
netbox_dns/forms/registration_contact.py,sha256=GtUmHzPmAFNRt81rTgJbmb5TMoEJ-mpmjltkuyppJwc,6157
|
|
55
|
+
netbox_dns/forms/view.py,sha256=KZ2enzbqAEElt3b5C02kMJwnIDEjdQf_BsgMuMqKP50,10836
|
|
56
|
+
netbox_dns/forms/zone.py,sha256=Z6YypsV9tKdnNPWekLZFZVGoHz8UBO2Hylnium5M26c,29921
|
|
57
|
+
netbox_dns/forms/zone_template.py,sha256=ACx8YJirsrGMMQExVL-aEOaitsUYMyNBL793CoQZrWQ,11716
|
|
58
58
|
netbox_dns/graphql/__init__.py,sha256=0xg_5d1PPFTadBOZo752t5sfZeLFrqs2jM51Rbf8ti4,652
|
|
59
|
-
netbox_dns/graphql/
|
|
59
|
+
netbox_dns/graphql/enums.py,sha256=vC-v24AuNbaGoekLTDu1PBVbnR1aYeX6LmvrZkfd2F4,1453
|
|
60
|
+
netbox_dns/graphql/filter_lookups.py,sha256=P6wW2JrtkzUiIx6mJz_DvwYg5Sov68IKAx0zVQfuvYY,355
|
|
60
61
|
netbox_dns/graphql/schema.py,sha256=KlbJmlfQEqZhvb6-cYmq94mrMFcQoCh3MldaUD5eVV4,2904
|
|
61
62
|
netbox_dns/graphql/types.py,sha256=119sdeUAFIII85LZluBTKeZDEH5pnQ3JSYwUJOUVkAk,10192
|
|
63
|
+
netbox_dns/graphql/filters/__init__.py,sha256=bKppz_w3X2xNNHOcxZZiIO7zSkDaNTrZJ__k1U7rKik,275
|
|
64
|
+
netbox_dns/graphql/filters/dnssec_key_template.py,sha256=EPZqXaQyZ6UAnUgKy6_NjxbhXDbOI8oM7I62BuwGzR0,2071
|
|
65
|
+
netbox_dns/graphql/filters/dnssec_policy.py,sha256=MImrsCGjNKxqCRB8HGOoNKyqxRuZyhq3su_nT5hdxW4,4651
|
|
66
|
+
netbox_dns/graphql/filters/nameserver.py,sha256=iiBQ_1_id-eVgDjtcCYCnVlMG4QeP-lz3p3ZuoGaW3k,1045
|
|
67
|
+
netbox_dns/graphql/filters/record.py,sha256=RqJNgLcFJ-Q4ZxV8fqAKXAPpjl6yDxSJz-pWGHIsoS8,3308
|
|
68
|
+
netbox_dns/graphql/filters/record_template.py,sha256=3kIeIoPzl3RV7yE-h8Bdc7Lt7VXbtK86uOARFM8UmDo,1814
|
|
69
|
+
netbox_dns/graphql/filters/registrar.py,sha256=hiGBl4Fkv_yy8f-I7P25ZAFLrK4Z4hRt9C9hBNSGT14,1153
|
|
70
|
+
netbox_dns/graphql/filters/registration_contact.py,sha256=Gwwj55846y90xJiVIdBfPDqrKX_9tjxy6UwfXPbIFJo,1397
|
|
71
|
+
netbox_dns/graphql/filters/view.py,sha256=dNjGoSj5aKuQmofRDEIhxTs07ZWc8T0uheI6FOPTafQ,929
|
|
72
|
+
netbox_dns/graphql/filters/zone.py,sha256=y5262E4Xqghny8-oUgkt0pod5KtPvZjxAsEowJ5HCdU,5248
|
|
73
|
+
netbox_dns/graphql/filters/zone_template.py,sha256=I7_NFFkI8dsVMgIS5PV-VBkoxGZg2w74G3XXq2Fmdco,3095
|
|
62
74
|
netbox_dns/locale/de/LC_MESSAGES/django.mo,sha256=lwJghKXnXryPoDpC8TpvN2QyzY8vCBfF-Bmf_MWhZYs,29944
|
|
63
75
|
netbox_dns/locale/en/LC_MESSAGES/django.mo,sha256=GDnSZkfHs3yjtTsll7dksEEej4B50F8pc9RGytZNubM,393
|
|
64
76
|
netbox_dns/locale/fr/LC_MESSAGES/django.mo,sha256=vL8TcVYyBiDFZ3GVdZe4Kkc42mmtbMF3fot8maY-Q_s,30088
|
|
@@ -102,31 +114,31 @@ netbox_dns/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3h
|
|
|
102
114
|
netbox_dns/mixins/__init__.py,sha256=LxTEfpod_RHCyMtnzDljv0_dwqp2z3Q6tqbXW8LTGD8,35
|
|
103
115
|
netbox_dns/mixins/object_modification.py,sha256=AR64fU5f7g-scNAj9b54eSoS9dpjyOpqrxXVXPcOhY8,1807
|
|
104
116
|
netbox_dns/models/__init__.py,sha256=CuwFENIVUv0FNMDlY18Am-mvN5kBGkPOGavCP0cle7c,273
|
|
105
|
-
netbox_dns/models/dnssec_key_template.py,sha256=
|
|
106
|
-
netbox_dns/models/dnssec_policy.py,sha256=
|
|
107
|
-
netbox_dns/models/nameserver.py,sha256=
|
|
108
|
-
netbox_dns/models/record.py,sha256=
|
|
109
|
-
netbox_dns/models/record_template.py,sha256=
|
|
110
|
-
netbox_dns/models/registrar.py,sha256
|
|
111
|
-
netbox_dns/models/registration_contact.py,sha256=
|
|
112
|
-
netbox_dns/models/view.py,sha256=
|
|
113
|
-
netbox_dns/models/zone.py,sha256=
|
|
114
|
-
netbox_dns/models/zone_template.py,sha256=
|
|
117
|
+
netbox_dns/models/dnssec_key_template.py,sha256=Nv0vjdkOFWMptRYR1sT60bM6D8n_SnCpPZhI7WE5_UQ,2588
|
|
118
|
+
netbox_dns/models/dnssec_policy.py,sha256=REsE8p04bgJVF8yJuWuUITXpsZmvVlXWyQuJ9I6dEMs,5268
|
|
119
|
+
netbox_dns/models/nameserver.py,sha256=oVfyc_iWRzxVE2tIhfRb1Vuj2gZmlfFFzEtXj9ZEr6s,3848
|
|
120
|
+
netbox_dns/models/record.py,sha256=wmKwKKtzd9WQ1oa3G6WThPX9E2lTGsnckzdw_FpFZo4,29614
|
|
121
|
+
netbox_dns/models/record_template.py,sha256=Qr43_YZm1z3Od1cBdDY9wpNlV-UCzvpn2c6_dDzFzN8,5145
|
|
122
|
+
netbox_dns/models/registrar.py,sha256=-ozazecvd-oryEoDlOUvTWhEQKKQp3my6YVTEzWlUuI,1747
|
|
123
|
+
netbox_dns/models/registration_contact.py,sha256=9ehnTjg8KUrUYJKRRu2SaJX-NE5dO4wy90FRPlT2ys4,3620
|
|
124
|
+
netbox_dns/models/view.py,sha256=pwo7i8gtukIRgAC1A4rm58jcEpIbsSW_IUq6vSv-mRo,4618
|
|
125
|
+
netbox_dns/models/zone.py,sha256=FIGoFs-JM6Su4JZW-zBe3J2IIZUGZTxm6HOFhQyTDZg,35641
|
|
126
|
+
netbox_dns/models/zone_template.py,sha256=aUkMtWL7SAcmmBd-w33Z5HN6N9LlSlKmYNwf9MlwNq4,5051
|
|
115
127
|
netbox_dns/signals/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
116
128
|
netbox_dns/signals/dnssec.py,sha256=o4MOEg6ftxoDWFAhDtajkXzb7Nb6KuUHjtx1zNu7C1w,1040
|
|
117
129
|
netbox_dns/signals/ipam_dnssync.py,sha256=1zhlf4cMcJLlFosX7YzyqVYdFFHV4MFwTz5KCdL8xQc,7730
|
|
118
130
|
netbox_dns/tables/__init__.py,sha256=tObkTOHw_6kVtEcwdyshN0Ql-8VGhwsgQw7owL_s2lI,273
|
|
119
|
-
netbox_dns/tables/dnssec_key_template.py,sha256=
|
|
120
|
-
netbox_dns/tables/dnssec_policy.py,sha256=
|
|
131
|
+
netbox_dns/tables/dnssec_key_template.py,sha256=5Y4S3Q_RtDdUHI4KxY37Trm7uKQCFUcqkC5mrb8Wi_A,1101
|
|
132
|
+
netbox_dns/tables/dnssec_policy.py,sha256=6GIhoecku3BjYwx7wsOzzkZ0uEVZk5bA63foJ3_g9sw,3332
|
|
121
133
|
netbox_dns/tables/ipam_dnssync.py,sha256=7IK95XlA2ter6gsHqXjXPd6WubpOxrV-O5-UT6R1CKU,330
|
|
122
|
-
netbox_dns/tables/nameserver.py,sha256=
|
|
123
|
-
netbox_dns/tables/record.py,sha256=
|
|
124
|
-
netbox_dns/tables/record_template.py,sha256=
|
|
125
|
-
netbox_dns/tables/registrar.py,sha256=
|
|
126
|
-
netbox_dns/tables/registration_contact.py,sha256=
|
|
127
|
-
netbox_dns/tables/view.py,sha256=
|
|
128
|
-
netbox_dns/tables/zone.py,sha256=
|
|
129
|
-
netbox_dns/tables/zone_template.py,sha256=
|
|
134
|
+
netbox_dns/tables/nameserver.py,sha256=NFFHwwW174x_XskHF9oBllnI22PGV0J78mklrJF_psw,741
|
|
135
|
+
netbox_dns/tables/record.py,sha256=r6gcZA4iocZDkHR-vZIGSqNV7iO2Q-SHv01f6c4MhIY,4307
|
|
136
|
+
netbox_dns/tables/record_template.py,sha256=ueNSya2Zyrm_zU1Z-ZxwhsJIfxBtYXXoi2pSX-l4Bt8,1977
|
|
137
|
+
netbox_dns/tables/registrar.py,sha256=yI4n0jq7igYwa-zs6YT6YVV2FxkgpfkSAsA_iPzel7A,776
|
|
138
|
+
netbox_dns/tables/registration_contact.py,sha256=PeXp5l2WC5qIwctNdk_WP9LRDq_7bnoUlSS3OS6-SDs,980
|
|
139
|
+
netbox_dns/tables/view.py,sha256=4EfI8SZRaCuf8LbnLi1L3Qx2upHnbKBONKF7aS0Ty_Q,1256
|
|
140
|
+
netbox_dns/tables/zone.py,sha256=0lsfI3N9rY11Cxgr-t0PReyNRSnB10JOh-jMVZ4qEBA,2434
|
|
141
|
+
netbox_dns/tables/zone_template.py,sha256=90geASGP6jSqKnvx2t-DaSxNZpp7j67lH1t0UzsKZ1Q,1755
|
|
130
142
|
netbox_dns/templates/netbox_dns/dnsseckeytemplate.html,sha256=dSEyHgUp0k_5JSdR4s4m_7Rom67TqvRIQN0zbQKYfjE,2839
|
|
131
143
|
netbox_dns/templates/netbox_dns/dnssecpolicy.html,sha256=dXHAt8ISsSWv-vK_kaJMcAzUBh4TZ2hAmeaYa47u0PU,7694
|
|
132
144
|
netbox_dns/templates/netbox_dns/nameserver.html,sha256=MawPiuAmjFrbv0zRi-7xkm8vr-dT1tlEno8EcoQ9peU,1714
|
|
@@ -163,18 +175,18 @@ netbox_dns/validators/dns_value.py,sha256=cADhgTohXAtOLPzaoMKO9DahEUiDanpdiuKonr
|
|
|
163
175
|
netbox_dns/validators/dnssec.py,sha256=FzWLXX3qwS9ZMaLWHaBJStwJ_D96wp7GI4LYoKjoegc,4909
|
|
164
176
|
netbox_dns/validators/rfc2317.py,sha256=uKkwxpakiFFKdYA0qy8WSlEnbFwJD4MDw6gGV4F6skg,706
|
|
165
177
|
netbox_dns/views/__init__.py,sha256=tObkTOHw_6kVtEcwdyshN0Ql-8VGhwsgQw7owL_s2lI,273
|
|
166
|
-
netbox_dns/views/dnssec_key_template.py,sha256=
|
|
167
|
-
netbox_dns/views/dnssec_policy.py,sha256=
|
|
168
|
-
netbox_dns/views/nameserver.py,sha256=
|
|
169
|
-
netbox_dns/views/record.py,sha256=
|
|
170
|
-
netbox_dns/views/record_template.py,sha256=
|
|
171
|
-
netbox_dns/views/registrar.py,sha256=
|
|
172
|
-
netbox_dns/views/registration_contact.py,sha256=
|
|
173
|
-
netbox_dns/views/view.py,sha256=
|
|
174
|
-
netbox_dns/views/zone.py,sha256=
|
|
175
|
-
netbox_dns/views/zone_template.py,sha256=
|
|
176
|
-
netbox_plugin_dns-1.
|
|
177
|
-
netbox_plugin_dns-1.
|
|
178
|
-
netbox_plugin_dns-1.
|
|
179
|
-
netbox_plugin_dns-1.
|
|
180
|
-
netbox_plugin_dns-1.
|
|
178
|
+
netbox_dns/views/dnssec_key_template.py,sha256=2psuQ7IFdomZbw04wseH2YAeybwwl_fY_7Tc4Mi9MyQ,2640
|
|
179
|
+
netbox_dns/views/dnssec_policy.py,sha256=ZvkCVfvI78w8e9c0m8lSWgRwg-jg07PM8Od0HwAVjGI,4427
|
|
180
|
+
netbox_dns/views/nameserver.py,sha256=cLB0W1UnnvEmYdoCYH5HmjrFhbEZ1gWxJTKdMS-wuh0,3564
|
|
181
|
+
netbox_dns/views/record.py,sha256=e7pH_312djse7d-YSpIfzzOk5jKBDnSpsCDu0ESvBfM,6371
|
|
182
|
+
netbox_dns/views/record_template.py,sha256=p9bg3HoXfKxut-t7gw8xkC-lv3D9Q_B3BC0eIBVbOhU,2936
|
|
183
|
+
netbox_dns/views/registrar.py,sha256=gYpMyz3rRJDmBfEeRfVENvR6fdWXN1y0XbN4JBlXoHc,2625
|
|
184
|
+
netbox_dns/views/registration_contact.py,sha256=5bJWjNBisqCkBo6d2TJyyBJlc95WM7VcSA6wsEB184k,3383
|
|
185
|
+
netbox_dns/views/view.py,sha256=xLXt7sKrda3FpNXsBSJk8L8P2XhZ1sVb5OOXovCsKEU,3089
|
|
186
|
+
netbox_dns/views/zone.py,sha256=tJiQWMmcuWX6OBtsflQwoTNVjp_GzeZ3-jmywRp74ZU,7065
|
|
187
|
+
netbox_dns/views/zone_template.py,sha256=bc0oRftfWi_46UirR3zx9JW4b1E1c2Ump2q8rEQJXug,2449
|
|
188
|
+
netbox_plugin_dns-1.3.0.dist-info/licenses/LICENSE,sha256=I3tDu11bZfhFm3EkV4zOD5TmWgLjnUNLEFwrdjniZYs,1112
|
|
189
|
+
netbox_plugin_dns-1.3.0.dist-info/METADATA,sha256=5fuqkYCamuwfR9xj7xwOyNnHCS9LTuSE3gb-LDXNZjo,7787
|
|
190
|
+
netbox_plugin_dns-1.3.0.dist-info/WHEEL,sha256=wXxTzcEDnjrTwFYjLPcsW_7_XihufBwmpiBeiXNBGEA,91
|
|
191
|
+
netbox_plugin_dns-1.3.0.dist-info/top_level.txt,sha256=sA1Rwl1mRKvMC6XHe2ylZ1GF-Q1NGd08XedK9Y4xZc4,11
|
|
192
|
+
netbox_plugin_dns-1.3.0.dist-info/RECORD,,
|
netbox_dns/graphql/filters.py
DELETED
|
@@ -1,88 +0,0 @@
|
|
|
1
|
-
import strawberry_django
|
|
2
|
-
|
|
3
|
-
from netbox.graphql.filter_mixins import autotype_decorator, BaseFilterMixin
|
|
4
|
-
|
|
5
|
-
from netbox_dns.models import (
|
|
6
|
-
NameServer,
|
|
7
|
-
View,
|
|
8
|
-
Zone,
|
|
9
|
-
Record,
|
|
10
|
-
DNSSECKeyTemplate,
|
|
11
|
-
DNSSECPolicy,
|
|
12
|
-
RegistrationContact,
|
|
13
|
-
Registrar,
|
|
14
|
-
ZoneTemplate,
|
|
15
|
-
RecordTemplate,
|
|
16
|
-
)
|
|
17
|
-
from netbox_dns.filtersets import (
|
|
18
|
-
NameServerFilterSet,
|
|
19
|
-
ViewFilterSet,
|
|
20
|
-
ZoneFilterSet,
|
|
21
|
-
RecordFilterSet,
|
|
22
|
-
DNSSECKeyTemplateFilterSet,
|
|
23
|
-
DNSSECPolicyFilterSet,
|
|
24
|
-
RegistrationContactFilterSet,
|
|
25
|
-
RegistrarFilterSet,
|
|
26
|
-
ZoneTemplateFilterSet,
|
|
27
|
-
RecordTemplateFilterSet,
|
|
28
|
-
)
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
@strawberry_django.filter(NameServer, lookups=True)
|
|
32
|
-
@autotype_decorator(NameServerFilterSet)
|
|
33
|
-
class NetBoxDNSNameServerFilter(BaseFilterMixin):
|
|
34
|
-
pass
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
@strawberry_django.filter(View, lookups=True)
|
|
38
|
-
@autotype_decorator(ViewFilterSet)
|
|
39
|
-
class NetBoxDNSViewFilter(BaseFilterMixin):
|
|
40
|
-
pass
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
@strawberry_django.filter(Zone, lookups=True)
|
|
44
|
-
@autotype_decorator(ZoneFilterSet)
|
|
45
|
-
class NetBoxDNSZoneFilter(BaseFilterMixin):
|
|
46
|
-
rfc2317_prefix: str | None
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
@strawberry_django.filter(Record, lookups=True)
|
|
50
|
-
@autotype_decorator(RecordFilterSet)
|
|
51
|
-
class NetBoxDNSRecordFilter(BaseFilterMixin):
|
|
52
|
-
ip_address: str | None
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
@strawberry_django.filter(DNSSECKeyTemplate, lookups=True)
|
|
56
|
-
@autotype_decorator(DNSSECKeyTemplateFilterSet)
|
|
57
|
-
class NetBoxDNSDNSSECKeyTemplateFilter(BaseFilterMixin):
|
|
58
|
-
ip_address: str | None
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
@strawberry_django.filter(DNSSECPolicy, lookups=True)
|
|
62
|
-
@autotype_decorator(DNSSECPolicyFilterSet)
|
|
63
|
-
class NetBoxDNSDNSSECPolicyFilter(BaseFilterMixin):
|
|
64
|
-
ip_address: str | None
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
@strawberry_django.filter(ZoneTemplate, lookups=True)
|
|
68
|
-
@autotype_decorator(ZoneTemplateFilterSet)
|
|
69
|
-
class NetBoxDNSZoneTemplateFilter(BaseFilterMixin):
|
|
70
|
-
pass
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
@strawberry_django.filter(RecordTemplate, lookups=True)
|
|
74
|
-
@autotype_decorator(RecordTemplateFilterSet)
|
|
75
|
-
class NetBoxDNSRecordTemplateFilter(BaseFilterMixin):
|
|
76
|
-
pass
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
@strawberry_django.filter(RegistrationContact, lookups=True)
|
|
80
|
-
@autotype_decorator(RegistrationContactFilterSet)
|
|
81
|
-
class NetBoxDNSRegistrationContactFilter(BaseFilterMixin):
|
|
82
|
-
pass
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
@strawberry_django.filter(Registrar, lookups=True)
|
|
86
|
-
@autotype_decorator(RegistrarFilterSet)
|
|
87
|
-
class NetBoxDNSRegistrarFilter(BaseFilterMixin):
|
|
88
|
-
pass
|
|
File without changes
|
|
File without changes
|
|
File without changes
|