16 lines
438 B
Python
16 lines
438 B
Python
from enum import StrEnum
|
|
|
|
|
|
class OrganizationAuthTokenType(StrEnum):
|
|
api = "api"
|
|
mcp_admin_impersonation = "mcp_admin_impersonation"
|
|
onepassword_service_account = "onepassword_service_account"
|
|
azure_client_secret_credential = "azure_client_secret_credential"
|
|
custom_credential_service = "custom_credential_service"
|
|
|
|
|
|
class TaskType(StrEnum):
|
|
general = "general"
|
|
validation = "validation"
|
|
action = "action"
|