This repository has been archived by the owner on Jun 1, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
queueserver_user_group_permissions.yaml
57 lines (57 loc) · 2.09 KB
/
queueserver_user_group_permissions.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
user_groups:
root: # The group includes all available plan and devices
allowed_plans:
- null # Allow all
forbidden_plans:
- ":^_" # All plans with names starting with '_'
allowed_devices:
- null # Allow all
forbidden_devices:
- ":^_:?.*" # All devices with names starting with '_'
allowed_functions:
- null # Allow all
forbidden_functions:
- ":^_" # All functions with names starting with '_'
admin: # The group includes beamline staff, includes all or most of the plans and devices
allowed_plans:
- ":.*" # Different way to allow all plans.
forbidden_plans:
- null # Nothing is forbidden
allowed_devices:
- ":?.*:depth=5" # Allow all device and subdevices. Maximum deepth for subdevices is 5.
forbidden_devices:
- null # Nothing is forbidden
allowed_functions:
- "function_sleep" # Explicitly listed name
primary: # The group includes beamline staff, includes all or most of the plans and devices
allowed_plans:
- ":.*" # Different way to allow all plans.
forbidden_plans:
- null # Nothing is forbidden
allowed_devices:
- ":?.*:depth=5" # Allow all device and subdevices. Maximum deepth for subdevices is 5.
forbidden_devices:
- null # Nothing is forbidden
allowed_functions:
- "function_sleep" # Explicitly listed name
# test_user: # Users with limited access capabilities
# allowed_plans:
# - ":^count" # Use regular expression patterns
# - ":scan$"
# forbidden_plans:
# - ":^adaptive_scan$" # Use regular expression patterns
# - ":^inner_product"
# allowed_devices:
# - ":^det:?.*" # Use regular expression patterns
# - ":^motor:?.*"
# - ":^sim_bundle_A:?.*"
# forbidden_devices:
# - ":^det[3-5]$:?.*" # Use regular expression patterns
# - ":^motor\\d+$:?.*"
# allowed_functions:
# - ":element$"
# - ":elements$"
# - "function_sleep"
# - "clear_buffer"
# forbidden_functions:
# - ":^_" # All functions with names starting with '_'