Skip to content

Commit 380ebeb

Browse files
x9xuFredericHeem
authored andcommitted
[App Configuration] Promote 2022-05-01 stable version (Azure#18811)
* Add 2022-05-01 folder based on 2021-10-01-preview * Update 2022-05-01 folder * Fix readme issue
1 parent eb1b7ed commit 380ebeb

31 files changed

+3659
-1
lines changed

specification/appconfiguration/resource-manager/Microsoft.AppConfiguration/stable/2022-05-01/appconfiguration.json

Lines changed: 2292 additions & 0 deletions
Large diffs are not rendered by default.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
{
2+
"parameters": {
3+
"subscriptionId": "c80fb759-c965-4c6a-9110-9b2b2d038882",
4+
"api-version": "2022-05-01",
5+
"checkNameAvailabilityParameters": {
6+
"name": "contoso",
7+
"type": "Microsoft.AppConfiguration/configurationStores"
8+
}
9+
},
10+
"responses": {
11+
"200": {
12+
"body": {
13+
"nameAvailable": true,
14+
"message": "The specified name is available.",
15+
"reason": null
16+
}
17+
}
18+
}
19+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
{
2+
"parameters": {
3+
"subscriptionId": "c80fb759-c965-4c6a-9110-9b2b2d038882",
4+
"api-version": "2022-05-01",
5+
"checkNameAvailabilityParameters": {
6+
"name": "contoso",
7+
"type": "Microsoft.AppConfiguration/configurationStores"
8+
}
9+
},
10+
"responses": {
11+
"200": {
12+
"body": {
13+
"nameAvailable": false,
14+
"reason": "AlreadyExists",
15+
"message": "The specified name is already in use."
16+
}
17+
}
18+
}
19+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,93 @@
1+
{
2+
"parameters": {
3+
"subscriptionId": "c80fb759-c965-4c6a-9110-9b2b2d038882",
4+
"resourceGroupName": "myResourceGroup",
5+
"configStoreName": "contoso",
6+
"api-version": "2022-05-01",
7+
"configStoreCreationParameters": {
8+
"location": "westus",
9+
"sku": {
10+
"name": "Standard"
11+
},
12+
"tags": {
13+
"myTag": "myTagValue"
14+
}
15+
}
16+
},
17+
"responses": {
18+
"200": {
19+
"body": {
20+
"type": "Microsoft.AppConfiguration/configurationStores",
21+
"properties": {
22+
"provisioningState": "Succeeded",
23+
"creationDate": "2018-04-24T16:30:55+00:00",
24+
"endpoint": "https://contoso.azconfig.io",
25+
"encryption": {
26+
"keyVaultProperties": {
27+
"keyIdentifier": null,
28+
"identityClientId": null
29+
}
30+
},
31+
"disableLocalAuth": false,
32+
"privateEndpointConnections": [],
33+
"softDeleteRetentionInDays": 30,
34+
"enablePurgeProtection": false
35+
},
36+
"systemData": {
37+
"createdBy": "[email protected]",
38+
"createdByType": "User",
39+
"createdAt": "2018-04-24T16:30:55+00:00",
40+
"lastModifiedBy": "[email protected]",
41+
"lastModifiedByType": "User",
42+
"lastModifiedAt": "2018-04-24T16:30:55+00:00"
43+
},
44+
"sku": {
45+
"name": "Standard"
46+
},
47+
"id": "/subscriptions/c80fb759-c965-4c6a-9110-9b2b2d038882/resourceGroups/myResourceGroup/providers/Microsoft.AppConfiguration/configurationStores/contoso",
48+
"name": "contoso",
49+
"location": "westus",
50+
"tags": {
51+
"myTag": "myTagValue"
52+
}
53+
}
54+
},
55+
"201": {
56+
"body": {
57+
"type": "Microsoft.AppConfiguration/configurationStores",
58+
"properties": {
59+
"provisioningState": "Creating",
60+
"creationDate": "2018-04-24T16:30:55+00:00",
61+
"endpoint": "https://contoso.azconfig.io",
62+
"encryption": {
63+
"keyVaultProperties": {
64+
"keyIdentifier": null,
65+
"identityClientId": null
66+
}
67+
},
68+
"disableLocalAuth": false,
69+
"privateEndpointConnections": [],
70+
"softDeleteRetentionInDays": 30,
71+
"enablePurgeProtection": false
72+
},
73+
"systemData": {
74+
"createdBy": "[email protected]",
75+
"createdByType": "User",
76+
"createdAt": "2018-04-24T16:30:55+00:00",
77+
"lastModifiedBy": "[email protected]",
78+
"lastModifiedByType": "User",
79+
"lastModifiedAt": "2018-04-24T16:30:55+00:00"
80+
},
81+
"sku": {
82+
"name": "Standard"
83+
},
84+
"id": "/subscriptions/c80fb759-c965-4c6a-9110-9b2b2d038882/resourceGroups/myResourceGroup/providers/Microsoft.AppConfiguration/configurationStores/contoso",
85+
"name": "contoso",
86+
"location": "westus",
87+
"tags": {
88+
"myTag": "myTagValue"
89+
}
90+
}
91+
}
92+
}
93+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
{
2+
"parameters": {
3+
"subscriptionId": "c80fb759-c965-4c6a-9110-9b2b2d038882",
4+
"resourceGroupName": "myResourceGroup",
5+
"configStoreName": "contoso",
6+
"api-version": "2022-05-01",
7+
"keyValueName": "myKey$myLabel",
8+
"keyValueParameters": {
9+
"properties": {
10+
"value": "myValue",
11+
"tags": {
12+
"tag1": "tagValue1",
13+
"tag2": "tagValue2"
14+
}
15+
}
16+
}
17+
},
18+
"responses": {
19+
"200": {
20+
"body": {
21+
"type": "Microsoft.AppConfiguration/configurationStores/keyValues",
22+
"properties": {
23+
"key": "myKey",
24+
"label": "myLabel",
25+
"value": "myValue",
26+
"contentType": "",
27+
"eTag": "IhDxoa8VkXxPsYsemBlxvV0d5fp",
28+
"lastModified": "2020-06-23T06:42:24+00:00",
29+
"locked": false,
30+
"tags": {
31+
"tag1": "tagValue1",
32+
"tag2": "tagValue2"
33+
}
34+
},
35+
"id": "/subscriptions/c80fb759-c965-4c6a-9110-9b2b2d038882/resourceGroups/myResourceGroup/providers/Microsoft.AppConfiguration/configurationStores/contoso/keyValues/myKey$myLabel",
36+
"name": "myKey$myLabel"
37+
}
38+
}
39+
}
40+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
{
2+
"parameters": {
3+
"subscriptionId": "c80fb759-c965-4c6a-9110-9b2b2d038882",
4+
"resourceGroupName": "myResourceGroup",
5+
"configStoreName": "contoso",
6+
"privateEndpointConnectionName": "myConnection",
7+
"api-version": "2022-05-01",
8+
"privateEndpointConnection": {
9+
"properties": {
10+
"privateLinkServiceConnectionState": {
11+
"status": "Approved",
12+
"description": "Auto-Approved"
13+
}
14+
}
15+
}
16+
},
17+
"responses": {
18+
"200": {
19+
"body": {
20+
"id": "/subscriptions/c80fb759-c965-4c6a-9110-9b2b2d038882/resourceGroups/myResourceGroup/providers/Microsoft.AppConfiguration/configurationStores/contoso/privateEndpointConnections/myConnection",
21+
"name": "myConnection",
22+
"type": "Microsoft.AppConfiguration/configurationStores/privateEndpointConnections",
23+
"properties": {
24+
"provisioningState": "Succeeded",
25+
"privateEndpoint": {
26+
"id": "/subscriptions/c80fb759-c965-4c6a-9110-9b2b2d038882/resourceGroups/myResourceGroup/providers/Microsoft.Network/privateEndpoints/peexample01"
27+
},
28+
"privateLinkServiceConnectionState": {
29+
"status": "Approved",
30+
"description": "Auto-Approved",
31+
"actionsRequired": "None"
32+
}
33+
}
34+
}
35+
},
36+
"201": {
37+
"body": {
38+
"id": "/subscriptions/c80fb759-c965-4c6a-9110-9b2b2d038882/resourceGroups/myResourceGroup/providers/Microsoft.AppConfiguration/configurationStores/contoso/privateEndpointConnections/myConnection",
39+
"name": "myConnection",
40+
"type": "Microsoft.AppConfiguration/configurationStores/privateEndpointConnections",
41+
"properties": {
42+
"provisioningState": "Succeeded",
43+
"privateEndpoint": {
44+
"id": "/subscriptions/c80fb759-c965-4c6a-9110-9b2b2d038882/resourceGroups/myResourceGroup/providers/Microsoft.Network/privateEndpoints/peexample01"
45+
},
46+
"privateLinkServiceConnectionState": {
47+
"status": "Approved",
48+
"description": "Auto-Approved",
49+
"actionsRequired": "None"
50+
}
51+
}
52+
}
53+
}
54+
}
55+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,117 @@
1+
{
2+
"parameters": {
3+
"subscriptionId": "c80fb759-c965-4c6a-9110-9b2b2d038882",
4+
"resourceGroupName": "myResourceGroup",
5+
"configStoreName": "contoso",
6+
"api-version": "2022-05-01",
7+
"configStoreCreationParameters": {
8+
"location": "westus",
9+
"sku": {
10+
"name": "Standard"
11+
},
12+
"tags": {
13+
"myTag": "myTagValue"
14+
},
15+
"identity": {
16+
"type": "SystemAssigned, UserAssigned",
17+
"userAssignedIdentities": {
18+
"/subscriptions/c80fb759-c965-4c6a-9110-9b2b2d038882/resourcegroups/myResourceGroup1/providers/Microsoft.ManagedIdentity/userAssignedIdentities/identity2": {}
19+
}
20+
}
21+
}
22+
},
23+
"responses": {
24+
"200": {
25+
"body": {
26+
"type": "Microsoft.AppConfiguration/configurationStores",
27+
"properties": {
28+
"provisioningState": "Succeeded",
29+
"creationDate": "2018-04-24T16:30:55+00:00",
30+
"endpoint": "https://contoso.azconfig.io",
31+
"encryption": {
32+
"keyVaultProperties": {
33+
"keyIdentifier": null,
34+
"identityClientId": null
35+
}
36+
},
37+
"disableLocalAuth": false,
38+
"privateEndpointConnections": []
39+
},
40+
"systemData": {
41+
"createdBy": "[email protected]",
42+
"createdByType": "User",
43+
"createdAt": "2018-04-24T16:30:55+00:00",
44+
"lastModifiedBy": "[email protected]",
45+
"lastModifiedByType": "User",
46+
"lastModifiedAt": "2018-04-24T16:30:55+00:00"
47+
},
48+
"sku": {
49+
"name": "Standard"
50+
},
51+
"identity": {
52+
"principalId": "AAAAAAAA-AAAA-AAAA-AAAA-AAAAAAAAAAAA",
53+
"tenantId": "BBBBBBBB-BBBB-BBBB-BBBB-BBBBBBBBBBBB",
54+
"type": "SystemAssigned, UserAssigned",
55+
"userAssignedIdentities": {
56+
"/subscriptions/c80fb759-c965-4c6a-9110-9b2b2d038882/resourcegroups/myResourceGroup1/providers/Microsoft.ManagedIdentity/userAssignedIdentities/identity2": {
57+
"clientId": "CCCCCCCC-CCCC-CCCC-CCCC-CCCCCCCCCCCC",
58+
"principalId": "DDDDDDDD-DDDD-DDDD-DDDD-DDDDDDDDDDDD"
59+
}
60+
}
61+
},
62+
"id": "/subscriptions/c80fb759-c965-4c6a-9110-9b2b2d038882/resourceGroups/myResourceGroup/providers/Microsoft.AppConfiguration/configurationStores/contoso",
63+
"name": "contoso",
64+
"location": "westus",
65+
"tags": {
66+
"myTag": "myTagValue"
67+
}
68+
}
69+
},
70+
"201": {
71+
"body": {
72+
"type": "Microsoft.AppConfiguration/configurationStores",
73+
"properties": {
74+
"provisioningState": "Creating",
75+
"creationDate": "2018-04-24T16:30:55+00:00",
76+
"endpoint": "https://contoso.azconfig.io",
77+
"encryption": {
78+
"keyVaultProperties": {
79+
"keyIdentifier": null,
80+
"identityClientId": null
81+
}
82+
},
83+
"disableLocalAuth": false,
84+
"privateEndpointConnections": []
85+
},
86+
"systemData": {
87+
"createdBy": "[email protected]",
88+
"createdByType": "User",
89+
"createdAt": "2018-04-24T16:30:55+00:00",
90+
"lastModifiedBy": "[email protected]",
91+
"lastModifiedByType": "User",
92+
"lastModifiedAt": "2018-04-24T16:30:55+00:00"
93+
},
94+
"sku": {
95+
"name": "Standard"
96+
},
97+
"identity": {
98+
"principalId": "AAAAAAAA-AAAA-AAAA-AAAA-AAAAAAAAAAAA",
99+
"tenantId": "BBBBBBBB-BBBB-BBBB-BBBB-BBBBBBBBBBBB",
100+
"type": "SystemAssigned, UserAssigned",
101+
"userAssignedIdentities": {
102+
"/subscriptions/c80fb759-c965-4c6a-9110-9b2b2d038882/resourcegroups/myResourceGroup1/providers/Microsoft.ManagedIdentity/userAssignedIdentities/identity2": {
103+
"clientId": "CCCCCCCC-CCCC-CCCC-CCCC-CCCCCCCCCCCC",
104+
"principalId": "DDDDDDDD-DDDD-DDDD-DDDD-DDDDDDDDDDDD"
105+
}
106+
}
107+
},
108+
"id": "/subscriptions/c80fb759-c965-4c6a-9110-9b2b2d038882/resourceGroups/myResourceGroup/providers/Microsoft.AppConfiguration/configurationStores/contoso",
109+
"name": "contoso",
110+
"location": "westus",
111+
"tags": {
112+
"myTag": "myTagValue"
113+
}
114+
}
115+
}
116+
}
117+
}

0 commit comments

Comments
 (0)