-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTFS Group Permission DisplayNames with Bits.txt
1640 lines (1325 loc) · 33.7 KB
/
TFS Group Permission DisplayNames with Bits.txt
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
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
Unofficial (there is no official docs) security token format table: https://roadtoalm.com/2014/07/28/add-permissions-with-tfssecuritythe-ultimate-reference/
DisplayName: WorkItemTrackingAdministration
ActionDefinition instance 51921052
Bit: 1
DisplayName: Manage permissions
Name: ManagePermissions
ActionDefinition instance 64636290
Bit: 2
DisplayName: Destroy attachments
Name: DestroyAttachments
DisplayName: DistributedTask
ActionDefinition instance 44855704
Bit: 1
DisplayName: View
Name: View
ActionDefinition instance 1048160
Bit: 2
DisplayName: Manage
Name: Manage
ActionDefinition instance 9433441
Bit: 4
DisplayName: Listen
Name: Listen
ActionDefinition instance 17792110
Bit: 8
DisplayName: Administer Permissions
Name: AdministerPermissions
ActionDefinition instance 25911262
Bit: 16
DisplayName: Use
Name: Use
ActionDefinition instance 31874772
Bit: 32
DisplayName: Create
Name: Create
DisplayName: WorkItemQueryFolders
ActionDefinition instance 18437496
Bit: 1
DisplayName: Read
Name: Read
ActionDefinition instance 31719739
Bit: 2
DisplayName: Contribute
Name: Contribute
ActionDefinition instance 17042198
Bit: 4
DisplayName: Delete
Name: Delete
ActionDefinition instance 19162058
Bit: 8
DisplayName: Manage Permissions
Name: ManagePermissions
ActionDefinition instance 38240801
Bit: 16
DisplayName: Full Control
Name: FullControl
DisplayName: Git Repositories
ActionDefinition instance 8622890
Bit: 1
DisplayName: Administer
Name: Administer
ActionDefinition instance 10497152
Bit: 2
DisplayName: Read
Name: GenericRead
ActionDefinition instance 27365507
Bit: 4
DisplayName: Contribute
Name: GenericContribute
ActionDefinition instance 44962972
Bit: 8
DisplayName: Force push (rewrite history, delete branches and tags)
Name: ForcePush
ActionDefinition instance 2013564
Bit: 16
DisplayName: Create branch
Name: CreateBranch
ActionDefinition instance 18122076
Bit: 32
DisplayName: Create tag
Name: CreateTag
ActionDefinition instance 28880957
Bit: 64
DisplayName: Manage notes
Name: ManageNote
ActionDefinition instance 58602024
Bit: 128
DisplayName: Exempt from policy enforcement
Name: PolicyExempt
ActionDefinition instance 57656175
Bit: 256
DisplayName: Create repository
Name: CreateRepository
ActionDefinition instance 49143529
Bit: 512
DisplayName: Delete repository
Name: DeleteRepository
ActionDefinition instance 39638585
Bit: 1024
DisplayName: Rename repository
Name: RenameRepository
ActionDefinition instance 21202951
Bit: 2048
DisplayName: Edit policies
Name: EditPolicies
ActionDefinition instance 56608836
Bit: 4096
DisplayName: Remove others' locks
Name: RemoveOthersLocks
ActionDefinition instance 39717481
Bit: 8192
DisplayName: Manage permissions
Name: ManagePermissions
ActionDefinition instance 21913016
Bit: 16384
DisplayName: Contribute to pull requests
Name: PullRequestContribute
DisplayName: VersionControlItems2
ActionDefinition instance 62999416
Bit: 1
DisplayName: Read
Name: Read
ActionDefinition instance 30123835
Bit: 2
DisplayName: Pend a change in a server workspace
Name: PendChange
ActionDefinition instance 2679067
Bit: 4
DisplayName: Check in
Name: Checkin
ActionDefinition instance 24111608
Bit: 8
DisplayName: Label
Name: Label
ActionDefinition instance 15677883
Bit: 16
DisplayName: Lock
Name: Lock
ActionDefinition instance 6883221
Bit: 32
DisplayName: Revise other users' changes
Name: ReviseOther
ActionDefinition instance 61948991
Bit: 64
DisplayName: Unlock other users' changes
Name: UnlockOther
ActionDefinition instance 20670010
Bit: 128
DisplayName: Undo other users' changes
Name: UndoOther
ActionDefinition instance 51812368
Bit: 256
DisplayName: Administer labels
Name: LabelOther
ActionDefinition instance 63658128
Bit: 1024
DisplayName: Manage permissions
Name: AdminProjectRights
ActionDefinition instance 36052245
Bit: 2048
DisplayName: Check in other users' changes
Name: CheckinOther
ActionDefinition instance 56034750
Bit: 4096
DisplayName: Merge
Name: Merge
ActionDefinition instance 34550710
Bit: 8192
DisplayName: Manage branch
Name: ManageBranch
DisplayName: Licensing
ActionDefinition instance 42520941
Bit: 1
DisplayName: Read Licensing resources
Name: Read
ActionDefinition instance 47144157
Bit: 2
DisplayName: Create Licensing resources
Name: Create
ActionDefinition instance 21644229
Bit: 4
DisplayName: Modify Licensing resources
Name: Modify
ActionDefinition instance 60580335
Bit: 8
DisplayName: Delete Licensing resources
Name: Delete
ActionDefinition instance 8352109
Bit: 16
DisplayName: Assign Licensing resources
Name: Assign
ActionDefinition instance 8060118
Bit: 32
DisplayName: Revoke Licensing resources
Name: Revoke
DisplayName: EventSubscriber
ActionDefinition instance 5432205
Bit: 1
DisplayName: View
Name: GENERIC_READ
ActionDefinition instance 48889850
Bit: 2
DisplayName: Edit
Name: GENERIC_WRITE
DisplayName: WorkItemTrackingProvision
ActionDefinition instance 37355470
Bit: 1
DisplayName: Administer
Name: Administer
ActionDefinition instance 654914
Bit: 2
DisplayName: Manage work item link types
Name: ManageLinkTypes
DisplayName: BlobStoreKeepUntilPrivileges
ActionDefinition instance 5894231
Bit: 1
DisplayName: Keep for up to 7 days
Name: MaxKeep7Days
ActionDefinition instance 53048087
Bit: 2
DisplayName: Keep for up to 31 days
Name: MaxKeep31Days
ActionDefinition instance 7670737
Bit: 4
DisplayName: Keep for up to 365 days
Name: MaxKeep365Days
ActionDefinition instance 1927776
Bit: 8
DisplayName: Keep for up to 2 Years
Name: MaxKeep2Years
ActionDefinition instance 17349988
Bit: 16
DisplayName: Keep for up to 3 Years
Name: MaxKeep3Years
ActionDefinition instance 21932166
Bit: 32
DisplayName: Keep for up to 4 Years
Name: MaxKeep4Years
ActionDefinition instance 63171767
Bit: 64
DisplayName: Keep for up to 5 Years
Name: MaxKeep5Years
ActionDefinition instance 31674992
Bit: 128
DisplayName: Keep for up to 6 Years
Name: MaxKeep6Years
ActionDefinition instance 16639474
Bit: 256
DisplayName: Keep for up to 7 Years
Name: MaxKeep7Years
ActionDefinition instance 15537542
Bit: 512
DisplayName: Keep for up to 8 Years
Name: MaxKeep8Years
ActionDefinition instance 5620158
Bit: 1024
DisplayName: Keep for up to 9 Years
Name: MaxKeep9Years
ActionDefinition instance 50581426
Bit: 2048
DisplayName: Keep for up to 10 Years
Name: MaxKeep10Years
ActionDefinition instance 52579650
Bit: 4096
DisplayName: Keep for up to 15 Years
Name: MaxKeep15Years
ActionDefinition instance 3454809
Bit: 268435456
DisplayName: Keep for an unlimited number of days
Name: MaxKeepUnlimited
ActionDefinition instance 31093287
Bit: 536870912
DisplayName: Read blob security namespace
Name: SecurityAdminRead
ActionDefinition instance 11404133
Bit: 1073741824
DisplayName: Modify blob security namespace
Name: SecurityAdminWrite
DisplayName: Identity
ActionDefinition instance 35528341
Bit: 1
DisplayName: View identity information
Name: Read
ActionDefinition instance 51319614
Bit: 2
DisplayName: Edit identity information
Name: Write
ActionDefinition instance 59223347
Bit: 4
DisplayName: Delete identity information
Name: Delete
ActionDefinition instance 63248075
Bit: 8
DisplayName: Manage group membership
Name: ManageMembership
ActionDefinition instance 32361769
Bit: 16
DisplayName: Create identity scopes
Name: CreateScope
DisplayName: EventManagement
ActionDefinition instance 22820469
Bit: 1
DisplayName: Allow publishing an event from an extension
Name: ExtensionPublish
ActionDefinition instance 4057632
Bit: 2
DisplayName: Allow publishing an event without being constrained to an extension context
Name: Publish
DisplayName: Analytics
ActionDefinition instance 36518691
Bit: 1
DisplayName: View analytics
Name: Read
ActionDefinition instance 60232767
Bit: 2
DisplayName: Manage analytics permissions
Name: Administer
ActionDefinition instance 5223998
Bit: 4
DisplayName: Push the data to staging area
Name: Stage
ActionDefinition instance 47015983
Bit: 8
DisplayName: Execute query without any restrictions on the query form
Name: ExecuteUnrestrictedQuery
DisplayName: ServiceEndpoints
ActionDefinition instance 20490669
Bit: 1
DisplayName: View Endpoint
Name: View
ActionDefinition instance 50198296
Bit: 2
DisplayName: Administer Endpoint
Name: Administer
ActionDefinition instance 49131481
Bit: 4
DisplayName: Create Endpoint
Name: Create
ActionDefinition instance 39530145
Bit: 8
DisplayName: View Authorization
Name: ViewAuthorization
DisplayName: ServiceHooks
ActionDefinition instance 20226985
Bit: 1
DisplayName: View Subscriptions
Name: ViewSubscriptions
ActionDefinition instance 47825138
Bit: 2
DisplayName: Edit Subscription
Name: EditSubscriptions
ActionDefinition instance 27773061
Bit: 4
DisplayName: Delete Subscriptions
Name: DeleteSubscriptions
ActionDefinition instance 48630964
Bit: 8
DisplayName: Publish Events
Name: PublishEvents
DisplayName: AnalyticsViews
ActionDefinition instance 35025494
Bit: 1
DisplayName: View
Name: Read
ActionDefinition instance 46793998
Bit: 2
DisplayName: Edit
Name: Edit
ActionDefinition instance 18492804
Bit: 4
DisplayName: Delete
Name: Delete
ActionDefinition instance 32217513
Bit: 1024
DisplayName: Manage
Name: ManagePermissions
DisplayName: Collection
ActionDefinition instance 21522166
Bit: 1
DisplayName: View collection-level information
Name: GENERIC_READ
ActionDefinition instance 59481773
Bit: 2
DisplayName: Edit collection-level information
Name: GENERIC_WRITE
ActionDefinition instance 65573909
Bit: 4
DisplayName: Create new projects
Name: CREATE_PROJECTS
ActionDefinition instance 53294272
Bit: 16
DisplayName: Trigger events
Name: TRIGGER_EVENT
ActionDefinition instance 9886408
Bit: 32
DisplayName: Manage process template
Name: MANAGE_TEMPLATE
ActionDefinition instance 21868813
Bit: 64
DisplayName: Alter trace settings
Name: DIAGNOSTIC_TRACE
ActionDefinition instance 62601592
Bit: 128
DisplayName: View system synchronization information
Name: SYNCHRONIZE_READ
ActionDefinition instance 26543418
Bit: 512
DisplayName: Manage test controllers
Name: MANAGE_TEST_CONTROLLERS
ActionDefinition instance 37564172
Bit: 1024
DisplayName: Delete field from account
Name: DELETE_FIELD
DisplayName: Proxy
ActionDefinition instance 2533231
Bit: 1
DisplayName: Read proxies
Name: Read
ActionDefinition instance 22799085
Bit: 2
DisplayName: Manage proxies
Name: Manage
DisplayName: Plan
ActionDefinition instance 3865173
Bit: 1
DisplayName: View
Name: View
ActionDefinition instance 34786562
Bit: 2
DisplayName: Edit
Name: Edit
ActionDefinition instance 44643603
Bit: 4
DisplayName: Delete
Name: Delete
ActionDefinition instance 66248115
Bit: 8
DisplayName: Manage
Name: Manage
DisplayName: BuildAdministration
ActionDefinition instance 59362130
Bit: 1
DisplayName: View build resources
Name: ViewBuildResources
ActionDefinition instance 64497130
Bit: 2
DisplayName: Manage build resources
Name: ManageBuildResources
ActionDefinition instance 43603258
Bit: 4
DisplayName: Use build resources
Name: UseBuildResources
ActionDefinition instance 56885004
Bit: 8
DisplayName: Administer build resource permissions
Name: AdministerBuildResourcePermissions
DisplayName: Process
ActionDefinition instance 42202994
Bit: 1
DisplayName: Edit process
Name: Edit
ActionDefinition instance 44282627
Bit: 2
DisplayName: Delete process
Name: Delete
ActionDefinition instance 62999330
Bit: 4
DisplayName: Create process
Name: Create
ActionDefinition instance 30123063
Bit: 8
DisplayName: Administer process permissions
Name: AdministerProcessPermissions
ActionDefinition instance 2672115
Bit: 16
DisplayName: View Process
Name: ReadProcessPermissions
ActionDefinition instance 24049039
Bit: 32
DisplayName: Read process rules
Name: ReadProcessRules
DisplayName: FeedIndex
ActionDefinition instance 15114764
Bit: 1
DisplayName: Create and update index entries
Name: ModifyIndex
DisplayName: Feed
ActionDefinition instance 1815156
Bit: 1
DisplayName: Administer a Feed
Name: AdminFeed
ActionDefinition instance 16336406
Bit: 2
DisplayName: Archive a Feed
Name: ArchiveFeed
ActionDefinition instance 12809933
Bit: 4
DisplayName: Delete a Feed
Name: DestroyFeed
ActionDefinition instance 48180537
Bit: 8
DisplayName: Create a Feed
Name: CreateFeed
ActionDefinition instance 30971651
Bit: 16
DisplayName: Edit Feed Metadata
Name: EditFeed
ActionDefinition instance 10309404
Bit: 32
DisplayName: Read packages
Name: ReadPackage
ActionDefinition instance 25675773
Bit: 64
DisplayName: Add packages
Name: AddPackage
ActionDefinition instance 29755367
Bit: 128
DisplayName: Update packages
Name: UpdatePackage
ActionDefinition instance 66471715
Bit: 256
DisplayName: Delete packages
Name: DeletePackage
ActionDefinition instance 61374531
Bit: 1024
DisplayName: Delist packages
Name: DelistPackage
DisplayName: VersionControlPrivileges
ActionDefinition instance 15499871
Bit: 2
DisplayName: Create a workspace
Name: CreateWorkspace
ActionDefinition instance 5281111
Bit: 4
DisplayName: Administer workspaces
Name: AdminWorkspaces
ActionDefinition instance 47530006
Bit: 8
DisplayName: Administer shelved changes
Name: AdminShelvesets
ActionDefinition instance 25116876
Bit: 16
DisplayName: Administer source control connections
Name: AdminConnections
ActionDefinition instance 24725298
Bit: 32
DisplayName: Administer source control configurations
Name: AdminConfiguration
DisplayName: Library
ActionDefinition instance 21201098
Bit: 1
DisplayName: View library item
Name: View
ActionDefinition instance 56592155
Bit: 2
DisplayName: Administer library item
Name: Administer
ActionDefinition instance 39567352
Bit: 4
DisplayName: Create library item
Name: Create
ActionDefinition instance 20561848
Bit: 8
DisplayName: View library item secrets
Name: ViewSecrets
ActionDefinition instance 50838910
Bit: 16
DisplayName: Use library item
Name: Use
DisplayName: ExtensionManagement
ActionDefinition instance 54897010
Bit: 1
DisplayName: View Extensions
Name: ViewExtensions
ActionDefinition instance 24311045
Bit: 2
DisplayName: Manage Extensions
Name: ManageExtensions
ActionDefinition instance 17472816
Bit: 4
DisplayName: Manage Security
Name: ManageSecurity
DisplayName: Workspaces
ActionDefinition instance 23037620
Bit: 1
DisplayName: View workspace information
Name: Read
ActionDefinition instance 6011995
Bit: 2
DisplayName: Use the workspace
Name: Use
ActionDefinition instance 54107956
Bit: 4
DisplayName: Check in changes to the workspace
Name: Checkin
ActionDefinition instance 17209562
Bit: 8
DisplayName: Administer the workspace
Name: Administer
DisplayName: Project
ActionDefinition instance 20668333
Bit: 1
DisplayName: View project-level information
Name: GENERIC_READ
ActionDefinition instance 51797270
Bit: 2
DisplayName: Edit project-level information
Name: GENERIC_WRITE
ActionDefinition instance 63522246
Bit: 4
DisplayName: Delete team project
Name: DELETE
ActionDefinition instance 34829302
Bit: 8
DisplayName: Create test runs
Name: PUBLISH_TEST_RESULTS
ActionDefinition instance 45028263
Bit: 16
DisplayName: Administer a build
Name: ADMINISTER_BUILD
ActionDefinition instance 2601186
Bit: 32
DisplayName: Start a build
Name: START_BUILD
ActionDefinition instance 23410681
Bit: 64
DisplayName: Edit build quality
Name: EDIT_BUILD_STATUS
ActionDefinition instance 9369539
Bit: 128
DisplayName: Write to build operational store
Name: UPDATE_BUILD
ActionDefinition instance 17216995
Bit: 256
DisplayName: Delete test runs
Name: DELETE_TEST_RESULTS
ActionDefinition instance 20735233
Bit: 512
DisplayName: View test runs
Name: VIEW_TEST_RESULTS
ActionDefinition instance 52399374
Bit: 2048
DisplayName: Manage test environments
Name: MANAGE_TEST_ENVIRONMENTS
ActionDefinition instance 1832323
Bit: 4096
DisplayName: Manage test configurations
Name: MANAGE_TEST_CONFIGURATIONS
ActionDefinition instance 16490914
Bit: 8192
DisplayName: Delete and restore work items
Name: WORK_ITEM_DELETE
ActionDefinition instance 14200498
Bit: 16384
DisplayName: Move work items out of this project
Name: WORK_ITEM_MOVE
ActionDefinition instance 60695621
Bit: 32768
DisplayName: Permanently delete work items
Name: WORK_ITEM_PERMANENTLY_DELETE
ActionDefinition instance 9389685
Bit: 65536
DisplayName: Rename team project
Name: RENAME
ActionDefinition instance 17398306
Bit: 131072
DisplayName: Manage project properties
Name: MANAGE_PROPERTIES
ActionDefinition instance 22367029
Bit: 262144
DisplayName: Manage system project properties
Name: MANAGE_SYSTEM_PROPERTIES
ActionDefinition instance 67085535
Bit: 524288
DisplayName: Bypass project property cache
Name: BYPASS_PROPERTY_CACHE
ActionDefinition instance 66898905
Bit: 1048576
DisplayName: Bypass rules on work item updates
Name: BYPASS_RULES
ActionDefinition instance 65219236
Bit: 2097152
DisplayName: Suppress notifications for work item updates
Name: SUPPRESS_NOTIFICATIONS
ActionDefinition instance 50102218
Bit: 4194304
DisplayName: Update project visibility
Name: UPDATE_VISIBILITY
DisplayName: EventSubscription
ActionDefinition instance 48266778
Bit: 1
DisplayName: View
Name: GENERIC_READ
ActionDefinition instance 31747823
Bit: 2
DisplayName: Edit
Name: GENERIC_WRITE
ActionDefinition instance 17294952
Bit: 4
DisplayName: Unsubscribe
Name: UNSUBSCRIBE
ActionDefinition instance 21436848
Bit: 8
DisplayName: Create a SOAP subscription
Name: CREATE_SOAP_SUBSCRIPTION
DisplayName: CSS
ActionDefinition instance 58713911
Bit: 1
DisplayName: View permissions for this node
Name: GENERIC_READ
ActionDefinition instance 58663159
Bit: 2
DisplayName: Edit this node
Name: GENERIC_WRITE
ActionDefinition instance 58206383
Bit: 4
DisplayName: Create child nodes
Name: CREATE_CHILDREN
ActionDefinition instance 54095401
Bit: 8
DisplayName: Delete this node
Name: DELETE
ActionDefinition instance 17096567
Bit: 16
DisplayName: View work items in this node
Name: WORK_ITEM_READ
ActionDefinition instance 19651376
Bit: 32
DisplayName: Edit work items in this node
Name: WORK_ITEM_WRITE
ActionDefinition instance 42644663
Bit: 64
DisplayName: Manage test plans
Name: MANAGE_TEST_PLANS
ActionDefinition instance 48257652
Bit: 128
DisplayName: Manage test suites
Name: MANAGE_TEST_SUITES
DisplayName: Discussion Threads
ActionDefinition instance 31665688
Bit: 1
DisplayName: Manage discussion permissions
Name: Administer
ActionDefinition instance 16555740
Bit: 2
DisplayName: View discussions
Name: GenericRead
ActionDefinition instance 14783937
Bit: 4
DisplayName: Contribute to discussions
Name: GenericContribute
ActionDefinition instance 65946577
Bit: 8
DisplayName: Moderate discussions
Name: Moderate
DisplayName: DashboardGroupPrivileges
ActionDefinition instance 56648283
Bit: 1
DisplayName: Read
Name: Read
ActionDefinition instance 40072506
Bit: 2
DisplayName: Edit
Name: Edit
ActionDefinition instance 25108238
Bit: 4
DisplayName: Manage
Name: Manage
ActionDefinition instance 24647552
Bit: 8
DisplayName: ManagePermissions
Name: ManagePermissions
DisplayName: TeamLabSecurity
ActionDefinition instance 20501377
Bit: 1
DisplayName: Read
Name: Read
ActionDefinition instance 50294666
Bit: 2
DisplayName: Create
Name: Create
ActionDefinition instance 49998812
Bit: 4
DisplayName: Write
Name: Write
ActionDefinition instance 47336128
Bit: 8
DisplayName: Edit
Name: Edit
ActionDefinition instance 23371976
Bit: 16
DisplayName: Delete
Name: Delete
ActionDefinition instance 9021196
Bit: 32
DisplayName: Start
Name: Start
ActionDefinition instance 14081900
Bit: 64
DisplayName: Stop
Name: Stop
ActionDefinition instance 59628243
Bit: 128
DisplayName: Pause
Name: Pause
ActionDefinition instance 66892145