Skip to content

Commit 12720fc

Browse files
committed
Added Azure Load Testing builtin roles
1 parent 2924806 commit 12720fc

File tree

1 file changed

+147
-0
lines changed

1 file changed

+147
-0
lines changed

articles/role-based-access-control/built-in-roles.md

Lines changed: 147 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -297,6 +297,9 @@ The following table provides a brief description of each built-in role. Click th
297297
> | [Azure Digital Twins Data Owner](#azure-digital-twins-data-owner) | Full access role for Digital Twins data-plane | bcd981a7-7f74-457b-83e1-cceb9e632ffe |
298298
> | [Azure Digital Twins Data Reader](#azure-digital-twins-data-reader) | Read-only role for Digital Twins data-plane properties | d57506d4-4c8d-48b1-8587-93c323f6a5a3 |
299299
> | [BizTalk Contributor](#biztalk-contributor) | Lets you manage BizTalk services, but not access to them. | 5e3c6656-6cfa-4708-81fe-0de47ac73342 |
300+
> | [Load Test Contributor](#load-test-contributor) | View, create, update, delete and execute load tests. View and list load test resources but can not make any changes. | 749a398d-560b-491b-bb21-08924219302e |
301+
> | [Load Test Owner](#load-test-owner) | Execute all operations on load test resources and load tests. | 45bb0b16-2f0c-4e78-afaa-a07599b003f6 |
302+
> | [Load Test Reader](#load-test-reader) | View and list all load tests and load test resources but can not make any changes. | 3ae3fb29-0000-4ccd-bf80-542e7b26e081 |
300303
> | [Scheduler Job Collections Contributor](#scheduler-job-collections-contributor) | Lets you manage Scheduler job collections, but not access to them. | 188a0f2f-5c9e-469b-ae67-2aa5ce574b94 |
301304
> | [Services Hub Operator](#services-hub-operator) | Services Hub Operator allows you to perform all read, write, and deletion operations related to Services Hub Connectors. | 82200a5b-e217-47a5-b665-6d8765ee745b |
302305

@@ -14917,6 +14920,150 @@ Lets you manage BizTalk services, but not access to them.
1491714920
}
1491814921
```
1491914922

14923+
### Load Test Contributor
14924+
14925+
View, create, update, delete and execute load tests. View and list load test resources but can not make any changes.
14926+
14927+
> [!div class="mx-tableFixed"]
14928+
> | Actions | Description |
14929+
> | --- | --- |
14930+
> | [Microsoft.Authorization](resource-provider-operations.md#microsoftauthorization)/*/read | Read roles and role assignments |
14931+
> | [Microsoft.Insights](resource-provider-operations.md#microsoftinsights)/alertRules/* | Create and manage a classic metric alert |
14932+
> | [Microsoft.Resources](resource-provider-operations.md#microsoftresources)/deployments/* | Create and manage a deployment |
14933+
> | [Microsoft.Resources](resource-provider-operations.md#microsoftresources)/subscriptions/resourceGroups/read | Gets or lists resource groups. |
14934+
> | Microsoft.LoadTestService/*/read | Read load testing resources |
14935+
> | **NotActions** | |
14936+
> | *none* | |
14937+
> | **DataActions** | |
14938+
> | Microsoft.LoadTestService/loadtests/* | Create and manage load tests |
14939+
> | **NotDataActions** | |
14940+
> | *none* | |
14941+
14942+
```json
14943+
{
14944+
"id": "/providers/Microsoft.Authorization/roleDefinitions/749a398d-560b-491b-bb21-08924219302e",
14945+
"properties": {
14946+
"roleName": "Load Test Contributor",
14947+
"description": "View, create, update, delete and execute load tests. View and list load test resources but can not make any changes.",
14948+
"assignableScopes": [
14949+
"/"
14950+
],
14951+
"permissions": [
14952+
{
14953+
"actions": [
14954+
"Microsoft.LoadTestService/*/read",
14955+
"Microsoft.Authorization/*/read",
14956+
"Microsoft.Resources/deployments/*",
14957+
"Microsoft.Resources/subscriptions/resourceGroups/read",
14958+
"Microsoft.Insights/alertRules/*"
14959+
],
14960+
"notActions": [],
14961+
"dataActions": [
14962+
"Microsoft.LoadTestService/loadtests/*"
14963+
],
14964+
"notDataActions": []
14965+
}
14966+
]
14967+
}
14968+
}
14969+
```
14970+
14971+
### Load Test Owner
14972+
14973+
Execute all operations on load test resources and load tests.
14974+
14975+
> [!div class="mx-tableFixed"]
14976+
> | Actions | Description |
14977+
> | --- | --- |
14978+
> | [Microsoft.Authorization](resource-provider-operations.md#microsoftauthorization)/*/read | Read roles and role assignments |
14979+
> | [Microsoft.Insights](resource-provider-operations.md#microsoftinsights)/alertRules/* | Create and manage a classic metric alert |
14980+
> | [Microsoft.Resources](resource-provider-operations.md#microsoftresources)/deployments/* | Create and manage a deployment |
14981+
> | [Microsoft.Resources](resource-provider-operations.md#microsoftresources)/subscriptions/resourceGroups/read | Gets or lists resource groups. |
14982+
> | Microsoft.LoadTestService/* | Create and manage load testing resources |
14983+
> | **NotActions** | |
14984+
> | *none* | |
14985+
> | **DataActions** | |
14986+
> | Microsoft.LoadTestService/loadtests/* | Create and manage load tests |
14987+
> | **NotDataActions** | |
14988+
> | *none* | |
14989+
14990+
```json
14991+
{
14992+
"id": "/providers/Microsoft.Authorization/roleDefinitions/45bb0b16-2f0c-4e78-afaa-a07599b003f6",
14993+
"properties": {
14994+
"roleName": "Load Test Owner",
14995+
"description": "Execute all operations on load test resources and load tests",
14996+
"assignableScopes": [
14997+
"/"
14998+
],
14999+
"permissions": [
15000+
{
15001+
"actions": [
15002+
"Microsoft.LoadTestService/*",
15003+
"Microsoft.Authorization/*/read",
15004+
"Microsoft.Resources/deployments/*",
15005+
"Microsoft.Resources/subscriptions/resourceGroups/read",
15006+
"Microsoft.Insights/alertRules/*"
15007+
],
15008+
"notActions": [],
15009+
"dataActions": [
15010+
"Microsoft.LoadTestService/*"
15011+
],
15012+
"notDataActions": []
15013+
}
15014+
]
15015+
}
15016+
}
15017+
```
15018+
15019+
### Load Test Reader
15020+
15021+
View and list all load tests and load test resources but can not make any changes.
15022+
15023+
> [!div class="mx-tableFixed"]
15024+
> | Actions | Description |
15025+
> | --- | --- |
15026+
> | [Microsoft.Authorization](resource-provider-operations.md#microsoftauthorization)/*/read | Read roles and role assignments |
15027+
> | [Microsoft.Insights](resource-provider-operations.md#microsoftinsights)/alertRules/* | Create and manage a classic metric alert |
15028+
> | [Microsoft.Resources](resource-provider-operations.md#microsoftresources)/deployments/* | Create and manage a deployment |
15029+
> | [Microsoft.Resources](resource-provider-operations.md#microsoftresources)/subscriptions/resourceGroups/read | Gets or lists resource groups. |
15030+
> | Microsoft.LoadTestService/*/Read | Read load testing resources |
15031+
> | **NotActions** | |
15032+
> | *none* | |
15033+
> | **DataActions** | |
15034+
> | Microsoft.LoadTestService/loadtests/readTest/action | Read load tests |
15035+
> | **NotDataActions** | |
15036+
> | *none* | |
15037+
15038+
```json
15039+
{
15040+
"id": "/providers/Microsoft.Authorization/roleDefinitions/3ae3fb29-0000-4ccd-bf80-542e7b26e081",
15041+
"properties": {
15042+
"roleName": "Load Test Reader",
15043+
"description": "View and list all load tests and load test resources but can not make any changes",
15044+
"assignableScopes": [
15045+
"/"
15046+
],
15047+
"permissions": [
15048+
{
15049+
"actions": [
15050+
"Microsoft.LoadTestService/*/read",
15051+
"Microsoft.Authorization/*/read",
15052+
"Microsoft.Resources/deployments/*",
15053+
"Microsoft.Resources/subscriptions/resourceGroups/read",
15054+
"Microsoft.Insights/alertRules/*"
15055+
],
15056+
"notActions": [],
15057+
"dataActions": [
15058+
"Microsoft.LoadTestService/loadtests/readTest/action"
15059+
],
15060+
"notDataActions": []
15061+
}
15062+
]
15063+
}
15064+
}
15065+
```
15066+
1492015067
### Scheduler Job Collections Contributor
1492115068

1492215069
Lets you manage Scheduler job collections, but not access to them.

0 commit comments

Comments
 (0)