-
Notifications
You must be signed in to change notification settings - Fork 5.1k
/
createOrUpdateAssociation.json
38 lines (38 loc) · 1.32 KB
/
createOrUpdateAssociation.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
{
"parameters": {
"scope": "scope",
"associationName": "associationName",
"api-version": "2018-09-01-preview",
"association": {
"properties": {
"targetResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/appRG/providers/Microsoft.Solutions/applications/applicationName"
}
}
},
"responses": {
"201": {
"headers": {},
"body": {
"name": "associationName",
"id": "/scope/providers/Microsoft.CustomProviders/associations/associationName",
"type": "Microsoft.CustomProviders/associations",
"properties": {
"targetResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/appRG/providers/Microsoft.Solutions/applications/applicationName",
"provisioningState": "Accepted"
}
}
},
"200": {
"headers": {},
"body": {
"name": "associationName",
"id": "/scope/providers/Microsoft.CustomProviders/associations/associationName",
"type": "Microsoft.CustomProviders/associations",
"properties": {
"targetResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/appRG/providers/Microsoft.Solutions/applications/applicationName",
"provisioningState": "Succeeded"
}
}
}
}
}