endoreg-db 0.4.5__py3-none-any.whl → 0.4.6__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 endoreg-db might be problematic. Click here for more details.
- endoreg_db/migrations/0008_networkdevicelogentry_aglnet_ip_and_more.py +28 -0
- endoreg_db/migrations/0009_alter_networkdevicelogentry_vpn_service_status.py +18 -0
- endoreg_db/migrations/0010_remove_networkdevicelogentry_hostname.py +17 -0
- endoreg_db/models/logging/network_device.py +4 -1
- {endoreg_db-0.4.5.dist-info → endoreg_db-0.4.6.dist-info}/METADATA +1 -1
- {endoreg_db-0.4.5.dist-info → endoreg_db-0.4.6.dist-info}/RECORD +8 -5
- {endoreg_db-0.4.5.dist-info → endoreg_db-0.4.6.dist-info}/LICENSE +0 -0
- {endoreg_db-0.4.5.dist-info → endoreg_db-0.4.6.dist-info}/WHEEL +0 -0
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
# Generated by Django 5.1.1 on 2024-10-12 16:13
|
|
2
|
+
|
|
3
|
+
from django.db import migrations, models
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
class Migration(migrations.Migration):
|
|
7
|
+
|
|
8
|
+
dependencies = [
|
|
9
|
+
('endoreg_db', '0007_networkdevicelogentry_datetime_and_more'),
|
|
10
|
+
]
|
|
11
|
+
|
|
12
|
+
operations = [
|
|
13
|
+
migrations.AddField(
|
|
14
|
+
model_name='networkdevicelogentry',
|
|
15
|
+
name='aglnet_ip',
|
|
16
|
+
field=models.GenericIPAddressField(blank=True, null=True),
|
|
17
|
+
),
|
|
18
|
+
migrations.AddField(
|
|
19
|
+
model_name='networkdevicelogentry',
|
|
20
|
+
name='hostname',
|
|
21
|
+
field=models.CharField(blank=True, max_length=255, null=True),
|
|
22
|
+
),
|
|
23
|
+
migrations.AddField(
|
|
24
|
+
model_name='networkdevicelogentry',
|
|
25
|
+
name='transferred_to_host',
|
|
26
|
+
field=models.BooleanField(default=False),
|
|
27
|
+
),
|
|
28
|
+
]
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
# Generated by Django 5.1.1 on 2024-10-12 16:51
|
|
2
|
+
|
|
3
|
+
from django.db import migrations, models
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
class Migration(migrations.Migration):
|
|
7
|
+
|
|
8
|
+
dependencies = [
|
|
9
|
+
('endoreg_db', '0008_networkdevicelogentry_aglnet_ip_and_more'),
|
|
10
|
+
]
|
|
11
|
+
|
|
12
|
+
operations = [
|
|
13
|
+
migrations.AlterField(
|
|
14
|
+
model_name='networkdevicelogentry',
|
|
15
|
+
name='vpn_service_status',
|
|
16
|
+
field=models.CharField(blank=True, max_length=255, null=True),
|
|
17
|
+
),
|
|
18
|
+
]
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
# Generated by Django 5.1.1 on 2024-10-12 16:54
|
|
2
|
+
|
|
3
|
+
from django.db import migrations
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
class Migration(migrations.Migration):
|
|
7
|
+
|
|
8
|
+
dependencies = [
|
|
9
|
+
('endoreg_db', '0009_alter_networkdevicelogentry_vpn_service_status'),
|
|
10
|
+
]
|
|
11
|
+
|
|
12
|
+
operations = [
|
|
13
|
+
migrations.RemoveField(
|
|
14
|
+
model_name='networkdevicelogentry',
|
|
15
|
+
name='hostname',
|
|
16
|
+
),
|
|
17
|
+
]
|
|
@@ -9,11 +9,14 @@ class NetworkDeviceLogEntry(AbstractLogEntry):
|
|
|
9
9
|
log_type = models.ForeignKey("LogType", on_delete=models.CASCADE, null=True, blank=True)
|
|
10
10
|
|
|
11
11
|
datetime = models.DateTimeField(default=None, null=True, blank=True)
|
|
12
|
-
|
|
12
|
+
# hostname = models.CharField(max_length=255, null=True, blank=True)
|
|
13
|
+
aglnet_ip = models.GenericIPAddressField(null=True, blank=True)
|
|
14
|
+
vpn_service_status = models.CharField(max_length=255, null=True, blank=True)
|
|
13
15
|
vpn_service_restart_attempt = models.BooleanField(default=False)
|
|
14
16
|
vpn_service_restart_success = models.BooleanField(null=True, blank=True)
|
|
15
17
|
ping_vpn = models.BooleanField(default=False)
|
|
16
18
|
ping_www = models.BooleanField(default=False)
|
|
19
|
+
transferred_to_host = models.BooleanField(default=False)
|
|
17
20
|
|
|
18
21
|
class Meta:
|
|
19
22
|
verbose_name = "Network Device Log Entry"
|
|
@@ -151,6 +151,9 @@ endoreg_db/migrations/0004_alter_rawpdffile_file.py,sha256=B1LxaapxDnzs08ScrXh1p
|
|
|
151
151
|
endoreg_db/migrations/0005_uploadedfile_alter_rawpdffile_file_anonymizedfile.py,sha256=yhQhScntZgPdMpci2aWfGk3qzvSUS9asDfMFyMlIL2U,1776
|
|
152
152
|
endoreg_db/migrations/0006_alter_rawpdffile_file.py,sha256=H8Ky5YZm3mQexgPQt8bhtB_Knd3n7nlgTXFsiCp5SEA,712
|
|
153
153
|
endoreg_db/migrations/0007_networkdevicelogentry_datetime_and_more.py,sha256=W0ltalQ_uOB4KLdrLI3YhFysna05JjJmOPhUToNG5Ck,1344
|
|
154
|
+
endoreg_db/migrations/0008_networkdevicelogentry_aglnet_ip_and_more.py,sha256=tcr2RpsrAdR30Z4cBoXAt7-B7FT4Coi8JIJCzNoRORY,820
|
|
155
|
+
endoreg_db/migrations/0009_alter_networkdevicelogentry_vpn_service_status.py,sha256=yLg7VH6IDRT4_vhUQAP_aLT73pytAasDUEtltTLuWbI,462
|
|
156
|
+
endoreg_db/migrations/0010_remove_networkdevicelogentry_hostname.py,sha256=YEOIu9_66qm0QxYn4WJy_o55uRrEpyrZOaQiUTDTBkc,376
|
|
154
157
|
endoreg_db/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
155
158
|
endoreg_db/models/__init__.py,sha256=EH4g6EvT8AbEtcVcTj8AUtjGP3sQtQw7M34I_g_IGP4,1512
|
|
156
159
|
endoreg_db/models/ai_model/__init__.py,sha256=rh5npLRGml5iiRocx359gsaA82pGJTW7wdVAfnbZP6w,106
|
|
@@ -215,7 +218,7 @@ endoreg_db/models/logging/__init__.py,sha256=GDsBf4AbhGeyUITBb9teTlTLhzU1A0GYoqQ
|
|
|
215
218
|
endoreg_db/models/logging/agl_service.py,sha256=WA5_I1clwTJWtXXDOdFt2opGJiEmp5ebEiHIx2CWkx8,699
|
|
216
219
|
endoreg_db/models/logging/base.py,sha256=39pKcV65Gru4ssZ3xb8T2IJ-ou8cjCGqn1efGuHzoRM,773
|
|
217
220
|
endoreg_db/models/logging/log_type.py,sha256=o_52ZzBBDE9CDgSeBmZJcNBoFyCDxo9HzeSANnOHrj0,636
|
|
218
|
-
endoreg_db/models/logging/network_device.py,sha256
|
|
221
|
+
endoreg_db/models/logging/network_device.py,sha256=-0DXFf4A74L0jFHybVZXNumzQlL4flUgtbcER2k0eTM,1205
|
|
219
222
|
endoreg_db/models/medication/__init__.py,sha256=69K9Iy3zEqJSd0zS_ZS9WKbvGQIgmOJm1PCpPI_vwOg,25
|
|
220
223
|
endoreg_db/models/medication/medication.py,sha256=tPXBnrGVkmyvfhjJQGcD4Jq2TkYeHl8nNLvGuVisBiI,4939
|
|
221
224
|
endoreg_db/models/network/__init__.py,sha256=lxRpaWeVxKdZDL9Hj45_rAemPs6Y2gM-f_PjmY19nOA,128
|
|
@@ -310,7 +313,7 @@ endoreg_db/utils/ocr.py,sha256=LvyABxX5OZhIeXw2pI6af8_xTj7nHQQoKGh5kNsrv7o,7136
|
|
|
310
313
|
endoreg_db/utils/uuid.py,sha256=T4HXqYtKwXFqE5kPyvlgWHyllBBF6LL6N48nl9TpwBk,53
|
|
311
314
|
endoreg_db/utils/video_metadata.py,sha256=HDyXxAeNQOK3cGzQ06xosmObzEnJBARuKjwz9vmmRIM,2613
|
|
312
315
|
endoreg_db/views.py,sha256=xc1IQHrsij7j33TUbo-_oewy3vs03pw_etpBWaMYJl0,63
|
|
313
|
-
endoreg_db-0.4.
|
|
314
|
-
endoreg_db-0.4.
|
|
315
|
-
endoreg_db-0.4.
|
|
316
|
-
endoreg_db-0.4.
|
|
316
|
+
endoreg_db-0.4.6.dist-info/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
|
|
317
|
+
endoreg_db-0.4.6.dist-info/METADATA,sha256=DxlBTfJXHLGN2-dOQgeh2wS85kFvP4Px0MUE5bDpZj8,998
|
|
318
|
+
endoreg_db-0.4.6.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
|
|
319
|
+
endoreg_db-0.4.6.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|