We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 71d561d commit 43b9e81Copy full SHA for 43b9e81
src/apify_shared/consts.py
@@ -133,6 +133,9 @@ class ActorEnvVars(str, Enum):
133
MEMORY_MBYTES = 'ACTOR_MEMORY_MBYTES'
134
"""Amount of memory allocated to the Actor run in megabytes."""
135
136
+ PERMISSION_LEVEL = 'ACTOR_PERMISSION_LEVEL'
137
+ """Permission level of the Actor."""
138
+
139
RUN_ID = 'ACTOR_RUN_ID'
140
"""Unique identifier of this specific Actor run execution."""
141
@@ -459,6 +462,7 @@ class ActorPermissionLevel(str, Enum):
459
462
ActorEnvVars.FULL_NAME,
460
463
ActorEnvVars.ID,
461
464
ActorEnvVars.INPUT_KEY,
465
+ ActorEnvVars.PERMISSION_LEVEL,
466
ActorEnvVars.RUN_ID,
467
ActorEnvVars.STANDBY_URL,
468
ActorEnvVars.TASK_ID,
0 commit comments