14 lines
263 B
Python
14 lines
263 B
Python
from enum import Enum
|
|
|
|
|
|
class AddGranularAclsKind(str, Enum):
|
|
SCRIPT = "script"
|
|
GROUP = "group_"
|
|
RESOURCE = "resource"
|
|
SCHEDULE = "schedule"
|
|
VARIABLE = "variable"
|
|
FLOW = "flow"
|
|
|
|
def __str__(self) -> str:
|
|
return str(self.value)
|