This repository has been archived by the owner on May 16, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 94
/
scopes.ts
1027 lines (1026 loc) · 42 KB
/
scopes.ts
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
/* tslint:disable */
import { IPermissionScope } from '../base';
export const PermissionScopes: IPermissionScope[] = [
{
name: 'AccessReview.Read.All',
description: 'Read all access reviews that a user can access',
longDescription: 'Allows the app to read access reviews, reviewers, decisions and settings that the signed-in user has access to in the organization',
preview: true,
admin: true,
},
{
name: 'AccessReview.ReadWrite.All',
description: 'Manage access reviews',
longDescription: 'Allows the app to read, update, delete and perform actions on access reviews, reviewers, decisions and settings that the signed-in user has access to in the organization',
preview: true,
admin: true,
},
{
name: 'Agreement.Read.All',
description: 'Read all terms of use agreements',
longDescription: 'Allows the app to read terms of use agreements on behalf of the signed-in user.',
preview: true,
admin: true,
},
{
name: 'Agreement.ReadWrite.All',
description: 'Read and write all terms of use agreements',
longDescription: 'Allows the app to read and write terms of use agreements on behalf of the signed-in user.',
preview: true,
admin: true,
},
{
name: 'EntitlementManagement.ReadWrite.All',
description: 'Read and write entitlement management resources',
longDescription: 'Allows the app to request access to and manage access packages and related entitlement management resources on behalf of the signed-in user',
preview: true,
admin: true,
},
{
name: 'AgreementAcceptance.Read',
description: 'Read user terms of use acceptance statuses',
longDescription: 'Allows the app to read terms of use acceptance statuses on behalf of the signed-in user.',
preview: true,
admin: true,
},
{
name: 'AgreementAcceptance.Read.All',
description: 'Read terms of use acceptance statuses that a user can access',
longDescription: 'Allows the app to read terms of use acceptance statuses on behalf of the signed-in user.',
preview: true,
admin: true,
},
{
name: 'Analytics.Read',
description: 'Read user analytics',
longDescription: 'Allows the app to read analytics data such as time spent in activities such as email, meetings, chats and calls.',
preview: true,
admin: false,
},
{
name: 'AppCatalog.ReadWrite.All',
description: 'Read and write to all app catalogs',
longDescription: 'Allows the app to create, read, update, and delete apps in the app catalogs.',
preview: true,
admin: true,
},
{
name: 'ApprovalRequest.Read.AdminConsentRequest',
description: 'Read admin consent approval requests',
longDescription: 'Allows the app to read admin consent requests, business flows, and governance policy templates on your behalf.',
preview: true,
admin: true,
},
{
name: 'ApprovalRequest.Read.CustomerLockbox',
description: 'Read customer lockbox approval requests',
longDescription: 'Allows the app to read customer lockbox requests, business flows and governance policy templates on your behalf.',
preview: true,
admin: true,
},
{
name: 'ApprovalRequest.Read.EntitlementManagement',
description: 'Read entitlement management approval requests',
longDescription: 'Allows the app to read entitlement management requests, business flows, and governance policy templates on your behalf.',
preview: true,
admin: true,
},
{
name: 'ApprovalRequest.Read.PriviligedAccess',
description: 'Read privileged access approval requests',
longDescription: 'Allows the app to read privileged access requests, business flows, and governance policy templates on your behalf.',
preview: true,
admin: true,
},
{
name: 'ApprovalRequest.ReadWrite.AdminConsentRequest',
description: 'Read and write admin consent approval requests',
longDescription: 'Allows the app to read and write admin consent requests, business flows, and governance policy templates on your behalf.',
preview: true,
admin: true,
},
{
name: 'ApprovalRequest.ReadWrite.CustomerLockbox',
description: 'Read and write customer lockbox approval requests',
longDescription: 'Allows the app to read and write customer lockbox requests, business flows and governance policy templates on your behalf.',
preview: true,
admin: true,
},
{
name: 'ApprovalRequest.ReadWrite.EntitlementManagement',
description: 'Read and write entitlement management approval requests',
longDescription: 'Allows the app to read and write entitlement management requests, business flows, and governance policy templates on your behalf.',
preview: true,
admin: true,
},
{
name: 'ApprovalRequest.ReadWrite.PriviligedAccess',
description: 'Read and write privileged access approval requests',
longDescription: 'Allows the app to read and write privileged access requests, business flows, and governance policy templates on your behalf.',
preview: true,
admin: true,
},
{
name: 'Calendars.Read',
description: 'Read user calendars',
longDescription: 'Allows the app to read events in user calendars.',
preview: false,
admin: false,
},
{
name: 'Calendars.Read.Shared',
description: 'Read user and shared calendars',
longDescription: 'Allows the app to read events in all calendars that the user can access, including delegate and shared calendars.',
preview: false,
admin: false,
},
{
name: 'Calendars.ReadWrite',
description: 'Have full access to user calendars',
longDescription: 'Allows the app to create, read, update, and delete events in user calendars.',
preview: false,
admin: false,
},
{
name: 'Calendars.ReadWrite.Shared',
description: 'Read and write user and shared calendars',
longDescription: 'Allows the app to create, read, update and delete events in all calendars the user has permissions to access. This includes delegate and shared calendars.',
preview: false,
admin: false,
},
{
name: 'Chat.Read',
description: 'Read chat messages',
longDescription: 'Allows the app to read chat messages. ',
preview: false,
admin: false,
},
{
name: 'Chat.ReadWrite',
description: 'Read and write chat messages',
longDescription: 'Allows the app to read and write chat messages ',
preview: false,
admin: false,
},
{
name: 'Contacts.Read',
description: 'Read user contacts',
longDescription: 'Allows the app to read user contacts.',
preview: false,
admin: false,
},
{
name: 'Contacts.Read.Shared',
description: 'Read user and shared contacts',
longDescription: 'Allows the app to read contacts that the user has permissions to access, including the user\'s own and shared contacts.',
preview: false,
admin: false,
},
{
name: 'Contacts.ReadWrite',
description: 'Have full access to user contacts',
longDescription: 'Allows the app to create, read, update, and delete user contacts.',
preview: false,
admin: false,
},
{
name: 'Contacts.ReadWrite.Shared',
description: 'Read and write user and shared contacts',
longDescription: 'Allows the app to create, read, update and delete contacts that the user has permissions to, including the user\'s own and shared contacts.',
preview: false,
admin: false,
},
{
name: 'EntitlementManagement.ReadWrite.All',
description: 'Read and write entitlement management resources',
longDescription: 'Allows the app to request access to and manage access packages and related entitlement management resources on behalf of the signed-in user',
preview: true,
admin: true,
},
{
name: 'Files.Read',
description: 'Read user files and files shared with user',
longDescription: 'Allows the app to read the signed-in user\'s files and files shared with the user.',
preview: false,
admin: false,
},
{
name: 'Files.Read.All',
description: 'Read all files that user can access',
longDescription: 'Allows the app to read all files the signed-in user can access.',
preview: false,
admin: false,
},
{
name: 'Files.Read.Selected',
description: 'Read files that the user selects',
longDescription: 'Allows the app to read files that the user selects. The app has access for several hours after the user selects a file.',
preview: false,
admin: false,
},
{
name: 'Files.ReadWrite',
description: 'Have full access to user files and files shared with user',
longDescription: 'Allows the app to read, create, update and delete the signed-in user\'s files and files shared with the user.',
preview: false,
admin: false,
},
{
name: 'Files.ReadWrite.All',
description: 'Have full access to all files user can access',
longDescription: 'Allows the app to read, create, update and delete all files the signed-in user can access.',
preview: false,
admin: false,
},
{
name: 'Files.ReadWrite.AppFolder',
description: 'Have full access to the application\'s folder',
longDescription: 'Allows the app to read, create, update and delete files in the application\'s folder.',
preview: false,
admin: false,
},
{
name: 'Files.ReadWrite.Selected',
description: 'Read and write files that the user selects',
longDescription: 'Allows the app to read and write files that the user selects. The app has access for several hours after the user selects a file.',
preview: false,
admin: false,
},
{
name: 'Mail.Read',
description: 'Read user mail',
longDescription: 'Allows the app to read email in user mailboxes.',
preview: false,
admin: false,
},
{
name: 'Mail.ReadBasic',
description: 'Read user basic mail',
longDescription: 'Allows the app to read email in the signed-in user\'s mailbox except body, previewBody, attachments and any extended properties.',
preview: false,
admin: false,
},
{
name: 'Mail.Read.Shared',
description: 'Read user and shared mail',
longDescription: 'Allows the app to read mail that the user can access, including the user\'s own and shared mail.',
preview: false,
admin: false,
},
{
name: 'Mail.ReadWrite',
description: 'Read and write access to user mail',
longDescription: 'Allows the app to create, read, update, and delete email in user mailboxes. Does not include permission to send mail.',
preview: false,
admin: false,
},
{
name: 'Mail.ReadWrite.Shared',
description: 'Read and write user and shared mail',
longDescription: 'Allows the app to create, read, update, and delete mail that the user has permission to access, including the user\'s own and shared mail. Does not include permission to send mail.',
preview: false,
admin: false,
},
{
name: 'Mail.Send',
description: 'Send mail as a user',
longDescription: 'Allows the app to send mail as users in the organization.',
preview: false,
admin: false,
},
{
name: 'Mail.Send.Shared',
description: 'Send mail on behalf of others',
longDescription: 'Allows the app to send mail as the signed-in user, including sending on-behalf of others.',
preview: false,
admin: false,
},
{
name: 'MailboxSettings.ReadWrite',
description: 'Read and write user mailbox settings',
longDescription: 'Allows the app to create, read, update, and delete user\'s mailbox settings. Does not include permission to send mail.',
preview: false,
admin: false,
},
{
name: 'openid',
description: 'Sign users in (preview)',
longDescription: 'Allows users to sign in to the app with their work or school accounts and allows the app to see basic user profile information.',
preview: false,
admin: false,
},
{
name: 'User.Read',
description: 'Sign-in and read user profile',
longDescription: 'Allows users to sign-in to the app, and allows the app to read the profile of signed-in users. The full profile includes all of the declared properties of the User entity. The app cannot read navigation properties, such as manager or direct reports. Also allows the app to read the following basic company information of the signed-in user (through the TenantDetail object): tenant ID, tenant display name, and verified domains.',
preview: false,
admin: false,
},
{
name: 'User.ReadWrite',
description: 'Read and write access to user profile',
longDescription: 'Allows the app to read your profile. It also allows the app to update your profile information on your behalf.',
preview: false,
admin: false,
},
{
name: 'User.ReadBasic.All',
description: 'Read all user\'s basic profiles',
longDescription: 'Allows the app to read the basic profile of all users in the organization on behalf of the signed-in user. The following properties comprise a user’s basic profile: display name, first and last name, photo, and email address. To read the groups that a user is a member of, the app will also require Group.Read.All or Group.ReadWrite.All.',
preview: false,
admin: false,
},
{
name: 'Notes.Create',
description: 'Create pages in users\' notebooks',
longDescription: 'Allows the app to read the titles of notebooks and sections and create new pages, notebooks and sections on behalf of the signed-in user.',
preview: false,
admin: false,
},
{
name: 'Notes.Read',
description: 'Read user notebooks',
longDescription: 'Allows the app to view the titles of OneNote notebooks and sections and to read all pages on behalf of the signed-in user. It cannot view password protected sections.',
preview: true,
admin: false,
},
{
name: 'Notes.Read.All',
description: 'Read all notebooks that the user can access',
longDescription: 'Allows the app to read the contents of all notebooks and sections that the signed-in user can access. It cannot read password protected sections.',
preview: false,
admin: false,
},
{
name: 'Notes.ReadWrite',
description: 'Read and write user notebooks',
longDescription: 'Allows the app to read the titles of notebooks and sections, read all pages, write all pages and create new pages on behalf of the signed-in user. It cannot access password protected sections.',
preview: false,
admin: false,
},
{
name: 'Notes.ReadWrite.All',
description: 'Read and write notebooks that the user can access',
longDescription: 'Allows the app to read and write the contents of all notebooks and sections that the signed-in user can access. It cannot access password protected sections.',
preview: false,
admin: false,
},
{
name: 'Organization.Read.All',
description: 'Read organization and related resources',
longDescription: 'Allows application to read the organization and related resources, on behalf of the signed-in user.',
preview: false,
admin: true,
},
{
name: 'Organization.ReadWrite.All',
description: 'Have full access to organization and related resources',
longDescription: 'Allows the application to read, create, update, and delete the organization and related resources, on behalf of the signed-in user.',
preview: false,
admin: true,
},
{
name: 'OrgContact.Read.All',
description: 'Read organization contacts',
longDescription: 'Allows the app to read all organizational contacts on behalf of the signed-in user. These contacts are managed by the organization and are different from the user\'s personal contacts.',
preview: false,
admin: true,
},
{
name: 'Presence.Read',
description: 'Read your Presence information',
longDescription: 'Allows the app to read your presence information on your behalf. Presence information includes activity, availability, status note, calendar out-of-office message, timezone and location.',
preview: true,
admin: true,
},
{
name: 'Presence.Read.All',
description: 'Read presence information of all users in your organization',
longDescription: 'Allows the app to read presence information of all users in the directory on your behalf. Presence information includes activity, availability, status note, calendar out-of-office message, timezone and location.',
preview: true,
admin: true,
},
{
name: 'ProgramControl.Read.All',
description: 'Read all programs that a user can access',
longDescription: 'Allows the app to read programs and program controls that the signed-in user has access to in the organization',
preview: true,
admin: true,
},
{
name: 'ProgramControl.ReadWrite.All',
description: 'Manage programs that a user can access',
longDescription: 'Allows the app to read, update, delete and perform actions on programs and program controls that the signed-in user has access to in the organization',
preview: true,
admin: true,
},
{
name: 'SecurityEvents.Read.All',
description: 'Read your organization’s security events',
longDescription: 'Allows the app to read your organization’s security events on behalf of the signed-in user.',
preview: true,
admin: true,
},
{
name: 'SecurityEvents.ReadWrite.All',
description: 'Read and update your organization’s security events',
longDescription: 'Allows the app to read your organization’s security events on behalf of the signed-in user. Also allows the app to update editable properties in security events on behalf of the signed-in user.',
preview: true,
admin: true,
},
{
name: 'Sites.Read.All',
description: 'Read items in all site collections',
longDescription: 'Allows the application to read documents and list items in all site collections on behalf of the signed-in user.',
preview: false,
admin: false,
},
{
name: 'Sites.ReadWrite.All',
description: 'Read and write items in all site collections',
longDescription: 'Allows the application to edit or delete documents and list items in all site collections on behalf of the signed-in user.',
preview: false,
admin: false,
},
{
name: 'Sites.Manage.All',
description: 'Create, edit, and delete items and lists in all site collections',
longDescription: 'Allows the app to manage and create lists, documents, and list items in all site collections on behalf of the signed-in user.',
preview: false,
admin: false,
}, {
name: 'Sites.FullControl.All',
description: 'Have full control of all site collections',
longDescription: 'Allows the app to have full control to SharePoint sites in all site collections on behalf of the signed-in user.',
preview: true,
admin: true,
},
{
name: 'Tasks.Read',
description: 'Read user tasks',
longDescription: 'Allows the app to read user tasks.',
preview: true,
admin: false,
},
{
name: 'Tasks.Read.Shared',
description: 'Read user and shared tasks',
longDescription: 'Allows the app to read tasks a user has permissions to access, including their own and shared tasks.',
preview: true,
admin: false,
},
{
name: 'Tasks.ReadWrite',
description: 'Create, read, update and delete user tasks and plans (preview)',
longDescription: 'Allows the app to create, read, update and delete tasks and plans (and tasks in them), that are assigned to or shared with the signed-in user.',
preview: true,
admin: false,
},
{
name: 'Tasks.ReadWrite.Shared',
description: 'Read and write user and shared tasks',
longDescription: 'Allows the app to create, read, update, and delete tasks a user has permissions to, including their own and shared tasks.',
preview: true,
admin: false,
},
{
name: 'Device.Read',
preview: true,
admin: false,
description: '',
longDescription: '',
},
{
name: 'Device.Command',
preview: true,
admin: false,
description: '',
longDescription: '',
},
{
name: 'Directory.AccessAsUser.All',
description: 'Access directory as the signed-in user',
longDescription: 'Allows the app to have the same access to information in the directory as the signed-in user.',
preview: false,
admin: true,
},
{
name: 'Directory.Read.All',
description: 'Read directory data',
longDescription: 'Allows the app to read data in your organization\'s directory, such as users, groups and apps.',
preview: false,
admin: true,
},
{
name: 'Directory.ReadWrite.All',
description: 'Read and write directory data',
longDescription: 'Allows the app to read and write data in your organization\'s directory, such as users, and groups. Does not allow user or group deletion. It does not allow the app to delete users or groups, or reset user passwords.',
preview: false,
admin: true,
},
{
name: 'Group.Read.All',
description: 'Read all groups',
longDescription: 'Allows the app to list groups, and to read their properties and all group memberships on behalf of the signed-in user. Also allows the app to read calendar, conversations, files, and other group content for all groups the signed-in user can access.',
preview: false,
admin: true,
},
{
name: 'Group.ReadWrite.All',
description: 'Read and write all groups',
longDescription: 'Allows the app to create groups and read all group properties and memberships on behalf of the signed-in user. Additionally allows group owners to manage their groups and allows group members to update group content.',
preview: false,
admin: true,
},
{
name: 'User.Read.All',
description: 'Read all user\'s full profiles',
longDescription: 'Same as User.ReadBasic.All, except that it allows the app to read the full profile of all users in the organization and when reading navigation properties like manager and direct reports. The full profile includes all of the declared properties of the User entity. To read the groups that a user is a member of, the app will also require either Group.Read.All or Group.ReadWrite.All.',
preview: false,
admin: true,
},
{
name: 'User.ReadWrite.All',
description: 'Read and write all user\'s full profiles',
longDescription: 'Allows the app to read and write the full set of profile properties, reports, and managers of other users in your organization, on behalf of the signed-in user.',
preview: false,
admin: true,
},
{
name: 'People.Read',
description: 'Read all users\' relevant people lists and search your directory',
longDescription: 'Allows the app to read a scored list of relevant people of the signed-in user. The list includes local contacts, contacts from social networking, your organization\'s directory, and people from recent communications (such as email and Skype).',
preview: false,
admin: false,
},
{
name: 'People.Read.All',
description: 'Read all users\' relevant people lists and search the directory',
longDescription: 'Allows the app to read a scored list of relevant people of the signed-in user or other users in the signed-in user\'s organization. The list can include local contacts, contacts from social networking, your organization\'s directory, and people from recent communications (such as email and Skype).',
preview: false,
admin: true,
},
{
name: 'IdentityRiskEvent.Read.All',
description: 'Read identity risk event information (preview)',
longDescription: 'Allows the app to read identity risk event information for all users in your organization on behalf of the signed-in user.',
preview: true,
admin: true,
},
{
name: 'IdentityRiskEvent.ReadWrite.All',
description: 'Read and write identity risk event information (preview)',
longDescription: 'Allows the app to read and write identity risk event information for all users in your organization on behalf of the signed-in user.',
preview: true,
admin: true,
},
{
name: 'IdentityRiskyUser.Read.All',
description: 'Read identity risky user information (preview)',
longDescription: 'Allows the app to read identity risky user information for all users in your organization on behalf of the signed-in user.',
preview: true,
admin: true,
},
{
name: 'IdentityRiskyUser.ReadWrite.All',
description: 'Read and write identity risky user information (preview)',
longDescription: 'Allows the app to read and write identity risky user information for all users in your organization on behalf of the signed-in user.',
preview: true,
admin: true,
},
{
name: 'DeviceManagementServiceConfig.Read.All',
description: 'Read Microsoft Intune configuration (preview)',
longDescription: 'Allows the app to read Microsoft Intune service properties including device enrollment and third party service connection configuration.',
preview: true,
admin: true,
},
{
name: 'DeviceManagementServiceConfig.ReadWrite.All',
description: 'Read and write Microsoft Intune configuration (preview)',
longDescription: 'Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration.',
preview: true,
admin: true,
},
{
name: 'DeviceManagementConfiguration.Read.All',
description: 'Read Microsoft Intune device configuration and policies (preview)',
longDescription: 'Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.',
preview: true,
admin: true,
},
{
name: 'DeviceManagementConfiguration.ReadWrite.All',
description: 'Read and write Microsoft Intune device configuration and policies (preview)',
longDescription: 'Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.',
preview: true,
admin: true,
},
{
name: 'DeviceManagementApps.Read.All',
description: 'Read Microsoft Intune apps (preview)',
longDescription: 'Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.',
preview: true,
admin: true,
},
{
name: 'DeviceManagementApps.ReadWrite.All',
description: 'Read and write Microsoft Intune apps (preview)',
longDescription: 'Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.',
preview: true,
admin: true,
},
{
name: 'DeviceManagementRBAC.Read.All',
description: 'Read Microsoft Intune RBAC settings (preview)',
longDescription: 'Allows the app to read the properties relating to the Microsoft Intune Role-Based Access Control (RBAC) settings.',
preview: true,
admin: true,
},
{
name: 'DeviceManagementRBAC.ReadWrite.All',
description: 'Read and write Microsoft Intune RBAC settings (preview)',
longDescription: 'Allows the app to read and write the properties relating to the Microsoft Intune Role-Based Access Control (RBAC) settings.',
preview: true,
admin: true,
},
{
name: 'DeviceManagementManagedDevices.Read.All',
description: 'Read Microsoft Intune devices (preview)',
longDescription: 'Allows the app to read the properties of devices managed by Microsoft Intune.',
preview: true,
admin: true,
},
{
name: 'DeviceManagementManagedDevices.ReadWrite.All',
description: 'Read and write Microsoft Intune devices (preview)',
longDescription: 'Allows the app to read and write the properties of devices managed by Microsoft Intune. Does not allow high impact operations such as remote wipe and password reset on the device’s owner.',
preview: true,
admin: true,
},
{
name: 'DeviceManagementManagedDevices.PrivilegedOperations.All',
description: 'Perform user-impacting remote actions on Microsoft Intune devices (preview)',
longDescription: 'Allows the app to perform remote high impact actions such as wiping the device or resetting the passcode on devices managed by Microsoft Intune.',
preview: true,
admin: true
},
{
name: 'Reports.Read.All',
description: 'Read all usage reports',
longDescription: 'Allows an app to read all service usage reports without a signed-in user. Services that provide usage reports include Office 365 and Azure Active Directory.',
preview: true,
admin: true
},
{
name: 'IdentityProvider.Read.All',
description: 'Read all identity providers',
longDescription: 'Allows an app to read all Azure Active Directory (Azure AD) identity providers.',
preview: true,
admin: true
},
{
name: 'IdentityProvider.ReadWrite.All',
description: 'Read and write all identity providers',
longDescription: 'Allows an app to read and write all Azure Active Directory (Azure AD) identity providers.',
preview: true,
admin: true
},
{
name: 'EduRoster.ReadBasic',
description: 'Read a limited subset of the organization\'s roster',
longDescription: 'Allows the app to read a limited subset of the properties from the structure of schools and classes in an organization\'s roster and a limited subset of properties about users to be read on behalf of the user. Includes name, status, education role, email address and photo.',
preview: true,
admin: true
},
{
name: 'EduAssignments.ReadBasic',
description: 'Read assignments without grades',
longDescription: 'Allows the app to read assignments without grades on behalf of the user.',
preview: true,
admin: true
},
{
name: 'EduAssignments.Read',
description: 'Read assignments including grades',
longDescription: 'Allows the app to read assignments and their grades on behalf of the user.',
preview: true,
admin: true
},
{
name: 'EduAssignments.ReadWriteBasic',
description: 'Read and write assignments without grades',
longDescription: 'Allows the app to read and write assignments without grades on behalf of the user.',
preview: true,
admin: true
},
{
name: 'EduAssignments.ReadWrite',
description: 'Read and write assignments including grades',
longDescription: 'Allows the app to read and write assignments and their grades on behalf of the user.',
preview: true,
admin: true
},
{
name: 'EduAdministration.Read',
description: 'View all Microsoft education app settings',
longDescription: 'Read the state and settings of all Microsoft education apps on behalf of the user.',
preview: true,
admin: true
},
{
name: 'EduAdministration.ReadWrite',
description: 'Manage all Microsoft education app settings',
longDescription: 'Manage the state and settings of all Microsoft education apps on behalf of the user.',
preview: true,
admin: true
},
{
name: 'Bookings.Read.All',
description: 'Read bookings information',
longDescription:
'Allows the app to read bookings appointments, businesses, customers, services, and staff on your behalf.',
preview: true,
admin: false
},
{
name: 'BookingsAppointment.ReadWrite.All',
description: 'Read and write booking appointments',
longDescription:
'Allows the app to read and write bookings appointments and customers, and additionally allows read businesses information, services, and staff on your behalf.',
preview: true,
admin: false
},
{
name: 'Bookings.ReadWrite.All',
description: 'Read and write bookings information',
longDescription:
'Allows the app to read and write Bookings appointments, businesses, customers, services, and staff on your behalf. Does not allow create, delete and publish of booking businesses.',
preview: true,
admin: false
},
{
name: 'Bookings.Manage.All',
description: 'Manage bookings information',
longDescription:
'Allows the app to read, write and manage bookings appointments, businesses, customers, services, and staff on your behalf.',
preview: true,
admin: false
},
{
name: 'UserActivity.ReadWrite.CreatedByApp',
description: 'Read and write app activity to users\' activity feed',
longDescription:
'Allows the app to read and report the signed-in user\'s activity in the app',
preview: false,
admin: false
},
{
name: 'Financials.ReadWrite.All',
description: 'Read and write financials data',
longDescription:
'Allows the app to read and write financials data on your behalf',
preview: false,
admin: false
},
{
name: 'AuditLog.Read.All',
description: 'Read audit logs data',
longDescription: 'Allows the app to read audit logs data on your behalf',
preview: false,
admin: false
},
{
name: 'Notifications.ReadWrite.CreatedByApp',
description: 'Deliver and manage your notifications for this app',
longDescription:
'Allows the app to deliver its notifications, on your behalf. Also allows the app to read, update, and delete your notification items for this app',
preview: false,
admin: false
},
{
name: 'OnlineMeetings.ReadAll',
description: 'Read Online Meeting details from the app.',
longDescription:
'Allows the app to read VTC associated online meeting details in your organization without a signed-in user',
preview: false,
admin: true
},
{
name: 'OnlineMeetings.ReadWrite',
description: 'Read and manage Online Meetings.',
longDescription:
'Allows an app to create, delete, and read online meetings on behalf of a signed-in user.',
preview: false,
admin: false
},
{
name: 'PrivilegedAccess.ReadWrite.AzureResources',
description: 'Read and write privileged access to Azure resources',
longDescription:
'Allows the app to read and write privileged access requests to Azure resources on your behalf.',
preview: true,
admin: true
},
{
name: 'PrivilegedAccess.ReadWrite.AzureAD',
description: 'Read and write privileged access to Azure Active Directory',
longDescription:
'Allows the app to request and manage just in time elevation of users to Azure AD built-in administrative roles, on your behalf.',
preview: true,
admin: true
},
{
name: 'PrivilegedAccess.ReadWrite.AzureADGroup',
description: 'Read and write privileged access to Azure AD Groups',
longDescription:
'Allows the app to request and manage just in time elevation of users to members or owners of Azure AD Groups, on your behalf.',
preview: true,
admin: true
},
{
name: 'Policy.Read.All',
description: 'Read your organization\'s policies',
longDescription:
'Allows the app to read your organization\'s policies on your behalf.',
preview: true,
admin: true
},
{
name: 'Policy.Read.PermissionGrant',
description: 'Read consent and permission grant policies',
longDescription:
'Allows the app to read policies related to consent and permission grants for applications, on your behalf.',
preview: true,
admin: true
},
{
name: 'Policy.ReadWrite.ConditionalAccess',
description: 'Read and write your organization\'s conditional access policies',
longDescription:
'Allows the app to read and write your organization\'s conditional access policies on your behalf.',
preview: true,
admin: true
},
{
name: 'Policy.ReadWrite.PermissionGrant',
description: 'Manage consent and permission grant policies',
longDescription: 'Allows the app to manage policies related to consent and permission grants for applications, on your behalf.',
preview: true,
admin: true
},
{
name: 'Policy.ReadWrite.TrustFramework',
description: 'Read and write your organization\'s trust framework policies',
longDescription: 'Allows the app to read and write your organization\'s trust framework policies on behalf of the signed-in user.',
preview: true,
admin: true
},
{
name: 'TrustFrameworkKeySet.Read.All',
description: 'Read trust framework key sets',
longDescription: 'Allows the app to read trust framework key set properties on behalf of the signed-in user.',
preview: true,
admin: true
},
{
name: 'TrustFrameworkKeySet.ReadWrite.All',
description: 'Read and write trust framework key sets',
longDescription: 'Allows the app to read and write trust framework key set properties on behalf of the signed-in user.',
preview: true,
admin: true
},
{
name: 'Place.Read.All',
description: 'Allows the app to read company places.',
longDescription: 'Allows the app to read company places (Conf Rooms and Room Lists) for calendar events and other applications.',
preview: true,
admin: true
},
{
name: 'Place.ReadWrite.All',
description: 'Allows the app to read and write company places.',
longDescription: 'Allows the app to read and write company places (Conf Rooms and Room Lists) for calendar events and other applications.',
preview: true,
admin: true
},
{
name: 'InformationProtectionPolicy.Read',
description: 'Read user labels and label policies',
longDescription: 'Allows an app to read Microsoft Information Protection sensitivity labels and label policy settings for which the user is in scope.',
preview: true,
admin: false
},
{
name: 'InformationProtectionPolicy.Read.All',
description: 'Read all published labels and label policies for an organization',
longDescription: 'Allows an app to read published sensitivity labels and label policy settings for the entire organization or a specific user without a signed in user.',
preview: true,
admin: true
},
{
name: 'Whiteboards.Read',
description: 'Read user whiteboards',
longDescription: 'Allows the app to read all whiteboards you have access to, on your behalf.',
preview: true,
admin: false
},
{
name: 'Whiteboards.ReadWrite',
description: 'Manage user whiteboards',
longDescription: 'Allows the app to read and modify all whiteboards you have access to, on your behalf.',
preview: true,
admin: false
},
{
name: 'WorkforceIntegration.Read.All',
description: 'Read the workforce integrations configured in the tenant',
longDescription: 'Allows an app to read workforce integrations configured in the tenant on your behalf.',
preview: true,
admin: true
},
{
name: 'WorkforceIntegration.ReadWrite.All',
description: 'Read and write the workforce integrations configured in the tenant',
longDescription: 'Allows an app to read and write workforce integrations configured in the tenant on your behalf.',
preview: true,
admin: true
},
{
name: 'UserNotification.ReadWrite.CreatedByApp',
description: 'Deliver and manage user notifications',
longDescription: 'Allows the app to deliver its notifications on behalf of signed-in users. Also allows the app to read, update, and delete the user\'s notification items.',
preview: false,
admin: false
},
{
name: 'ExternalItem.Read.All',
description: 'Search file and UDT connectors data',
longDescription: 'Allows the app to search from the file and UDT connectors data',
preview: true,
admin: false
},
{
name: 'IdentityUserFlow.Read.All',
description: 'Read all identity user flows',
longDescription: 'Allows the app to read your organization\'s user flows, on behalf of the signed-in user.',
preview: true,
admin: true
},
{
name: 'IdentityUserFlow.ReadWrite.All',
description: 'Read and write all identity user flows',
longDescription: 'Allows the app to read or write your organization\'s user flows, on behalf of the signed-in user.',
preview: true,
admin: true
},
{
name: 'Schedule.Read.All',
description: 'Read user schedule items',
longDescription: 'Allows the app to read schedule, schedule groups, shifts and associated entities in the Teams/Shifts application on behalf of the signed-in user.',
preview: true,
admin: true
},
{
name: 'Schedule.ReadWrite.All',
description: 'Read and write user schedule items',
longDescription: 'Allows the app to manage schedule, schedule groups, shifts and associated entities in the Teams/Shifts application on behalf of the signed-in user.',
preview: true,
admin: true
},
{
name: 'Subscription.Read.All',
description: 'Read all webhook subscriptions',
longDescription: 'Allows the app to read all webhook subscriptions on behalf of the signed-in user.',
preview: true,
admin: true
},
{
name: 'UserAuthenticationMethod.Read',