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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
|
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Tango Observables Generator
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated. Do not modify!
// </auto-generated>
//------------------------------------------------------------------------------
using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.Linq;
using System.ComponentModel;
namespace Tango.BL.Enumerations
{
public enum Permissions
{
/// <summary>
/// (Allows loading the tech board module in Machine Studio)
/// </summary>
[Description("Allows loading the tech board module in Machine Studio")]
RunTechBoardModule = 0,
/// <summary>
/// (Allows loading the research module in Machine Studio)
/// </summary>
[Description("Allows loading the research module in Machine Studio")]
RunResearchModule = 1,
/// <summary>
/// (Allows loading the database module in Machine Studio)
/// </summary>
[Description("Allows loading the database module in Machine Studio")]
RunDataBaseModule = 2,
/// <summary>
/// (Allows loading the synchronization module in machine studio)
/// </summary>
[Description("Allows loading the synchronization module in machine studio")]
RunSynchronizationModule = 3,
/// <summary>
/// (Allows loading the machine designer module in Machine Studio)
/// </summary>
[Description("Allows loading the machine designer module in Machine Studio")]
RunMachineDesignerModule = 4,
/// <summary>
/// (Allows loading the data capture module in Machine Studio)
/// </summary>
[Description("Allows loading the data capture module in Machine Studio")]
RunDataCaptureModule = 5,
/// <summary>
/// (Allows the execution of Machine Studio)
/// </summary>
[Description("Allows the execution of Machine Studio")]
RunMachineStudio = 6,
/// <summary>
/// (Allows publishing of new Machine Studio versions.)
/// </summary>
[Description("Allows publishing of new Machine Studio versions.")]
PublishMachineStudioVersions = 7,
/// <summary>
/// (Allows loading the stubs module in machine studio)
/// </summary>
[Description("Allows loading the stubs module in machine studio")]
RunStubsModule = 8,
/// <summary>
/// (Allows loading the ColorLab module in Machine Studio)
/// </summary>
[Description("Allows loading the ColorLab module in Machine Studio")]
RunColorLabModule = 9,
/// <summary>
/// (Allows loading the Users & Roles module in machine studio)
/// </summary>
[Description("Allows loading the Users & Roles module in machine studio")]
RunUsersAndRolesModule = 10,
/// <summary>
/// (Allows openning the machine studio developer console)
/// </summary>
[Description("Allows openning the machine studio developer console")]
RunDeveloperConsole = 11,
/// <summary>
/// (Allows loading the RML module in Machine Studio)
/// </summary>
[Description("Allows loading the RML module in Machine Studio")]
RunRMLModule = 14,
/// <summary>
/// (Allows running the PPC software.)
/// </summary>
[Description("Allows running the PPC software.")]
RunPPC = 15,
/// <summary>
/// (Allows running the statistics module in Machine Studio.)
/// </summary>
[Description("Allows running the statistics module in Machine Studio.")]
RunStatisticsModule = 16,
/// <summary>
/// (Allows running the logging module in Machine Studio.)
/// </summary>
[Description("Allows running the logging module in Machine Studio.")]
RunLoggingModule = 17,
/// <summary>
/// (Allows running the storage module in Machine Studio.)
/// </summary>
[Description("Allows running the storage module in Machine Studio.")]
RunMachineStorageModule = 18,
/// <summary>
/// (Allows running the hardware versions module in Machine Studio.)
/// </summary>
[Description("Allows running the hardware versions module in Machine Studio.")]
RunHardwareVersionsModule = 19,
/// <summary>
/// (Allows publishing of new PPC application versions.)
/// </summary>
[Description("Allows publishing of new PPC application versions.")]
PublishPPCVersions = 23,
/// <summary>
/// (Allows running the ColorCapture module in Machine Studio)
/// </summary>
[Description("Allows running the ColorCapture module in Machine Studio")]
RunColorCaptureModule = 24,
/// <summary>
/// (Allows loading the color catalogs module in machine studio)
/// </summary>
[Description("Allows loading the color catalogs module in machine studio")]
RunCatalogsModule = 25,
/// <summary>
/// (Allows running the Machine Studio Machine Manager module.)
/// </summary>
[Description("Allows running the Machine Studio Machine Manager module.")]
RunMachineManagerModule = 26,
/// <summary>
/// (Allows running the Tango FSE application)
/// </summary>
[Description("Allows running the Tango FSE application")]
FSE_RunFSE = 1000,
/// <summary>
/// (Allows connecting to machines from all organizations)
/// </summary>
[Description("Allows connecting to machines from all organizations")]
FSE_ConnectAnyMachine = 1001,
/// <summary>
/// (Allows the management of the organization users)
/// </summary>
[Description("Allows the management of the organization users")]
FSE_ManageOrganizationUsersAndRoles = 1002,
/// <summary>
/// (Allows the management of all organizations users)
/// </summary>
[Description("Allows the management of all organizations users")]
FSE_ManageAllOrganizationsUsersAndRoles = 1003,
/// <summary>
/// (Allows running the procedure designer module)
/// </summary>
[Description("Allows running the procedure designer module")]
FSE_RunProcedureDesigner = 1004,
/// <summary>
/// (Allows publishing procedure projects)
/// </summary>
[Description("Allows publishing procedure projects")]
FSE_PublishProcedureProjects = 1005,
/// <summary>
/// (Allows starting remote desktop sessions)
/// </summary>
[Description("Allows starting remote desktop sessions")]
FSE_RemoteDesktopView = 1006,
/// <summary>
/// (Allows remote desktop session mouse/keyboard control and extra actions)
/// </summary>
[Description("Allows remote desktop session mouse/keyboard control and extra actions")]
FSE_RemoteDesktopControl = 1007,
/// <summary>
/// (Allows read access to the PPC file system)
/// </summary>
[Description("Allows read access to the PPC file system")]
FSE_PPCFileSystemRead = 1008,
/// <summary>
/// (Allows write access to the PPC file system)
/// </summary>
[Description("Allows write access to the PPC file system")]
FSE_PPCFileSystemWrite = 1009,
/// <summary>
/// (Allows read access to the firmware file system)
/// </summary>
[Description("Allows read access to the firmware file system")]
FSE_FirmwareFileSystemRead = 1010,
/// <summary>
/// (Allows write access to the firmware file system)
/// </summary>
[Description("Allows write access to the firmware file system")]
FSE_FirmwareFileSystemWrite = 1011,
/// <summary>
/// (Allows generating tup/tfp packages)
/// </summary>
[Description("Allows generating tup/tfp packages")]
FSE_RemoteUpgradeOffline = 1012,
/// <summary>
/// (Allows performing direct remote upgrade)
/// </summary>
[Description("Allows performing direct remote upgrade")]
FSE_RemoteUpgradeOnline = 1013,
/// <summary>
/// (Allows executing command prompt commands remotely)
/// </summary>
[Description("Allows executing command prompt commands remotely")]
FSE_ExecuteRemoteConsoleCommands = 1014,
/// <summary>
/// (Allows editing of the default diagnostics project)
/// </summary>
[Description("Allows editing of the default diagnostics project")]
FSE_EditDiagnosticsProject = 1015,
/// <summary>
/// (Allows viewing FSE logs)
/// </summary>
[Description("Allows viewing FSE logs")]
FSE_ViewFSELogs = 1016,
/// <summary>
/// (Allows viewing FSE full exception details)
/// </summary>
[Description("Allows viewing FSE full exception details")]
FSE_ViewFullExceptionDetails = 1017,
/// <summary>
/// (Allows the modification of bug reports)
/// </summary>
[Description("Allows the modification of bug reports")]
FSE_ModifyBugReport = 1018,
/// <summary>
/// (Allows viewing published procedure projects with internal visibility)
/// </summary>
[Description("Allows viewing published procedure projects with internal visibility")]
FSE_ViewInternalPublishedProcedures = 1019,
/// <summary>
/// (Allows running a floating procedure project file.)
/// </summary>
[Description("Allows running a floating procedure project file.")]
FSE_RunProcedureProjectFile = 1020,
/// <summary>
/// (Allows loading the machine configuration module)
/// </summary>
[Description("Allows loading the machine configuration module")]
FSE_RunConfigurationModule = 1021,
/// <summary>
/// (Allows editing of machine provisioning settings)
/// </summary>
[Description("Allows editing of machine provisioning settings")]
FSE_ModifyMachineProvisioning = 1022,
/// <summary>
/// (Allows editing of machine update settings)
/// </summary>
[Description("Allows editing of machine update settings")]
FSE_ModifyMachineUpdate = 1023,
/// <summary>
/// (Allows editing of machine identity settings)
/// </summary>
[Description("Allows editing of machine identity settings")]
FSE_ModifyMachineIdentity = 1024,
/// <summary>
/// (Allows editing of machine hardware settings)
/// </summary>
[Description("Allows editing of machine hardware settings")]
FSE_ModifyMachineHardware = 1025,
/// <summary>
/// (Allows viewing data store items)
/// </summary>
[Description("Allows viewing data store items")]
DataStoreRead = 1026,
/// <summary>
/// (Allows writing to local data store items)
/// </summary>
[Description("Allows writing to local data store items")]
DataStoreWrite = 1027,
/// <summary>
/// (Allows creating local data store items and collections)
/// </summary>
[Description("Allows creating local data store items and collections")]
DataStoreCreate = 1028,
/// <summary>
/// (Allows resetting the machine counters)
/// </summary>
[Description("Allows resetting the machine counters")]
FSE_ResetMachineCounters = 1029,
/// <summary>
/// (Allows resetting the machine device registration)
/// </summary>
[Description("Allows resetting the machine device registration")]
FSE_ResetMachineDeviceRegistration = 1030,
/// <summary>
/// (Allows creating and writing global data store items and collections)
/// </summary>
[Description("Allows creating and writing global data store items and collections")]
DataStoreCreateWriteGlobal = 1031,
/// <summary>
/// (Allows emulating machine events remotely)
/// </summary>
[Description("Allows emulating machine events remotely")]
FSE_EmulateMachineEvents = 1032,
/// <summary>
/// (Allows access to Twine RSM Access)
/// </summary>
[Description("Allows access to Twine RSM Access")]
TwineRSMAccess = 2000,
}
}
|