-
Notifications
You must be signed in to change notification settings - Fork 65
/
Copy pathGlobal-Config.json
1596 lines (1596 loc) · 79.6 KB
/
Global-Config.json
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
{
"RolesGroupsLookup": {
"Access Review Operator Service Role": {
"Id": "76cc9ee4-d5d3-4a45-a930-26add3d73475",
"Description": "Lets you grant Access Review System app permissions to discover and revoke access as needed by the access review process."
},
"AcrDelete": {
"Id": "c2f4ef07-c644-48eb-af81-4b1b4947fb11",
"Description": "acr delete"
},
"AcrImageSigner": {
"Id": "6cef56e8-d556-48e5-a04f-b8e64114680f",
"Description": "acr image signer"
},
"AcrPull": {
"Id": "7f951dda-4ed3-4680-a7ca-43fe172d538d",
"Description": "acr pull"
},
"AcrPush": {
"Id": "8311e382-0749-4cb8-b61a-304f252e45ec",
"Description": "acr push"
},
"AcrQuarantineReader": {
"Id": "cdda3590-29a3-44f6-95f2-9f980659eb04",
"Description": "acr quarantine data reader"
},
"AcrQuarantineWriter": {
"Id": "c8d4ff99-41c3-41a8-9f60-21dfdad59608",
"Description": "acr quarantine data writer"
},
"AgFood Platform Sensor Partner Contributor": {
"Id": "6b77f0a0-0d89-41cc-acd1-579c22c17a67",
"Description": "Provides contribute access to manage sensor related entities in AgFood Platform Service"
},
"AgFood Platform Service Admin": {
"Id": "f8da80de-1ff9-4747-ad80-a19b7f6079e3",
"Description": "Provides admin access to AgFood Platform Service"
},
"AgFood Platform Service Contributor": {
"Id": "8508508a-4469-4e45-963b-2518ee0bb728",
"Description": "Provides contribute access to AgFood Platform Service"
},
"AgFood Platform Service Reader": {
"Id": "7ec7ccdc-f61e-41fe-9aaf-980df0a44eba",
"Description": "Provides read access to AgFood Platform Service"
},
"AnyBuild Builder": {
"Id": "a2138dac-4907-4679-a376-736901ed8ad8",
"Description": "Basic user role for AnyBuild. This role allows listing of agent information and execution of remote build capabilities."
},
"API Management Developer Portal Content Editor": {
"Id": "c031e6a8-4391-4de0-8d69-4706a7ed3729",
"Description": "Can customize the developer portal, edit its content, and publish it."
},
"API Management Service Contributor": {
"Id": "312a565d-c81f-4fd8-895a-4e21e48d571c",
"Description": "Can manage service and the APIs"
},
"API Management Service Operator Role": {
"Id": "e022efe7-f5ba-4159-bbe4-b44f577e9b61",
"Description": "Can manage service but not the APIs"
},
"API Management Service Reader Role": {
"Id": "71522526-b88f-4d52-b57f-d31fc3546d0d",
"Description": "Read-only access to service and APIs"
},
"App Configuration Data Owner": {
"Id": "5ae67dd6-50cb-40e7-96ff-dc2bfa4b606b",
"Description": "Allows full access to App Configuration data."
},
"App Configuration Data Reader": {
"Id": "516239f1-63e1-4d78-a4de-a74fb236a071",
"Description": "Allows read access to App Configuration data."
},
"Application Group Contributor": {
"Id": "ca6382a4-1721-4bcf-a114-ff0c70227b6b",
"Description": "Contributor of the Application Group."
},
"Application Insights Component Contributor": {
"Id": "ae349356-3a1b-4a5e-921d-050484c6347e",
"Description": "Can manage Application Insights components"
},
"Application Insights Snapshot Debugger": {
"Id": "08954f03-6346-4c2e-81c0-ec3a5cfae23b",
"Description": "Gives user permission to use Application Insights Snapshot Debugger features"
},
"Attestation Contributor": {
"Id": "bbf86eb8-f7b4-4cce-96e4-18cddf81d86e",
"Description": "Can read write or delete the attestation provider instance"
},
"Attestation Reader": {
"Id": "fd1bd22b-8476-40bc-a0bc-69b95687b9f3",
"Description": "Can read the attestation provider properties"
},
"Automation Contributor": {
"Id": "f353d9bd-d4a6-484e-a77a-8050b599b867",
"Description": "Manage azure automation resources and other resources using azure automation."
},
"Automation Job Operator": {
"Id": "4fe576fe-1146-4730-92eb-48519fa6bf9f",
"Description": "Create and Manage Jobs using Automation Runbooks."
},
"Automation Operator": {
"Id": "d3881f73-407a-4167-8283-e981cbba0404",
"Description": "Automation Operators are able to start, stop, suspend, and resume jobs"
},
"Automation Runbook Operator": {
"Id": "5fb5aef8-1081-4b8e-bb16-9d5d0385bab5",
"Description": "Read Runbook properties - to be able to create Jobs of the runbook."
},
"Autonomous Development Platform Data Contributor (Preview)": {
"Id": "b8b15564-4fa6-4a59-ab12-03e1d9594795",
"Description": "Grants permissions to upload and manage new Autonomous Development Platform measurements."
},
"Autonomous Development Platform Data Owner (Preview)": {
"Id": "27f8b550-c507-4db9-86f2-f4b8e816d59d",
"Description": "Grants full access to Autonomous Development Platform data."
},
"Autonomous Development Platform Data Reader (Preview)": {
"Id": "d63b75f7-47ea-4f27-92ac-e0d173aaf093",
"Description": "Grants read access to Autonomous Development Platform data."
},
"Avere Contributor": {
"Id": "4f8fab4f-1852-4a58-a46a-8eaf358af14a",
"Description": "Can create and manage an Avere vFXT cluster."
},
"Avere Operator": {
"Id": "c025889f-8102-4ebf-b32c-fc0c6f0c6bd9",
"Description": "Used by the Avere vFXT cluster to manage the cluster"
},
"Azure Arc Enabled Kubernetes Cluster User Role": {
"Id": "00493d72-78f6-4148-b6c5-d3ce8e4799dd",
"Description": "List cluster user credentials action."
},
"Azure Arc Kubernetes Admin": {
"Id": "dffb1e0c-446f-4dde-a09f-99eb5cc68b96",
"Description": "Lets you manage all resources under cluster/namespace, except update or delete resource quotas and namespaces."
},
"Azure Arc Kubernetes Cluster Admin": {
"Id": "8393591c-06b9-48a2-a542-1bd6b377f6a2",
"Description": "Lets you manage all resources in the cluster."
},
"Azure Arc Kubernetes Viewer": {
"Id": "63f0a09d-1495-4db4-a681-037d84835eb4",
"Description": "Lets you view all resources in cluster/namespace, except secrets."
},
"Azure Arc Kubernetes Writer": {
"Id": "5b999177-9696-4545-85c7-50de3797e5a1",
"Description": "Lets you update everything in cluster/namespace, except (cluster)roles and (cluster)role bindings."
},
"Azure Arc ScVmm Administrator role": {
"Id": "a92dfd61-77f9-4aec-a531-19858b406c87",
"Description": "Arc ScVmm VM Administrator has permissions to perform all ScVmm actions."
},
"Azure Arc ScVmm Private Cloud User": {
"Id": "c0781e91-8102-4553-8951-97c6d4243cda",
"Description": "Azure Arc ScVmm Private Cloud User has permissions to use the ScVmm resources to deploy VMs."
},
"Azure Arc ScVmm Private Clouds Onboarding": {
"Id": "6aac74c4-6311-40d2-bbdd-7d01e7c6e3a9",
"Description": "Azure Arc ScVmm Private Clouds Onboarding role has permissions to provision all the required resources for onboard and deboard vmm server instances to Azure."
},
"Azure Arc ScVmm VM Contributor": {
"Id": "e582369a-e17b-42a5-b10c-874c387c530b",
"Description": "Arc ScVmm VM Contributor has permissions to perform all VM actions."
},
"Azure Arc VMware Administrator role ": {
"Id": "ddc140ed-e463-4246-9145-7c664192013f",
"Description": "Arc VMware VM Contributor has permissions to perform all connected VMwarevSphere actions."
},
"Azure Arc VMware Private Cloud User": {
"Id": "ce551c02-7c42-47e0-9deb-e3b6fc3a9a83",
"Description": "Azure Arc VMware Private Cloud User has permissions to use the VMware cloud resources to deploy VMs."
},
"Azure Arc VMware Private Clouds Onboarding": {
"Id": "67d33e57-3129-45e6-bb0b-7cc522f762fa",
"Description": "Azure Arc VMware Private Clouds Onboarding role has permissions to provision all the required resources for onboard and deboard vCenter instances to Azure."
},
"Azure Arc VMware VM Contributor": {
"Id": "b748a06d-6150-4f8a-aaa9-ce3940cd96cb",
"Description": "Arc VMware VM Contributor has permissions to perform all VM actions."
},
"Azure Center for SAP solutions administrator": {
"Id": "7b0c7e81-271f-4c71-90bf-e30bdfdbc2f7",
"Description": "This role provides read and write access to all capabilities of Azure Center for SAP solutions."
},
"Azure Center for SAP solutions Management role": {
"Id": "6d949e1d-41e2-46e3-8920-c6e4f31a8310",
"Description": "This role has permissions which allow users to register existing systems, view and manage systems."
},
"Azure Center for SAP solutions reader": {
"Id": "05352d14-a920-4328-a0de-4cbe7430e26b",
"Description": "This role provides read access to all capabilities of Azure Center for SAP solutions."
},
"Azure Center for SAP solutions service role": {
"Id": "aabbc5dd-1af0-458b-a942-81af88f9c138",
"Description": "Azure Center for SAP solutions service role - This role is intended to be used for providing the permissions to user assigned managed identity. Azure Center for SAP solutions will use this identity to deploy and manage SAP systems."
},
"Azure Center for SAP solutions Service role for management": {
"Id": "0105a6b0-4bb9-43d2-982a-12806f9faddb",
"Description": "This role has permissions that the user assigned managed identity must have to enable registration for the existing systems."
},
"Azure Connected Machine Onboarding": {
"Id": "b64e21ea-ac4e-4cdf-9dc9-5b892992bee7",
"Description": "Can onboard Azure Connected Machines."
},
"Azure Connected Machine Resource Administrator": {
"Id": "cd570a14-e51a-42ad-bac8-bafd67325302",
"Description": "Can read, write, delete and re-onboard Azure Connected Machines."
},
"Azure Connected Machine Resource Manager": {
"Id": "f5819b54-e033-4d82-ac66-4fec3cbf3f4c",
"Description": "Custom Role for AzureStackHCI RP to manage hybrid compute machines and hybrid connectivity endpoints in a resource group"
},
"Azure Connected SQL Server Onboarding": {
"Id": "e8113dce-c529-4d33-91fa-e9b972617508",
"Description": "Microsoft.AzureArcData service role to access the resources of Microsoft.AzureArcData stored with RPSAAS."
},
"Azure Digital Twins Data Owner": {
"Id": "bcd981a7-7f74-457b-83e1-cceb9e632ffe",
"Description": "Full access role for Digital Twins data-plane"
},
"Azure Digital Twins Data Reader": {
"Id": "d57506d4-4c8d-48b1-8587-93c323f6a5a3",
"Description": "Read-only role for Digital Twins data-plane properties"
},
"Azure Event Hubs Data Owner": {
"Id": "f526a384-b230-433a-b45c-95f59c4a2dec",
"Description": "Allows for full access to Azure Event Hubs resources."
},
"Azure Event Hubs Data Receiver": {
"Id": "a638d3c7-ab3a-418d-83e6-5f17a39d4fde",
"Description": "Allows receive access to Azure Event Hubs resources."
},
"Azure Event Hubs Data Sender": {
"Id": "2b629674-e913-4c01-ae53-ef4638d8f975",
"Description": "Allows send access to Azure Event Hubs resources."
},
"Azure Extension for SQL Server Deployment": {
"Id": "7392c568-9289-4bde-aaaa-b7131215889d",
"Description": "Microsoft.AzureArcData service role to enable deployment of Azure Extension for SQL Server"
},
"Azure Front Door Domain Contributor": {
"Id": "0ab34830-df19-4f8c-b84e-aa85b8afa6e8",
"Description": "Can manage Azure Front Door domains, but can't grant access to other users."
},
"Azure Front Door Domain Reader": {
"Id": "0f99d363-226e-4dca-9920-b807cf8e1a5f",
"Description": "Can view Azure Front Door domains, but can't make changes."
},
"Azure Front Door Secret Contributor": {
"Id": "3f2eb865-5811-4578-b90a-6fc6fa0df8e5",
"Description": "Can manage Azure Front Door secrets, but can't grant access to other users."
},
"Azure Front Door Secret Reader": {
"Id": "0db238c4-885e-4c4f-a933-aa2cef684fca",
"Description": "Can view Azure Front Door secrets, but can't make changes."
},
"Azure Kubernetes Fleet Manager Contributor Role": {
"Id": "63bb64ad-9799-4770-b5c3-24ed299a07bf",
"Description": "Grants access to read and write Azure Kubernetes Fleet Manager clusters"
},
"Azure Kubernetes Fleet Manager RBAC Admin": {
"Id": "434fb43a-c01c-447e-9f67-c3ad923cfaba",
"Description": "This role grants admin access - provides write permissions on most objects within a a namespace, with the exception of ResourceQuota object and the namespace object itself. Applying this role at cluster scope will give access across all namespaces."
},
"Azure Kubernetes Fleet Manager RBAC Cluster Admin": {
"Id": "18ab4d3d-a1bf-4477-8ad9-8359bc988f69",
"Description": "Lets you manage all resources in the fleet manager cluster."
},
"Azure Kubernetes Fleet Manager RBAC Reader": {
"Id": "30b27cfc-9c84-438e-b0ce-70e35255df80",
"Description": "Allows read-only access to see most objects in a namespace. It does not allow viewing roles or role bindings. This role does not allow viewing Secrets, since reading the contents of Secrets enables access to ServiceAccount credentials in the namespace, which would allow API access as any ServiceAccount in the namespace (a form of privilege escalation). Applying this role at cluster scope will give access across all namespaces."
},
"Azure Kubernetes Fleet Manager RBAC Writer": {
"Id": "5af6afb3-c06c-4fa4-8848-71a8aee05683",
"Description": "Allows read/write access to most objects in a namespace.This role does not allow viewing or modifying roles or role bindings. However, this role allows accessing Secrets as any ServiceAccount in the namespace, so it can be used to gain the API access levels of any ServiceAccount in the namespace. Applying this role at cluster scope will give access across all namespaces."
},
"Azure Kubernetes Service Cluster Admin Role": {
"Id": "0ab0b1a8-8aac-4efd-b8c2-3ee1fb270be8",
"Description": "List cluster admin credential action."
},
"Azure Kubernetes Service Cluster Monitoring User": {
"Id": "1afdec4b-e479-420e-99e7-f82237c7c5e6",
"Description": "List cluster monitoring user credential action."
},
"Azure Kubernetes Service Cluster User Role": {
"Id": "4abbcc35-e782-43d8-92c5-2d3f1bd2253f",
"Description": "List cluster user credential action."
},
"Azure Kubernetes Service Contributor Role": {
"Id": "ed7f3fbd-7b88-4dd4-9017-9adb7ce333f8",
"Description": "Grants access to read and write Azure Kubernetes Service clusters"
},
"Azure Kubernetes Service Policy Add-on Deployment": {
"Id": "18ed5180-3e48-46fd-8541-4ea054d57064",
"Description": "Deploy the Azure Policy add-on on Azure Kubernetes Service clusters"
},
"Azure Kubernetes Service RBAC Admin": {
"Id": "3498e952-d568-435e-9b2c-8d77e338d7f7",
"Description": "Lets you manage all resources under cluster/namespace, except update or delete resource quotas and namespaces."
},
"Azure Kubernetes Service RBAC Cluster Admin": {
"Id": "b1ff04bb-8a4e-4dc4-8eb5-8693973ce19b",
"Description": "Lets you manage all resources in the cluster."
},
"Azure Kubernetes Service RBAC Reader": {
"Id": "7f6c6a51-bcf8-42ba-9220-52d62157d7db",
"Description": "Allows read-only access to see most objects in a namespace. It does not allow viewing roles or role bindings. This role does not allow viewing Secrets, since reading the contents of Secrets enables access to ServiceAccount credentials in the namespace, which would allow API access as any ServiceAccount in the namespace (a form of privilege escalation). Applying this role at cluster scope will give access across all namespaces."
},
"Azure Kubernetes Service RBAC Writer": {
"Id": "a7ffa36f-339b-4b5c-8bdf-e2c188b2c0eb",
"Description": "Allows read/write access to most objects in a namespace.This role does not allow viewing or modifying roles or role bindings. However, this role allows accessing Secrets and running Pods as any ServiceAccount in the namespace, so it can be used to gain the API access levels of any ServiceAccount in the namespace. Applying this role at cluster scope will give access across all namespaces."
},
"Azure Maps Contributor": {
"Id": "dba33070-676a-4fb0-87fa-064dc56ff7fb",
"Description": "Grants access all Azure Maps resource management."
},
"Azure Maps Data Contributor": {
"Id": "8f5e0ce6-4f7b-4dcf-bddf-e6f48634a204",
"Description": "Grants access to read, write, and delete access to map related data from an Azure maps account."
},
"Azure Maps Data Reader": {
"Id": "423170ca-a8f6-4b0f-8487-9e4eb8f49bfa",
"Description": "Grants access to read map related data from an Azure maps account."
},
"Azure Maps Search and Render Data Reader": {
"Id": "6be48352-4f82-47c9-ad5e-0acacefdb005",
"Description": "Grants access to very limited set of data APIs for common visual web SDK scenarios. Specifically, render and search data APIs."
},
"Azure Relay Listener": {
"Id": "26e0b698-aa6d-4085-9386-aadae190014d",
"Description": "Allows for listen access to Azure Relay resources."
},
"Azure Relay Owner": {
"Id": "2787bf04-f1f5-4bfe-8383-c8a24483ee38",
"Description": "Allows for full access to Azure Relay resources."
},
"Azure Relay Sender": {
"Id": "26baccc8-eea7-41f1-98f4-1762cc7f685d",
"Description": "Allows for send access to Azure Relay resources."
},
"Azure Service Bus Data Owner": {
"Id": "090c5cfd-751d-490a-894a-3ce6f1109419",
"Description": "Allows for full access to Azure Service Bus resources."
},
"Azure Service Bus Data Receiver": {
"Id": "4f6d3b9b-027b-4f4c-9142-0e5a2a2247e0",
"Description": "Allows for receive access to Azure Service Bus resources."
},
"Azure Service Bus Data Sender": {
"Id": "69a216fc-b8fb-44d8-bc22-1f3c2cd27a39",
"Description": "Allows for send access to Azure Service Bus resources."
},
"Azure Spring Apps Connect Role": {
"Id": "80558df3-64f9-4c0f-b32d-e5094b036b0b",
"Description": "Azure Spring Apps Connect Role"
},
"Azure Spring Apps Remote Debugging Role": {
"Id": "a99b0159-1064-4c22-a57b-c9b3caa1c054",
"Description": "Azure Spring Apps Remote Debugging Role"
},
"Azure Spring Cloud Config Server Contributor": {
"Id": "a06f5c24-21a7-4e1a-aa2b-f19eb6684f5b",
"Description": "Allow read, write and delete access to Azure Spring Cloud Config Server"
},
"Azure Spring Cloud Config Server Reader": {
"Id": "d04c6db6-4947-4782-9e91-30a88feb7be7",
"Description": "Allow read access to Azure Spring Cloud Config Server"
},
"Azure Spring Cloud Data Reader": {
"Id": "b5537268-8956-4941-a8f0-646150406f0c",
"Description": "Allow read access to Azure Spring Cloud Data"
},
"Azure Spring Cloud Service Registry Contributor": {
"Id": "f5880b48-c26d-48be-b172-7927bfa1c8f1",
"Description": "Allow read, write and delete access to Azure Spring Cloud Service Registry"
},
"Azure Spring Cloud Service Registry Reader": {
"Id": "cff1b556-2399-4e7e-856d-a8f754be7b65",
"Description": "Allow read access to Azure Spring Cloud Service Registry"
},
"Azure Stack HCI registration role": {
"Id": "bda0d508-adf1-4af0-9c28-88919fc3ae06",
"Description": "Custom Azure role to allow subscription-level access to register Azure Stack HCI"
},
"Azure Stack Registration Owner": {
"Id": "6f12a6df-dd06-4f3e-bcb1-ce8be600526a",
"Description": "Lets you manage Azure Stack registrations."
},
"Azure Traffic Controller Configuration Manager": {
"Id": "fbc52c3f-28ad-4303-a892-8a056630b8f1",
"Description": "Allows access to traffic controller resource. Also allows all confiuration Updates on traffic controller"
},
"Azure Usage Billing Data Sender": {
"Id": "f0310ce6-e953-4cf8-b892-fb1c87eaf7f6",
"Description": "Azure Usage Billing shared BuiltIn role to be used for all Customer Account Authentication"
},
"Azure VM Managed identities restore Contributor": {
"Id": "6ae96244-5829-4925-a7d3-5975537d91dd",
"Description": "Azure VM Managed identities restore Contributors are allowed to perform Azure VM Restores with managed identities both user and system"
},
"AzureML Compute Operator": {
"Id": "e503ece1-11d0-4e8e-8e2c-7a6c3bf38815",
"Description": "Can access and perform CRUD operations on Machine Learning Services managed compute resources (including Notebook VMs)."
},
"AzureML Data Scientist": {
"Id": "f6c7c914-8db3-469d-8ca1-694a8f32e121",
"Description": "Can perform all actions within an Azure Machine Learning workspace, except for creating or deleting compute resources and modifying the workspace itself."
},
"AzureML Metrics Writer (preview)": {
"Id": "635dd51f-9968-44d3-b7fb-6d9a6bd613ae",
"Description": "Lets you write metrics to AzureML workspace"
},
"AzureML Registry User": {
"Id": "1823dd4f-9b8c-4ab6-ab4e-7397a3684615",
"Description": "Can perform all actions on Machine Learning Services Registry assets as well as get Registry resources."
},
"Backup Contributor": {
"Id": "5e467623-bb1f-42f4-a55d-6e525e11384b",
"Description": "Lets you manage backup service,but can't create vaults and give access to others"
},
"Backup Operator": {
"Id": "00c29273-979b-4161-815c-10b084fb9324",
"Description": "Lets you manage backup services, except removal of backup, vault creation and giving access to others"
},
"Backup Reader": {
"Id": "a795c7a0-d4a2-40c1-ae25-d81f01202912",
"Description": "Can view backup services, but can't make changes"
},
"Bayer Ag Powered Services CWUM Solution User Role": {
"Id": "a9b99099-ead7-47db-8fcf-072597a61dfa",
"Description": "Provide access to CWUM Solution by Bayer Ag Powered Services"
},
"Bayer Ag Powered Services GDU Solution": {
"Id": "c4bc862a-3b64-4a35-a021-a380c159b042",
"Description": "Provide access to GDU Solution by Bayer Ag Powered Services"
},
"Bayer Ag Powered Services Imagery Solution": {
"Id": "ef29765d-0d37-4119-a4f8-f9f9902c9588",
"Description": "Provide access to Imagery Solution by Bayer Ag Powered Services"
},
"Billing Reader": {
"Id": "fa23ad8b-c56e-40d8-ac0c-ce449e1d2c64",
"Description": "Allows read access to billing data"
},
"BizTalk Contributor": {
"Id": "5e3c6656-6cfa-4708-81fe-0de47ac73342",
"Description": "Lets you manage BizTalk services, but not access to them."
},
"Blockchain Member Node Access (Preview)": {
"Id": "31a002a1-acaf-453e-8a5b-297c9ca1ea24",
"Description": "Allows for access to Blockchain Member nodes"
},
"Blueprint Contributor": {
"Id": "41077137-e803-4205-871c-5a86e6a753b4",
"Description": "Can manage blueprint definitions, but not assign them."
},
"Blueprint Operator": {
"Id": "437d2ced-4a38-4302-8479-ed2bcb43d090",
"Description": "Can assign existing published blueprints, but cannot create new blueprints. NOTE: this only works if the assignment is done with a user-assigned managed identity."
},
"CDN Endpoint Contributor": {
"Id": "426e0c7f-0c7e-4658-b36f-ff54d6c29b45",
"Description": "Can manage CDN endpoints, but can’t grant access to other users."
},
"CDN Endpoint Reader": {
"Id": "871e35f6-b5c1-49cc-a043-bde969a0f2cd",
"Description": "Can view CDN endpoints, but can’t make changes."
},
"CDN Profile Contributor": {
"Id": "ec156ff8-a8d1-4d15-830c-5b80698ca432",
"Description": "Can manage CDN profiles and their endpoints, but can’t grant access to other users."
},
"CDN Profile Reader": {
"Id": "8f96442b-4075-438f-813d-ad51ab4019af",
"Description": "Can view CDN profiles and their endpoints, but can’t make changes."
},
"Chamber Admin": {
"Id": "4e9b8407-af2e-495b-ae54-bb60a55b1b5a",
"Description": "Lets you manage everything under your Modeling and Simulation Workbench chamber."
},
"Chamber User": {
"Id": "4447db05-44ed-4da3-ae60-6cbece780e32",
"Description": "Lets you view everything under your Modeling and Simulation Workbench chamber, but not make any changes."
},
"Classic Network Contributor": {
"Id": "b34d265f-36f7-4a0d-a4d4-e158ca92e90f",
"Description": "Lets you manage classic networks, but not access to them."
},
"Classic Storage Account Contributor": {
"Id": "86e8f5dc-a6e9-4c67-9d15-de283e8eac25",
"Description": "Lets you manage classic storage accounts, but not access to them."
},
"Classic Storage Account Key Operator Service Role": {
"Id": "985d6b00-f706-48f5-a6fe-d0ca12fb668d",
"Description": "Classic Storage Account Key Operators are allowed to list and regenerate keys on Classic Storage Accounts"
},
"Classic Virtual Machine Contributor": {
"Id": "d73bb868-a0df-4d4d-bd69-98a00b01fccb",
"Description": "Lets you manage classic virtual machines, but not access to them, and not the virtual network or storage account they’re connected to."
},
"ClearDB MySQL DB Contributor": {
"Id": "9106cda0-8a86-4e81-b686-29a22c54effe",
"Description": "Lets you manage ClearDB MySQL databases, but not access to them."
},
"Code Signing Certificate Profile Signer": {
"Id": "2837e146-70d7-4cfd-ad55-7efa6464f958",
"Description": "Sign files with a certificate profile. This role is in preview and subject to change."
},
"Code Signing Identity Verifier": {
"Id": "4339b7cf-9826-4e41-b4ed-c7f4505dac08",
"Description": "Manage identity or business verification requests. This role is in preview and subject to change."
},
"Cognitive Services Contributor": {
"Id": "25fbc0a9-bd7c-42a3-aa1a-3b75d497ee68",
"Description": "Lets you create, read, update, delete and manage keys of Cognitive Services."
},
"Cognitive Services Custom Vision Contributor": {
"Id": "c1ff6cc2-c111-46fe-8896-e0ef812ad9f3",
"Description": "Full access to the project, including the ability to view, create, edit, or delete projects."
},
"Cognitive Services Custom Vision Deployment": {
"Id": "5c4089e1-6d96-4d2f-b296-c1bc7137275f",
"Description": "Publish, unpublish or export models. Deployment can view the project but can’t update."
},
"Cognitive Services Custom Vision Labeler": {
"Id": "88424f51-ebe7-446f-bc41-7fa16989e96c",
"Description": "View, edit training images and create, add, remove, or delete the image tags. Labelers can view the project but can’t update anything other than training images and tags."
},
"Cognitive Services Custom Vision Reader": {
"Id": "93586559-c37d-4a6b-ba08-b9f0940c2d73",
"Description": "Read-only actions in the project. Readers can’t create or update the project."
},
"Cognitive Services Custom Vision Trainer": {
"Id": "0a5ae4ab-0d65-4eeb-be61-29fc9b54394b",
"Description": "View, edit projects and train the models, including the ability to publish, unpublish, export the models. Trainers can’t create or delete the project."
},
"Cognitive Services Data Reader (Preview)": {
"Id": "b59867f0-fa02-499b-be73-45a86b5b3e1c",
"Description": "Lets you read Cognitive Services data."
},
"Cognitive Services Face Recognizer": {
"Id": "9894cab4-e18a-44aa-828b-cb588cd6f2d7",
"Description": "Lets you perform detect, verify, identify, group, and find similar operations on Face API. This role does not allow create or delete operations, which makes it well suited for endpoints that only need inferencing capabilities, following 'least privilege' best practices."
},
"Cognitive Services Immersive Reader User": {
"Id": "b2de6794-95db-4659-8781-7e080d3f2b9d",
"Description": "Provides access to create Immersive Reader sessions and call APIs"
},
"Cognitive Services Language Owner": {
"Id": "f07febfe-79bc-46b1-8b37-790e26e6e498",
"Description": "Has access to all Read, Test, Write, Deploy and Delete functions under Language portal"
},
"Cognitive Services Language Reader": {
"Id": "7628b7b8-a8b2-4cdc-b46f-e9b35248918e",
"Description": "Has access to Read and Test functions under Language portal"
},
"Cognitive Services Language Writer": {
"Id": "f2310ca1-dc64-4889-bb49-c8e0fa3d47a8",
"Description": " Has access to all Read, Test, and Write functions under Language Portal"
},
"Cognitive Services LUIS Owner": {
"Id": "f72c8140-2111-481c-87ff-72b910f6e3f8",
"Description": " Has access to all Read, Test, Write, Deploy and Delete functions under LUIS"
},
"Cognitive Services LUIS Reader": {
"Id": "18e81cdc-4e98-4e29-a639-e7d10c5a6226",
"Description": "Has access to Read and Test functions under LUIS."
},
"Cognitive Services LUIS Writer": {
"Id": "6322a993-d5c9-4bed-b113-e49bbea25b27",
"Description": "Has access to all Read, Test, and Write functions under LUIS"
},
"Cognitive Services Metrics Advisor Administrator": {
"Id": "cb43c632-a144-4ec5-977c-e80c4affc34a",
"Description": "Full access to the project, including the system level configuration."
},
"Cognitive Services Metrics Advisor User": {
"Id": "3b20f47b-3825-43cb-8114-4bd2201156a8",
"Description": "Access to the project."
},
"Cognitive Services OpenAI Contributor": {
"Id": "a001fd3d-188f-4b5d-821b-7da978bf7442",
"Description": "Full access including the ability to fine-tune, deploy and generate text"
},
"Cognitive Services OpenAI User": {
"Id": "5e0bd9bd-7b93-4f28-af87-19fc36ad61bd",
"Description": "Ability to view files, models, deployments. Readers can't make any changes They can inference"
},
"Cognitive Services QnA Maker Editor": {
"Id": "f4cc2bf9-21be-47a1-bdf1-5c5804381025",
"Description": "Let’s you create, edit, import and export a KB. You cannot publish or delete a KB."
},
"Cognitive Services QnA Maker Reader": {
"Id": "466ccd10-b268-4a11-b098-b4849f024126",
"Description": "Let’s you read and test a KB only."
},
"Cognitive Services Speech Contributor": {
"Id": "0e75ca1e-0464-4b4d-8b93-68208a576181",
"Description": "Full access to Speech projects, including read, write and delete all entities, for real-time speech recognition and batch transcription tasks, real-time speech synthesis and long audio tasks, custom speech and custom voice."
},
"Cognitive Services Speech User": {
"Id": "f2dc8367-1007-4938-bd23-fe263f013447",
"Description": "Access to the real-time speech recognition and batch transcription APIs, real-time speech synthesis and long audio APIs, as well as to read the data/test/model/endpoint for custom models, but can’t create, delete or modify the data/test/model/endpoint for custom models."
},
"Cognitive Services User": {
"Id": "a97b65f3-24c7-4388-baec-2e87135dc908",
"Description": "Lets you read and list keys of Cognitive Services."
},
"Collaborative Data Contributor": {
"Id": "daa9e50b-21df-454c-94a6-a8050adab352",
"Description": "Can manage data packages of a collaborative."
},
"Collaborative Runtime Operator": {
"Id": "7a6f0e70-c033-4fb1-828c-08514e5f4102",
"Description": "Can manage resources created by AICS at runtime"
},
"Compute Gallery Sharing Admin": {
"Id": "1ef6a3be-d0ac-425d-8c01-acb62866290b",
"Description": "This role allows user to share gallery to another subscription/tenant or share it to the public."
},
"ContainerApp Reader": {
"Id": "ad2dd5fb-cd4b-4fd4-a9b6-4fed3630980b",
"Description": "View all containerapp resources, but does not allow you to make any changes."
},
"Contributor": {
"Id": "b24988ac-6180-42a0-ab88-20f7382dd24c",
"Description": "Grants full access to manage all resources, but does not allow you to assign roles in Azure RBAC, manage assignments in Azure Blueprints, or share image galleries."
},
"Cosmos DB Account Reader Role": {
"Id": "fbdf93bf-df7d-467e-a4d2-9458aa1360c8",
"Description": "Can read Azure Cosmos DB Accounts data"
},
"Cosmos DB Operator": {
"Id": "230815da-be43-4aae-9cb4-875f7bd000aa",
"Description": "Lets you manage Azure Cosmos DB accounts, but not access data in them. Prevents access to account keys and connection strings."
},
"CosmosBackupOperator": {
"Id": "db7b14f2-5adf-42da-9f96-f2ee17bab5cb",
"Description": "Can submit restore request for a Cosmos DB database or a container for an account"
},
"CosmosRestoreOperator": {
"Id": "5432c526-bc82-444a-b7ba-57c5b0b5b34f",
"Description": "Can perform restore action for Cosmos DB database account with continuous backup mode"
},
"Cost Management Contributor": {
"Id": "434105ed-43f6-45c7-a02f-909b2ba83430",
"Description": "Can view costs and manage cost configuration (e.g. budgets, exports)"
},
"Cost Management Reader": {
"Id": "72fafb9e-0641-4937-9268-a91bfd8191a3",
"Description": "Can view cost data and configuration (e.g. budgets, exports)"
},
"Data Box Contributor": {
"Id": "add466c9-e687-43fc-8d98-dfcf8d720be5",
"Description": "Lets you manage everything under Data Box Service except giving access to others."
},
"Data Box Reader": {
"Id": "028f4ed7-e2a9-465e-a8f4-9c0ffdfdc027",
"Description": "Lets you manage Data Box Service except creating order or editing order details and giving access to others."
},
"Data Factory Contributor": {
"Id": "673868aa-7521-48a0-acc6-0f60742d39f5",
"Description": "Create and manage data factories, as well as child resources within them."
},
"Data Labeling - Labeler": {
"Id": "c6decf44-fd0a-444c-a844-d653c394e7ab",
"Description": "Can label data in Labeling."
},
"Data Lake Analytics Developer": {
"Id": "47b7735b-770e-4598-a7da-8b91488b4c88",
"Description": "Lets you submit, monitor, and manage your own jobs but not create or delete Data Lake Analytics accounts."
},
"Data Operator for Managed Disks": {
"Id": "959f8984-c045-4866-89c7-12bf9737be2e",
"Description": "Provides permissions to upload data to empty managed disks, read, or export data of managed disks (not attached to running VMs) and snapshots using SAS URIs and Azure AD authentication."
},
"Data Purger": {
"Id": "150f5e0c-0603-4f03-8c7f-cf70034c4e90",
"Description": "Can purge analytics data"
},
"Deployment Environments User": {
"Id": "18e40d4e-8d2e-438d-97e1-9528336e149c",
"Description": "Provides access to manage environment resources."
},
"Desktop Virtualization Application Group Contributor": {
"Id": "86240b0e-9422-4c43-887b-b61143f32ba8",
"Description": "Contributor of the Desktop Virtualization Application Group."
},
"Desktop Virtualization Application Group Reader": {
"Id": "aebf23d0-b568-4e86-b8f9-fe83a2c6ab55",
"Description": "Reader of the Desktop Virtualization Application Group."
},
"Desktop Virtualization Contributor": {
"Id": "082f0a83-3be5-4ba1-904c-961cca79b387",
"Description": "Contributor of Desktop Virtualization."
},
"Desktop Virtualization Host Pool Contributor": {
"Id": "e307426c-f9b6-4e81-87de-d99efb3c32bc",
"Description": "Contributor of the Desktop Virtualization Host Pool."
},
"Desktop Virtualization Host Pool Reader": {
"Id": "ceadfde2-b300-400a-ab7b-6143895aa822",
"Description": "Reader of the Desktop Virtualization Host Pool."
},
"Desktop Virtualization Power On Contributor": {
"Id": "489581de-a3bd-480d-9518-53dea7416b33",
"Description": "This role is in preview and subject to change. Provide permission to the Azure Virtual Desktop Resource Provider to start virtual machines."
},
"Desktop Virtualization Power On Off Contributor": {
"Id": "40c5ff49-9181-41f8-ae61-143b0e78555e",
"Description": "This role is in preview and subject to change. Provide permission to the Azure Virtual Desktop Resource Provider to start and stop virtual machines."
},
"Desktop Virtualization Reader": {
"Id": "49a72310-ab8d-41df-bbb0-79b649203868",
"Description": "Reader of Desktop Virtualization."
},
"Desktop Virtualization Session Host Operator": {
"Id": "2ad6aaab-ead9-4eaa-8ac5-da422f562408",
"Description": "Operator of the Desktop Virtualization Session Host."
},
"Desktop Virtualization User": {
"Id": "1d18fff3-a72a-46b5-b4a9-0b38a3cd7e63",
"Description": "Allows user to use the applications in an application group."
},
"Desktop Virtualization User Session Operator": {
"Id": "ea4bfff8-7fb4-485a-aadd-d4129a0ffaa6",
"Description": "Operator of the Desktop Virtualization Uesr Session."
},
"Desktop Virtualization Virtual Machine Contributor": {
"Id": "a959dbd1-f747-45e3-8ba6-dd80f235f97c",
"Description": "This role is in preview and subject to change. Provide permission to the Azure Virtual Desktop Resource Provider to create, delete, update, start, and stop virtual machines."
},
"Desktop Virtualization Workspace Contributor": {
"Id": "21efdde3-836f-432b-bf3d-3e8e734d4b2b",
"Description": "Contributor of the Desktop Virtualization Workspace."
},
"Desktop Virtualization Workspace Reader": {
"Id": "0fa44ee9-7a7d-466b-9bb2-2bf446b1204d",
"Description": "Reader of the Desktop Virtualization Workspace."
},
"DevCenter Dev Box User": {
"Id": "45d50f46-0b78-4001-a660-4198cbe8cd05",
"Description": "Provides access to create and manage dev boxes."
},
"DevCenter Project Admin": {
"Id": "331c37c6-af14-46d9-b9f4-e1909e1b95a0",
"Description": "Provides access to manage project resources."
},
"Device Provisioning Service Data Contributor": {
"Id": "dfce44e4-17b7-4bd1-a6d1-04996ec95633",
"Description": "Allows for full access to Device Provisioning Service data-plane operations."
},
"Device Provisioning Service Data Reader": {
"Id": "10745317-c249-44a1-a5ce-3a4353c0bbd8",
"Description": "Allows for full read access to Device Provisioning Service data-plane properties."
},
"Device Update Administrator": {
"Id": "02ca0879-e8e4-47a5-a61e-5c618b76e64a",
"Description": "Gives you full access to management and content operations"
},
"Device Update Content Administrator": {
"Id": "0378884a-3af5-44ab-8323-f5b22f9f3c98",
"Description": "Gives you full access to content operations"
},
"Device Update Content Reader": {
"Id": "d1ee9a80-8b14-47f0-bdc2-f4a351625a7b",
"Description": "Gives you read access to content operations, but does not allow making changes"
},
"Device Update Deployments Administrator": {
"Id": "e4237640-0e3d-4a46-8fda-70bc94856432",
"Description": "Gives you full access to management operations"
},
"Device Update Deployments Reader": {
"Id": "49e2f5d2-7741-4835-8efa-19e1fe35e47f",
"Description": "Gives you read access to management operations, but does not allow making changes"
},
"Device Update Reader": {
"Id": "e9dba6fb-3d52-4cf0-bce3-f06ce71b9e0f",
"Description": "Gives you read access to management and content operations, but does not allow making changes"
},
"DevTest Labs User": {
"Id": "76283e04-6283-4c54-8f91-bcf1374a3c64",
"Description": "Lets you connect, start, restart, and shutdown your virtual machines in your Azure DevTest Labs."
},
"DICOM Data Owner": {
"Id": "58a3b984-7adf-4c20-983a-32417c86fbc8",
"Description": "Full access to DICOM data."
},
"DICOM Data Reader": {
"Id": "e89c7a3c-2f64-4fa1-a847-3e4c9ba4283a",
"Description": "Read and search DICOM data."
},
"Disk Backup Reader": {
"Id": "3e5e47e6-65f7-47ef-90b5-e5dd4d455f24",
"Description": "Provides permission to backup vault to perform disk backup."
},
"Disk Pool Operator": {
"Id": "60fc6e62-5479-42d4-8bf4-67625fcc2840",
"Description": "Used by the StoragePool Resource Provider to manage Disks added to a Disk Pool."
},
"Disk Restore Operator": {
"Id": "b50d9833-a0cb-478e-945f-707fcc997c13",
"Description": "Provides permission to backup vault to perform disk restore."
},
"Disk Snapshot Contributor": {
"Id": "7efff54f-a5b4-42b5-a1c5-5411624893ce",
"Description": "Provides permission to backup vault to manage disk snapshots."
},
"DNS Resolver Contributor": {
"Id": "0f2ebee7-ffd4-4fc0-b3b7-664099fdad5d",
"Description": "Lets you manage DNS resolver resources."
},
"DNS Zone Contributor": {
"Id": "befefa01-2a29-4197-83a8-272ff33ce314",
"Description": "Lets you manage DNS zones and record sets in Azure DNS, but does not let you control who has access to them."
},
"DocumentDB Account Contributor": {
"Id": "5bd9cd88-fe45-4216-938b-f97437e15450",
"Description": "Lets you manage DocumentDB accounts, but not access to them."
},
"Domain Services Contributor": {
"Id": "eeaeda52-9324-47f6-8069-5d5bade478b2",
"Description": "Can manage Azure AD Domain Services and related network configurations"
},
"Domain Services Reader": {
"Id": "361898ef-9ed1-48c2-849c-a832951106bb",
"Description": "Can view Azure AD Domain Services and related network configurations"
},
"Elastic SAN Owner": {
"Id": "80dcbedb-47ef-405d-95bd-188a1b4ac406",
"Description": "Allows for full access to all resources under Azure Elastic SAN including changing network security policies to unblock data path access"
},
"Elastic SAN Reader": {
"Id": "af6a70f8-3c9f-4105-acf1-d719e9fca4ca",
"Description": "Allows for control path read access to Azure Elastic SAN"
},
"Elastic SAN Volume Group Owner": {
"Id": "a8281131-f312-4f34-8d98-ae12be9f0d23",
"Description": "Allows for full access to a volume group in Azure Elastic SAN including changing network security policies to unblock data path access"
},
"EventGrid Contributor": {
"Id": "1e241071-0855-49ea-94dc-649edcd759de",
"Description": "Lets you manage EventGrid operations."
},
"EventGrid Data Sender": {
"Id": "d5a91429-5739-47e2-a06b-3470a27159e7",
"Description": "Allows send access to event grid events."
},
"EventGrid EventSubscription Contributor": {
"Id": "428e0ff0-5e57-4d9c-a221-2c70d0e0a443",
"Description": "Lets you manage EventGrid event subscription operations."
},
"EventGrid EventSubscription Reader": {
"Id": "2414bbcf-6497-4faf-8c65-045460748405",
"Description": "Lets you read EventGrid event subscriptions."
},
"Experimentation Administrator": {
"Id": "7f646f1b-fa08-80eb-a33b-edd6ce5c915c",
"Description": "Experimentation Administrator"
},
"Experimentation Contributor": {
"Id": "7f646f1b-fa08-80eb-a22b-edd6ce5c915c",
"Description": "Experimentation Contributor"
},
"Experimentation Metric Contributor": {
"Id": "6188b7c9-7d01-4f99-a59f-c88b630326c0",
"Description": "Allows for creation, writes and reads to the metric set via the metrics service APIs."
},
"Experimentation Reader": {
"Id": "49632ef5-d9ac-41f4-b8e7-bbe587fa74a1",
"Description": "Experimentation Reader"
},
"FHIR Data Contributor": {
"Id": "5a1fc7df-4bf1-4951-a576-89034ee01acd",
"Description": "Role allows user or principal full access to FHIR Data"
},
"FHIR Data Converter": {
"Id": "a1705bd2-3a8f-45a5-8683-466fcfd5cc24",
"Description": "Role allows user or principal to convert data from legacy format to FHIR"
},
"FHIR Data Exporter": {
"Id": "3db33094-8700-4567-8da5-1501d4e7e843",
"Description": "Role allows user or principal to read and export FHIR Data"
},
"FHIR Data Importer": {
"Id": "4465e953-8ced-4406-a58e-0f6e3f3b530b",
"Description": "Role allows user or principal to read and import FHIR Data"
},
"FHIR Data Reader": {
"Id": "4c8d0bbc-75d3-4935-991f-5f3c56d81508",
"Description": "Role allows user or principal to read FHIR Data"
},
"FHIR Data Writer": {
"Id": "3f88fce4-5892-4214-ae73-ba5294559913",
"Description": "Role allows user or principal to read and write FHIR Data"
},
"FHIR SMART User": {
"Id": "4ba50f17-9666-485c-a643-ff00808643f0",
"Description": "Role allows user to access FHIR Service according to SMART on FHIR specification"
},
"Grafana Admin": {
"Id": "22926164-76b3-42b3-bc55-97df8dab3e41",
"Description": "Built-in Grafana admin role"
},
"Grafana Editor": {
"Id": "a79a5197-3a5c-4973-a920-486035ffd60f",
"Description": "Built-in Grafana Editor role"
},
"Grafana Viewer": {
"Id": "60921a7e-fef1-4a43-9b16-a26c52ad4769",
"Description": "Built-in Grafana Viewer role"
},
"Graph Owner": {
"Id": "b60367af-1334-4454-b71e-769d9a4f83d9",
"Description": "Create and manage all aspects of the Enterprise Graph - Ontology, Schema mapping, Conflation and Conversational AI and Ingestions"
},
"Guest Configuration Resource Contributor": {
"Id": "088ab73d-1256-47ae-bea9-9de8e7131f31",
"Description": "Lets you read, write Guest Configuration Resource."
},
"HDInsight Cluster Operator": {
"Id": "61ed4efc-fab3-44fd-b111-e24485cc132a",
"Description": "Lets you read and modify HDInsight cluster configurations."
},
"HDInsight Domain Services Contributor": {
"Id": "8d8d5a11-05d3-4bda-a417-a08778121c7c",
"Description": "Can Read, Create, Modify and Delete Domain Services related operations needed for HDInsight Enterprise Security Package"
},
"Hierarchy Settings Administrator": {
"Id": "350f8d15-c687-4448-8ae1-157740a3936d",
"Description": "Allows users to edit and delete Hierarchy Settings"
},
"Hybrid Server Onboarding": {
"Id": "5d1e5ee4-7c68-4a71-ac8b-0739630a3dfb",
"Description": "Can onboard new Hybrid servers to the Hybrid Resource Provider."
},
"Hybrid Server Resource Administrator": {
"Id": "48b40c6e-82e0-4eb3-90d5-19e40f49b624",
"Description": "Can read, write, delete, and re-onboard Hybrid servers to the Hybrid Resource Provider."
},
"Impact Reader": {
"Id": "68ff5d27-c7f5-4fa9-a21c-785d0df7bd9e",
"Description": "Allows read-only access to reported impacts and impact categories"
},
"Impact Reporter": {
"Id": "36e80216-a7e8-4f42-a7e1-f12c98cbaf8a",
"Description": "Allows access to create/report, read and delete impacts"
},
"Integration Service Environment Contributor": {
"Id": "a41e2c5b-bd99-4a07-88f4-9bf657a760b8",
"Description": "Lets you manage integration service environments, but not access to them."
},
"Integration Service Environment Developer": {
"Id": "c7aa55d3-1abb-444a-a5ca-5e51e485d6ec",
"Description": "Allows developers to create and update workflows, integration accounts and API connections in integration service environments."
},
"Intelligent Systems Account Contributor": {
"Id": "03a6d094-3444-4b3d-88af-7477090a9e5e",
"Description": "Lets you manage Intelligent Systems accounts, but not access to them."
},
"IoT Hub Data Contributor": {
"Id": "4fc6c259-987e-4a07-842e-c321cc9d413f",
"Description": "Allows for full access to IoT Hub data plane operations."
},
"IoT Hub Data Reader": {
"Id": "b447c946-2db7-41ec-983d-d8bf3b1c77e3",
"Description": "Allows for full read access to IoT Hub data-plane properties"
},
"IoT Hub Registry Contributor": {
"Id": "4ea46cd5-c1b2-4a8e-910b-273211f9ce47",
"Description": "Allows for full access to IoT Hub device registry."
},
"IoT Hub Twin Contributor": {
"Id": "494bdba2-168f-4f31-a0a1-191d2f7c028c",
"Description": "Allows for read and write access to all IoT Hub device and module twins."
},
"Key Vault Administrator": {
"Id": "00482a5a-887f-4fb3-b363-3b7fe8e74483",
"Description": "Perform all data plane operations on a key vault and all objects in it, including certificates, keys, and secrets. Cannot manage key vault resources or manage role assignments. Only works for key vaults that use the 'Azure role-based access control' permission model."
},
"Key Vault Certificates Officer": {
"Id": "a4417e6f-fecd-4de8-b567-7b0420556985",
"Description": "Perform any action on the certificates of a key vault, except manage permissions. Only works for key vaults that use the 'Azure role-based access control' permission model."
},
"Key Vault Contributor": {
"Id": "f25e0fa2-a7c8-4377-a976-54943a77a395",
"Description": "Lets you manage key vaults, but not access to them."
},
"Key Vault Crypto Officer": {
"Id": "14b46e9e-c2b7-41b4-b07b-48a6ebf60603",
"Description": "Perform any action on the keys of a key vault, except manage permissions. Only works for key vaults that use the 'Azure role-based access control' permission model."
},
"Key Vault Crypto Service Encryption User": {
"Id": "e147488a-f6f5-4113-8e2d-b22465e65bf6",
"Description": "Read metadata of keys and perform wrap/unwrap operations. Only works for key vaults that use the 'Azure role-based access control' permission model."
},
"Key Vault Crypto User": {
"Id": "12338af0-0e69-4776-bea7-57ae8d297424",