Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions src/apify_shared/consts.py
Original file line number Diff line number Diff line change
Expand Up @@ -384,6 +384,8 @@ class StorageGeneralAccess(str, Enum):
This setting overrides the user setting of the storage owner.
"""

#: Respect the user setting of the storage owner (default behavior).
FOLLOW_USER_SETTING = 'FOLLOW_USER_SETTING'
#: Only signed-in users with explicit access can read this storage.
RESTRICTED = 'RESTRICTED'
#: Anyone with a link or the unique storage ID can read this storage.
Expand All @@ -398,6 +400,8 @@ class RunGeneralAccess(str, Enum):
This setting overrides the user setting of the run owner.
"""

#: Respect the user setting of the storage owner (default behavior).
FOLLOW_USER_SETTING = 'FOLLOW_USER_SETTING'
#: Only signed-in users with explicit access can read this run.
RESTRICTED = 'RESTRICTED'
#: Anyone with a link or the unique run ID can read this run.
Expand Down