File tree Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -384,6 +384,8 @@ class StorageGeneralAccess(str, Enum):
384
384
This setting overrides the user setting of the storage owner.
385
385
"""
386
386
387
+ #: Respect the user setting of the storage owner (default behavior).
388
+ FOLLOW_USER_SETTING = 'FOLLOW_USER_SETTING'
387
389
#: Only signed-in users with explicit access can read this storage.
388
390
RESTRICTED = 'RESTRICTED'
389
391
#: Anyone with a link or the unique storage ID can read this storage.
@@ -398,6 +400,8 @@ class RunGeneralAccess(str, Enum):
398
400
This setting overrides the user setting of the run owner.
399
401
"""
400
402
403
+ #: Respect the user setting of the storage owner (default behavior).
404
+ FOLLOW_USER_SETTING = 'FOLLOW_USER_SETTING'
401
405
#: Only signed-in users with explicit access can read this run.
402
406
RESTRICTED = 'RESTRICTED'
403
407
#: Anyone with a link or the unique run ID can read this run.
You can’t perform that action at this time.
0 commit comments