jumpserver/apps/assets/models/automations/discovery_account.py

16 lines
389 B
Python
Raw Normal View History

2022-09-07 11:49:42 +00:00
from django.utils.translation import ugettext_lazy as _
2022-09-29 12:44:45 +00:00
from .base import BaseAutomation
2022-09-07 11:49:42 +00:00
2022-10-19 03:39:11 +00:00
class DiscoveryAccountAutomation(BaseAutomation):
2022-09-07 11:49:42 +00:00
class Meta:
2022-10-19 03:39:11 +00:00
verbose_name = _("Discovery account automation")
2022-09-07 11:49:42 +00:00
def to_attr_json(self):
attr_json = super().to_attr_json()
attr_json.update({
2022-10-19 03:39:11 +00:00
'type': 'discover_account'
2022-09-07 11:49:42 +00:00
})
return attr_json