This commit is contained in:
Ruben Fiszel
2022-10-08 13:25:07 +02:00
parent 6ebedfc5fb
commit ac09681d49
1430 changed files with 95542 additions and 14 deletions
@@ -0,0 +1,13 @@
from enum import Enum
class RemoveGranularAclsKind(str, Enum):
SCRIPT = "script"
GROUP = "group_"
RESOURCE = "resource"
SCHEDULE = "schedule"
VARIABLE = "variable"
FLOW = "flow"
def __str__(self) -> str:
return str(self.value)