mirror of https://github.com/jumpserver/jumpserver
				
				
				
			
		
			
				
	
	
		
			55 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			Python
		
	
	
			
		
		
	
	
			55 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			Python
		
	
	
# -*- coding: utf-8 -*-
 | 
						|
#
 | 
						|
 | 
						|
from django.db.models import TextChoices
 | 
						|
from django.utils.translation import ugettext_lazy as _
 | 
						|
 | 
						|
 | 
						|
class ReplayStorageType(TextChoices):
 | 
						|
    null = 'null', 'Null',
 | 
						|
    server = 'server', 'Server'
 | 
						|
    s3 = 's3', 'S3'
 | 
						|
    ceph = 'ceph', 'Ceph'
 | 
						|
    swift = 'swift', 'Swift'
 | 
						|
    oss = 'oss', 'OSS'
 | 
						|
    azure = 'azure', 'Azure'
 | 
						|
    obs = 'obs', 'OBS'
 | 
						|
    cos = 'cos', 'COS'
 | 
						|
 | 
						|
 | 
						|
class CommandStorageType(TextChoices):
 | 
						|
    null = 'null', 'Null',
 | 
						|
    server = 'server', 'Server'
 | 
						|
    es = 'es', 'Elasticsearch'
 | 
						|
 | 
						|
 | 
						|
# Component Status Choices
 | 
						|
# ------------------------
 | 
						|
 | 
						|
class ComponentLoad(TextChoices):
 | 
						|
    critical = 'critical', _('Critical')
 | 
						|
    high = 'high', _('High')
 | 
						|
    normal = 'normal', _('Normal')
 | 
						|
    offline = 'offline', _('Offline')
 | 
						|
 | 
						|
    @classmethod
 | 
						|
    def status(cls):
 | 
						|
        return set(dict(cls.choices).keys())
 | 
						|
 | 
						|
 | 
						|
class TerminalType(TextChoices):
 | 
						|
    koko = 'koko', 'KoKo'
 | 
						|
    guacamole = 'guacamole', 'Guacamole'
 | 
						|
    omnidb = 'omnidb', 'OmniDB'
 | 
						|
    xrdp = 'xrdp', 'Xrdp'
 | 
						|
    lion = 'lion', 'Lion'
 | 
						|
    core = 'core', 'Core'
 | 
						|
    celery = 'celery', 'Celery'
 | 
						|
    magnus = 'magnus', 'Magnus'
 | 
						|
    razor = 'razor', 'Razor'
 | 
						|
    tinker = 'tinker', 'Tinker'
 | 
						|
 | 
						|
    @classmethod
 | 
						|
    def types(cls):
 | 
						|
        return set(dict(cls.choices).keys())
 |