2024-03-01 10:09:30 -08:00
|
|
|
from enum import StrEnum
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class OrganizationAuthTokenType(StrEnum):
|
|
|
|
|
api = "api"
|
2026-02-19 18:56:06 -08:00
|
|
|
mcp_admin_impersonation = "mcp_admin_impersonation"
|
2025-08-01 11:06:34 -07:00
|
|
|
onepassword_service_account = "onepassword_service_account"
|
2025-09-23 10:16:48 -06:00
|
|
|
azure_client_secret_credential = "azure_client_secret_credential"
|
2025-12-03 06:55:04 +05:30
|
|
|
custom_credential_service = "custom_credential_service"
|
2024-11-21 15:12:26 +08:00
|
|
|
|
|
|
|
|
|
2024-11-26 11:29:33 +08:00
|
|
|
class TaskType(StrEnum):
|
|
|
|
|
general = "general"
|
|
|
|
|
validation = "validation"
|
|
|
|
|
action = "action"
|