mirror of
https://github.com/windmill-labs/windmill.git
synced 2026-08-19 16:02:14 +00:00
16 lines
327 B
Python
16 lines
327 B
Python
from enum import Enum
|
|
|
|
class RemoveGranularAclsKind(str, Enum):
|
|
APP = "app"
|
|
FLOW = "flow"
|
|
FOLDER = "folder"
|
|
GROUP = "group_"
|
|
RAW_APP = "raw_app"
|
|
RESOURCE = "resource"
|
|
SCHEDULE = "schedule"
|
|
SCRIPT = "script"
|
|
VARIABLE = "variable"
|
|
|
|
def __str__(self) -> str:
|
|
return str(self.value)
|