forked from Azure/azure-rest-api-specs
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[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
- Loading branch information
1 parent
eb1b7ed
commit 380ebeb
Showing
31 changed files
with
3,659 additions
and
1 deletion.
There are no files selected for viewing
2,292 changes: 2,292 additions & 0 deletions
2,292
...ation/resource-manager/Microsoft.AppConfiguration/stable/2022-05-01/appconfiguration.json
Large diffs are not rendered by default.
Oops, something went wrong.
19 changes: 19 additions & 0 deletions
19
...rce-manager/Microsoft.AppConfiguration/stable/2022-05-01/examples/CheckNameAvailable.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
{ | ||
"parameters": { | ||
"subscriptionId": "c80fb759-c965-4c6a-9110-9b2b2d038882", | ||
"api-version": "2022-05-01", | ||
"checkNameAvailabilityParameters": { | ||
"name": "contoso", | ||
"type": "Microsoft.AppConfiguration/configurationStores" | ||
} | ||
}, | ||
"responses": { | ||
"200": { | ||
"body": { | ||
"nameAvailable": true, | ||
"message": "The specified name is available.", | ||
"reason": null | ||
} | ||
} | ||
} | ||
} |
19 changes: 19 additions & 0 deletions
19
...-manager/Microsoft.AppConfiguration/stable/2022-05-01/examples/CheckNameNotAvailable.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
{ | ||
"parameters": { | ||
"subscriptionId": "c80fb759-c965-4c6a-9110-9b2b2d038882", | ||
"api-version": "2022-05-01", | ||
"checkNameAvailabilityParameters": { | ||
"name": "contoso", | ||
"type": "Microsoft.AppConfiguration/configurationStores" | ||
} | ||
}, | ||
"responses": { | ||
"200": { | ||
"body": { | ||
"nameAvailable": false, | ||
"reason": "AlreadyExists", | ||
"message": "The specified name is already in use." | ||
} | ||
} | ||
} | ||
} |
93 changes: 93 additions & 0 deletions
93
...ager/Microsoft.AppConfiguration/stable/2022-05-01/examples/ConfigurationStoresCreate.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,93 @@ | ||
{ | ||
"parameters": { | ||
"subscriptionId": "c80fb759-c965-4c6a-9110-9b2b2d038882", | ||
"resourceGroupName": "myResourceGroup", | ||
"configStoreName": "contoso", | ||
"api-version": "2022-05-01", | ||
"configStoreCreationParameters": { | ||
"location": "westus", | ||
"sku": { | ||
"name": "Standard" | ||
}, | ||
"tags": { | ||
"myTag": "myTagValue" | ||
} | ||
} | ||
}, | ||
"responses": { | ||
"200": { | ||
"body": { | ||
"type": "Microsoft.AppConfiguration/configurationStores", | ||
"properties": { | ||
"provisioningState": "Succeeded", | ||
"creationDate": "2018-04-24T16:30:55+00:00", | ||
"endpoint": "https://contoso.azconfig.io", | ||
"encryption": { | ||
"keyVaultProperties": { | ||
"keyIdentifier": null, | ||
"identityClientId": null | ||
} | ||
}, | ||
"disableLocalAuth": false, | ||
"privateEndpointConnections": [], | ||
"softDeleteRetentionInDays": 30, | ||
"enablePurgeProtection": false | ||
}, | ||
"systemData": { | ||
"createdBy": "foo@contoso.com", | ||
"createdByType": "User", | ||
"createdAt": "2018-04-24T16:30:55+00:00", | ||
"lastModifiedBy": "foo@contoso.com", | ||
"lastModifiedByType": "User", | ||
"lastModifiedAt": "2018-04-24T16:30:55+00:00" | ||
}, | ||
"sku": { | ||
"name": "Standard" | ||
}, | ||
"id": "/subscriptions/c80fb759-c965-4c6a-9110-9b2b2d038882/resourceGroups/myResourceGroup/providers/Microsoft.AppConfiguration/configurationStores/contoso", | ||
"name": "contoso", | ||
"location": "westus", | ||
"tags": { | ||
"myTag": "myTagValue" | ||
} | ||
} | ||
}, | ||
"201": { | ||
"body": { | ||
"type": "Microsoft.AppConfiguration/configurationStores", | ||
"properties": { | ||
"provisioningState": "Creating", | ||
"creationDate": "2018-04-24T16:30:55+00:00", | ||
"endpoint": "https://contoso.azconfig.io", | ||
"encryption": { | ||
"keyVaultProperties": { | ||
"keyIdentifier": null, | ||
"identityClientId": null | ||
} | ||
}, | ||
"disableLocalAuth": false, | ||
"privateEndpointConnections": [], | ||
"softDeleteRetentionInDays": 30, | ||
"enablePurgeProtection": false | ||
}, | ||
"systemData": { | ||
"createdBy": "foo@contoso.com", | ||
"createdByType": "User", | ||
"createdAt": "2018-04-24T16:30:55+00:00", | ||
"lastModifiedBy": "foo@contoso.com", | ||
"lastModifiedByType": "User", | ||
"lastModifiedAt": "2018-04-24T16:30:55+00:00" | ||
}, | ||
"sku": { | ||
"name": "Standard" | ||
}, | ||
"id": "/subscriptions/c80fb759-c965-4c6a-9110-9b2b2d038882/resourceGroups/myResourceGroup/providers/Microsoft.AppConfiguration/configurationStores/contoso", | ||
"name": "contoso", | ||
"location": "westus", | ||
"tags": { | ||
"myTag": "myTagValue" | ||
} | ||
} | ||
} | ||
} | ||
} |
40 changes: 40 additions & 0 deletions
40
...rosoft.AppConfiguration/stable/2022-05-01/examples/ConfigurationStoresCreateKeyValue.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
{ | ||
"parameters": { | ||
"subscriptionId": "c80fb759-c965-4c6a-9110-9b2b2d038882", | ||
"resourceGroupName": "myResourceGroup", | ||
"configStoreName": "contoso", | ||
"api-version": "2022-05-01", | ||
"keyValueName": "myKey$myLabel", | ||
"keyValueParameters": { | ||
"properties": { | ||
"value": "myValue", | ||
"tags": { | ||
"tag1": "tagValue1", | ||
"tag2": "tagValue2" | ||
} | ||
} | ||
} | ||
}, | ||
"responses": { | ||
"200": { | ||
"body": { | ||
"type": "Microsoft.AppConfiguration/configurationStores/keyValues", | ||
"properties": { | ||
"key": "myKey", | ||
"label": "myLabel", | ||
"value": "myValue", | ||
"contentType": "", | ||
"eTag": "IhDxoa8VkXxPsYsemBlxvV0d5fp", | ||
"lastModified": "2020-06-23T06:42:24+00:00", | ||
"locked": false, | ||
"tags": { | ||
"tag1": "tagValue1", | ||
"tag2": "tagValue2" | ||
} | ||
}, | ||
"id": "/subscriptions/c80fb759-c965-4c6a-9110-9b2b2d038882/resourceGroups/myResourceGroup/providers/Microsoft.AppConfiguration/configurationStores/contoso/keyValues/myKey$myLabel", | ||
"name": "myKey$myLabel" | ||
} | ||
} | ||
} | ||
} |
55 changes: 55 additions & 0 deletions
55
...ration/stable/2022-05-01/examples/ConfigurationStoresCreatePrivateEndpointConnection.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
{ | ||
"parameters": { | ||
"subscriptionId": "c80fb759-c965-4c6a-9110-9b2b2d038882", | ||
"resourceGroupName": "myResourceGroup", | ||
"configStoreName": "contoso", | ||
"privateEndpointConnectionName": "myConnection", | ||
"api-version": "2022-05-01", | ||
"privateEndpointConnection": { | ||
"properties": { | ||
"privateLinkServiceConnectionState": { | ||
"status": "Approved", | ||
"description": "Auto-Approved" | ||
} | ||
} | ||
} | ||
}, | ||
"responses": { | ||
"200": { | ||
"body": { | ||
"id": "/subscriptions/c80fb759-c965-4c6a-9110-9b2b2d038882/resourceGroups/myResourceGroup/providers/Microsoft.AppConfiguration/configurationStores/contoso/privateEndpointConnections/myConnection", | ||
"name": "myConnection", | ||
"type": "Microsoft.AppConfiguration/configurationStores/privateEndpointConnections", | ||
"properties": { | ||
"provisioningState": "Succeeded", | ||
"privateEndpoint": { | ||
"id": "/subscriptions/c80fb759-c965-4c6a-9110-9b2b2d038882/resourceGroups/myResourceGroup/providers/Microsoft.Network/privateEndpoints/peexample01" | ||
}, | ||
"privateLinkServiceConnectionState": { | ||
"status": "Approved", | ||
"description": "Auto-Approved", | ||
"actionsRequired": "None" | ||
} | ||
} | ||
} | ||
}, | ||
"201": { | ||
"body": { | ||
"id": "/subscriptions/c80fb759-c965-4c6a-9110-9b2b2d038882/resourceGroups/myResourceGroup/providers/Microsoft.AppConfiguration/configurationStores/contoso/privateEndpointConnections/myConnection", | ||
"name": "myConnection", | ||
"type": "Microsoft.AppConfiguration/configurationStores/privateEndpointConnections", | ||
"properties": { | ||
"provisioningState": "Succeeded", | ||
"privateEndpoint": { | ||
"id": "/subscriptions/c80fb759-c965-4c6a-9110-9b2b2d038882/resourceGroups/myResourceGroup/providers/Microsoft.Network/privateEndpoints/peexample01" | ||
}, | ||
"privateLinkServiceConnectionState": { | ||
"status": "Approved", | ||
"description": "Auto-Approved", | ||
"actionsRequired": "None" | ||
} | ||
} | ||
} | ||
} | ||
} | ||
} |
117 changes: 117 additions & 0 deletions
117
...ft.AppConfiguration/stable/2022-05-01/examples/ConfigurationStoresCreateWithIdentity.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,117 @@ | ||
{ | ||
"parameters": { | ||
"subscriptionId": "c80fb759-c965-4c6a-9110-9b2b2d038882", | ||
"resourceGroupName": "myResourceGroup", | ||
"configStoreName": "contoso", | ||
"api-version": "2022-05-01", | ||
"configStoreCreationParameters": { | ||
"location": "westus", | ||
"sku": { | ||
"name": "Standard" | ||
}, | ||
"tags": { | ||
"myTag": "myTagValue" | ||
}, | ||
"identity": { | ||
"type": "SystemAssigned, UserAssigned", | ||
"userAssignedIdentities": { | ||
"/subscriptions/c80fb759-c965-4c6a-9110-9b2b2d038882/resourcegroups/myResourceGroup1/providers/Microsoft.ManagedIdentity/userAssignedIdentities/identity2": {} | ||
} | ||
} | ||
} | ||
}, | ||
"responses": { | ||
"200": { | ||
"body": { | ||
"type": "Microsoft.AppConfiguration/configurationStores", | ||
"properties": { | ||
"provisioningState": "Succeeded", | ||
"creationDate": "2018-04-24T16:30:55+00:00", | ||
"endpoint": "https://contoso.azconfig.io", | ||
"encryption": { | ||
"keyVaultProperties": { | ||
"keyIdentifier": null, | ||
"identityClientId": null | ||
} | ||
}, | ||
"disableLocalAuth": false, | ||
"privateEndpointConnections": [] | ||
}, | ||
"systemData": { | ||
"createdBy": "foo@contoso.com", | ||
"createdByType": "User", | ||
"createdAt": "2018-04-24T16:30:55+00:00", | ||
"lastModifiedBy": "foo@contoso.com", | ||
"lastModifiedByType": "User", | ||
"lastModifiedAt": "2018-04-24T16:30:55+00:00" | ||
}, | ||
"sku": { | ||
"name": "Standard" | ||
}, | ||
"identity": { | ||
"principalId": "AAAAAAAA-AAAA-AAAA-AAAA-AAAAAAAAAAAA", | ||
"tenantId": "BBBBBBBB-BBBB-BBBB-BBBB-BBBBBBBBBBBB", | ||
"type": "SystemAssigned, UserAssigned", | ||
"userAssignedIdentities": { | ||
"/subscriptions/c80fb759-c965-4c6a-9110-9b2b2d038882/resourcegroups/myResourceGroup1/providers/Microsoft.ManagedIdentity/userAssignedIdentities/identity2": { | ||
"clientId": "CCCCCCCC-CCCC-CCCC-CCCC-CCCCCCCCCCCC", | ||
"principalId": "DDDDDDDD-DDDD-DDDD-DDDD-DDDDDDDDDDDD" | ||
} | ||
} | ||
}, | ||
"id": "/subscriptions/c80fb759-c965-4c6a-9110-9b2b2d038882/resourceGroups/myResourceGroup/providers/Microsoft.AppConfiguration/configurationStores/contoso", | ||
"name": "contoso", | ||
"location": "westus", | ||
"tags": { | ||
"myTag": "myTagValue" | ||
} | ||
} | ||
}, | ||
"201": { | ||
"body": { | ||
"type": "Microsoft.AppConfiguration/configurationStores", | ||
"properties": { | ||
"provisioningState": "Creating", | ||
"creationDate": "2018-04-24T16:30:55+00:00", | ||
"endpoint": "https://contoso.azconfig.io", | ||
"encryption": { | ||
"keyVaultProperties": { | ||
"keyIdentifier": null, | ||
"identityClientId": null | ||
} | ||
}, | ||
"disableLocalAuth": false, | ||
"privateEndpointConnections": [] | ||
}, | ||
"systemData": { | ||
"createdBy": "foo@contoso.com", | ||
"createdByType": "User", | ||
"createdAt": "2018-04-24T16:30:55+00:00", | ||
"lastModifiedBy": "foo@contoso.com", | ||
"lastModifiedByType": "User", | ||
"lastModifiedAt": "2018-04-24T16:30:55+00:00" | ||
}, | ||
"sku": { | ||
"name": "Standard" | ||
}, | ||
"identity": { | ||
"principalId": "AAAAAAAA-AAAA-AAAA-AAAA-AAAAAAAAAAAA", | ||
"tenantId": "BBBBBBBB-BBBB-BBBB-BBBB-BBBBBBBBBBBB", | ||
"type": "SystemAssigned, UserAssigned", | ||
"userAssignedIdentities": { | ||
"/subscriptions/c80fb759-c965-4c6a-9110-9b2b2d038882/resourcegroups/myResourceGroup1/providers/Microsoft.ManagedIdentity/userAssignedIdentities/identity2": { | ||
"clientId": "CCCCCCCC-CCCC-CCCC-CCCC-CCCCCCCCCCCC", | ||
"principalId": "DDDDDDDD-DDDD-DDDD-DDDD-DDDDDDDDDDDD" | ||
} | ||
} | ||
}, | ||
"id": "/subscriptions/c80fb759-c965-4c6a-9110-9b2b2d038882/resourceGroups/myResourceGroup/providers/Microsoft.AppConfiguration/configurationStores/contoso", | ||
"name": "contoso", | ||
"location": "westus", | ||
"tags": { | ||
"myTag": "myTagValue" | ||
} | ||
} | ||
} | ||
} | ||
} |
Oops, something went wrong.