From 3124315ca51297edd1150c6db7d067a3e97cf4af Mon Sep 17 00:00:00 2001 From: Sergio Navar Date: Mon, 10 Jan 2022 11:48:13 -0600 Subject: [PATCH 01/14] Update Analysis Service and API Management Outputs --- arm/Microsoft.AnalysisServices/servers/deploy.bicep | 6 +++--- .../service/.bicep/nested_authorizationServers.bicep | 6 +++--- .../service/apiVersionSets/deploy.bicep | 6 +++--- arm/Microsoft.ApiManagement/service/apis/deploy.bicep | 6 +++--- .../service/apis/policies/deploy.bicep | 6 +++--- .../service/authorizationServers/deploy.bicep | 6 +++--- arm/Microsoft.ApiManagement/service/backends/deploy.bicep | 6 +++--- arm/Microsoft.ApiManagement/service/caches/deploy.bicep | 6 +++--- arm/Microsoft.ApiManagement/service/deploy.bicep | 6 +++--- .../service/identityProviders/deploy.bicep | 6 +++--- .../service/namedValues/deploy.bicep | 6 +++--- arm/Microsoft.ApiManagement/service/policies/deploy.bicep | 6 +++--- .../service/portalsettings/deploy.bicep | 6 +++--- .../service/products/apis/deploy.bicep | 6 +++--- arm/Microsoft.ApiManagement/service/products/deploy.bicep | 6 +++--- .../service/products/groups/deploy.bicep | 6 +++--- .../service/subscriptions/deploy.bicep | 6 +++--- 17 files changed, 51 insertions(+), 51 deletions(-) diff --git a/arm/Microsoft.AnalysisServices/servers/deploy.bicep b/arm/Microsoft.AnalysisServices/servers/deploy.bicep index e115076004..e94087ef7d 100644 --- a/arm/Microsoft.AnalysisServices/servers/deploy.bicep +++ b/arm/Microsoft.AnalysisServices/servers/deploy.bicep @@ -143,10 +143,10 @@ module server_rbac '.bicep/nested_rbac.bicep' = [for (roleAssignment, index) in }] @description('The name of the analysis service') -output analysisServicesName string = server.name +output name string = server.name @description('The resource ID of the analysis service') -output analysisServicesResourceId string = server.id +output resourceId string = server.id @description('The resource group the analysis service was deployed into') -output analysisServicesResourceGroup string = resourceGroup().name +output resourceGroupName string = resourceGroup().name diff --git a/arm/Microsoft.ApiManagement/service/.bicep/nested_authorizationServers.bicep b/arm/Microsoft.ApiManagement/service/.bicep/nested_authorizationServers.bicep index c0dc584e85..3171c67848 100644 --- a/arm/Microsoft.ApiManagement/service/.bicep/nested_authorizationServers.bicep +++ b/arm/Microsoft.ApiManagement/service/.bicep/nested_authorizationServers.bicep @@ -100,10 +100,10 @@ module authorizationServer '../authorizationServers/deploy.bicep' = { } @description('The name of the API management service authorization server') -output authorizationServerName string = authorizationServer.outputs.authorizationServerName +output name string = authorizationServer.outputs.authorizationServerName @description('The resource ID of the API management service authorization server') -output authorizationServerResourceId string = authorizationServer.outputs.authorizationServerResourceId +output resourceId string = authorizationServer.outputs.authorizationServerResourceId @description('The resource group the API management service authorization server was deployed into') -output authorizationServerResourceGroup string = authorizationServer.outputs.authorizationServerResourceGroup +output resourceGroupName string = authorizationServer.outputs.authorizationServerResourceGroup diff --git a/arm/Microsoft.ApiManagement/service/apiVersionSets/deploy.bicep b/arm/Microsoft.ApiManagement/service/apiVersionSets/deploy.bicep index 2aac7bb207..ec186dea17 100644 --- a/arm/Microsoft.ApiManagement/service/apiVersionSets/deploy.bicep +++ b/arm/Microsoft.ApiManagement/service/apiVersionSets/deploy.bicep @@ -26,10 +26,10 @@ resource apiVersionSet 'Microsoft.ApiManagement/service/apiVersionSets@2020-06-0 } @description('The resource ID of the API Version set') -output apiVersionSetResourceId string = apiVersionSet.id +output resourceId string = apiVersionSet.id @description('The name of the API Version set') -output apiVersionSetName string = apiVersionSet.name +output name string = apiVersionSet.name @description('The resource group the API Version set was deployed into') -output apiVersionSetResourceGroup string = resourceGroup().name +output resourceGroupName string = resourceGroup().name diff --git a/arm/Microsoft.ApiManagement/service/apis/deploy.bicep b/arm/Microsoft.ApiManagement/service/apis/deploy.bicep index 36fb8968f9..06098a062d 100644 --- a/arm/Microsoft.ApiManagement/service/apis/deploy.bicep +++ b/arm/Microsoft.ApiManagement/service/apis/deploy.bicep @@ -141,10 +141,10 @@ module policy 'policies/deploy.bicep' = [for (policy, index) in policies: { }] @description('The name of the API management service API') -output apiName string = api.name +output name string = api.name @description('The resource ID of the API management service API') -output apiResourceId string = api.id +output resourceId string = api.id @description('The resource group the API management service API was deployed to') -output apiResourceGroup string = resourceGroup().name +output resourceGroupName string = resourceGroup().name diff --git a/arm/Microsoft.ApiManagement/service/apis/policies/deploy.bicep b/arm/Microsoft.ApiManagement/service/apis/policies/deploy.bicep index 78428c8bbf..ff7fc417d3 100644 --- a/arm/Microsoft.ApiManagement/service/apis/policies/deploy.bicep +++ b/arm/Microsoft.ApiManagement/service/apis/policies/deploy.bicep @@ -45,10 +45,10 @@ resource policy 'Microsoft.ApiManagement/service/apis/policies@2020-06-01-previe } @description('The resource ID of the API policy') -output policyResourceId string = policy.id +output resourceId string = policy.id @description('The name of the API policy') -output policyName string = policy.name +output name string = policy.name @description('The resource group the API policy was deployed into') -output policyResourceGroup string = resourceGroup().name +output resourceGroupName string = resourceGroup().name diff --git a/arm/Microsoft.ApiManagement/service/authorizationServers/deploy.bicep b/arm/Microsoft.ApiManagement/service/authorizationServers/deploy.bicep index caeca8d351..b697c88794 100644 --- a/arm/Microsoft.ApiManagement/service/authorizationServers/deploy.bicep +++ b/arm/Microsoft.ApiManagement/service/authorizationServers/deploy.bicep @@ -98,10 +98,10 @@ resource authorizationServer 'Microsoft.ApiManagement/service/authorizationServe } @description('The name of the API management service authorization server') -output authorizationServerName string = authorizationServer.name +output name string = authorizationServer.name @description('The resource ID of the API management service authorization server') -output authorizationServerResourceId string = authorizationServer.id +output resourceId string = authorizationServer.id @description('The resource group the API management service authorization server was deployed into') -output authorizationServerResourceGroup string = resourceGroup().name +output resourceGroupName string = resourceGroup().name diff --git a/arm/Microsoft.ApiManagement/service/backends/deploy.bicep b/arm/Microsoft.ApiManagement/service/backends/deploy.bicep index e5c1034f0e..b4b15d90b0 100644 --- a/arm/Microsoft.ApiManagement/service/backends/deploy.bicep +++ b/arm/Microsoft.ApiManagement/service/backends/deploy.bicep @@ -65,10 +65,10 @@ resource backend 'Microsoft.ApiManagement/service/backends@2020-06-01-preview' = } @description('The resource ID of the API management service backend') -output backendResourceId string = backend.id +output resourceId string = backend.id @description('The name of the API management service backend') -output backendName string = backend.name +output name string = backend.name @description('The resource group the API management service backend was deployed into') -output backendResourceGroup string = resourceGroup().name +output resourceGroupName string = resourceGroup().name diff --git a/arm/Microsoft.ApiManagement/service/caches/deploy.bicep b/arm/Microsoft.ApiManagement/service/caches/deploy.bicep index 8e12e3598c..1371172ff4 100644 --- a/arm/Microsoft.ApiManagement/service/caches/deploy.bicep +++ b/arm/Microsoft.ApiManagement/service/caches/deploy.bicep @@ -40,10 +40,10 @@ resource cache 'Microsoft.ApiManagement/service/caches@2020-06-01-preview' = { } @description('The resource ID of the API management service cache') -output cacheResourceId string = cache.id +output resourceId string = cache.id @description('The name of the API management service cache') -output cacheResourceName string = cache.name +output name string = cache.name @description('The resource group the API management service cache was deployed into') -output cacheResourceGroup string = resourceGroup().name +output resourceGroupName string = resourceGroup().name diff --git a/arm/Microsoft.ApiManagement/service/deploy.bicep b/arm/Microsoft.ApiManagement/service/deploy.bicep index 3a1016ae6f..370f571af3 100644 --- a/arm/Microsoft.ApiManagement/service/deploy.bicep +++ b/arm/Microsoft.ApiManagement/service/deploy.bicep @@ -428,13 +428,13 @@ module apiManagementService_rbac '.bicep/nested_rbac.bicep' = [for (roleAssignme }] @description('The name of the API management service') -output serviceName string = apiManagementService.name +output name string = apiManagementService.name @description('The resource ID of the API management service') -output serviceResourceId string = apiManagementService.id +output resourceId string = apiManagementService.id @description('The resource group the API management service was deployed into') -output serviceResourceGroup string = resourceGroup().name +output resourceGroupName string = resourceGroup().name @description('The principal ID of the system assigned identity.') output systemAssignedPrincipalId string = systemAssignedIdentity && contains(apiManagementService.identity, 'principalId') ? apiManagementService.identity.principalId : '' diff --git a/arm/Microsoft.ApiManagement/service/identityProviders/deploy.bicep b/arm/Microsoft.ApiManagement/service/identityProviders/deploy.bicep index 778b653bc4..06e17f0976 100644 --- a/arm/Microsoft.ApiManagement/service/identityProviders/deploy.bicep +++ b/arm/Microsoft.ApiManagement/service/identityProviders/deploy.bicep @@ -78,10 +78,10 @@ resource identityProvider 'Microsoft.ApiManagement/service/identityProviders@202 } @description('The resource ID of the API management service identity provider') -output identityProviderResourceId string = identityProvider.id +output resourceId string = identityProvider.id @description('The name of the API management service identity provider') -output identityProviderName string = identityProvider.name +output name string = identityProvider.name @description('The resource group the API management service identity provider was deployed into') -output identityProviderResourceGroup string = resourceGroup().name +output resourceGroupName string = resourceGroup().name diff --git a/arm/Microsoft.ApiManagement/service/namedValues/deploy.bicep b/arm/Microsoft.ApiManagement/service/namedValues/deploy.bicep index 73dbdf9be8..6e2999f31b 100644 --- a/arm/Microsoft.ApiManagement/service/namedValues/deploy.bicep +++ b/arm/Microsoft.ApiManagement/service/namedValues/deploy.bicep @@ -46,10 +46,10 @@ resource namedValue 'Microsoft.ApiManagement/service/namedValues@2020-06-01-prev } @description('The resource ID of the named value') -output namedValueResourceId string = namedValue.id +output resourceId string = namedValue.id @description('The name of the named value') -output namedValueName string = namedValue.name +output name string = namedValue.name @description('The resource group the named value was deployed into') -output namedValueResourceGroup string = resourceGroup().name +output resourceGroupName string = resourceGroup().name diff --git a/arm/Microsoft.ApiManagement/service/policies/deploy.bicep b/arm/Microsoft.ApiManagement/service/policies/deploy.bicep index 497721cbda..f1fc2374dd 100644 --- a/arm/Microsoft.ApiManagement/service/policies/deploy.bicep +++ b/arm/Microsoft.ApiManagement/service/policies/deploy.bicep @@ -38,10 +38,10 @@ resource policy 'Microsoft.ApiManagement/service/policies@2020-06-01-preview' = } @description('The resource ID of the API management service policy') -output policyResourceId string = policy.id +output resourceId string = policy.id @description('The name of the API management service policy') -output policyName string = policy.name +output name string = policy.name @description('The resource group the API management service policy was deployed into') -output policyResourceGroup string = resourceGroup().name +output resourceGroupName string = resourceGroup().name diff --git a/arm/Microsoft.ApiManagement/service/portalsettings/deploy.bicep b/arm/Microsoft.ApiManagement/service/portalsettings/deploy.bicep index bf47b791b3..4d235b498b 100644 --- a/arm/Microsoft.ApiManagement/service/portalsettings/deploy.bicep +++ b/arm/Microsoft.ApiManagement/service/portalsettings/deploy.bicep @@ -31,10 +31,10 @@ resource portalSetting 'Microsoft.ApiManagement/service/portalsettings@2019-12-0 } @description('The resource ID of the API management service portal setting') -output portalSettingsResourceId string = portalSetting.id +output resourceId string = portalSetting.id @description('The name of the API management service portal setting') -output portalSettingsName string = portalSetting.name +output name string = portalSetting.name @description('The resource group the API management service portal setting was deployed into') -output portalSettingsResourceGroup string = resourceGroup().name +output resourceGroupName string = resourceGroup().name diff --git a/arm/Microsoft.ApiManagement/service/products/apis/deploy.bicep b/arm/Microsoft.ApiManagement/service/products/apis/deploy.bicep index 7999f11be1..5699cd8961 100644 --- a/arm/Microsoft.ApiManagement/service/products/apis/deploy.bicep +++ b/arm/Microsoft.ApiManagement/service/products/apis/deploy.bicep @@ -29,10 +29,10 @@ resource api 'Microsoft.ApiManagement/service/products/apis@2020-06-01-preview' } @description('The resource ID of the product API') -output apiResourceId string = api.id +output resourceId string = api.id @description('The name of the product API') -output apiName string = api.name +output name string = api.name @description('The resource group the product API was deployed into') -output apiResourceGroup string = resourceGroup().name +output resourceGroupName string = resourceGroup().name diff --git a/arm/Microsoft.ApiManagement/service/products/deploy.bicep b/arm/Microsoft.ApiManagement/service/products/deploy.bicep index c54ce33c82..e7008dab2e 100644 --- a/arm/Microsoft.ApiManagement/service/products/deploy.bicep +++ b/arm/Microsoft.ApiManagement/service/products/deploy.bicep @@ -73,13 +73,13 @@ module group 'groups/deploy.bicep' = [for (group, index) in groups: { }] @description('The resource ID of the API management service product') -output productResourceId string = product.id +output resourceId string = product.id @description('The name of the API management service product') -output productName string = product.name +output name string = product.name @description('The resource group the API management service product was deployed into') -output productResourceGroup string = resourceGroup().name +output resourceGroupName string = resourceGroup().name @description('The Resources IDs of the API management service product APIs') output productApisResourceIds array = [for productApi in apis: resourceId('Microsoft.ApiManagement/service/products/apis', apiManagementServiceName, name, productApi.name)] diff --git a/arm/Microsoft.ApiManagement/service/products/groups/deploy.bicep b/arm/Microsoft.ApiManagement/service/products/groups/deploy.bicep index 37d1ddc071..03ff46bad1 100644 --- a/arm/Microsoft.ApiManagement/service/products/groups/deploy.bicep +++ b/arm/Microsoft.ApiManagement/service/products/groups/deploy.bicep @@ -29,10 +29,10 @@ resource group 'Microsoft.ApiManagement/service/products/groups@2020-06-01-previ } @description('The resource ID of the product group') -output groupResourceId string = group.id +output resourceId string = group.id @description('The name of the product group') -output groupName string = group.name +output name string = group.name @description('The resource group the product group was deployed into') -output groupResourceGroup string = resourceGroup().name +output resourceGroupName string = resourceGroup().name diff --git a/arm/Microsoft.ApiManagement/service/subscriptions/deploy.bicep b/arm/Microsoft.ApiManagement/service/subscriptions/deploy.bicep index 8d719350b5..66c73981b9 100644 --- a/arm/Microsoft.ApiManagement/service/subscriptions/deploy.bicep +++ b/arm/Microsoft.ApiManagement/service/subscriptions/deploy.bicep @@ -49,10 +49,10 @@ resource subscription 'Microsoft.ApiManagement/service/subscriptions@2020-06-01- } @description('The resource ID of the API management service subscription') -output subscriptionResourceId string = subscription.id +output resourceId string = subscription.id @description('The name of the API management service subscription') -output subscriptionName string = subscription.name +output name string = subscription.name @description('The resource group the API management service subscription was deployed into') -output subscriptionResourceGroup string = resourceGroup().name +output resourceGroupName string = resourceGroup().name From 0347806e248bf8cbdae57a37f0b03158fca8af5d Mon Sep 17 00:00:00 2001 From: Sergio Navar Date: Mon, 10 Jan 2022 12:14:53 -0600 Subject: [PATCH 02/14] Update ReadMes --- arm/Microsoft.AnalysisServices/servers/readme.md | 10 +++++----- .../service/apiVersionSets/readme.md | 8 ++++---- .../service/apis/policies/readme.md | 8 ++++---- arm/Microsoft.ApiManagement/service/apis/readme.md | 10 +++++----- .../service/authorizationServers/readme.md | 8 ++++---- arm/Microsoft.ApiManagement/service/backends/readme.md | 8 ++++---- arm/Microsoft.ApiManagement/service/caches/readme.md | 8 ++++---- .../service/identityProviders/readme.md | 8 ++++---- .../service/namedValues/readme.md | 8 ++++---- arm/Microsoft.ApiManagement/service/policies/readme.md | 8 ++++---- .../service/portalsettings/readme.md | 6 +++--- .../service/products/apis/readme.md | 8 ++++---- .../service/products/groups/readme.md | 8 ++++---- arm/Microsoft.ApiManagement/service/readme.md | 6 +++--- .../service/subscriptions/readme.md | 8 ++++---- 15 files changed, 60 insertions(+), 60 deletions(-) diff --git a/arm/Microsoft.AnalysisServices/servers/readme.md b/arm/Microsoft.AnalysisServices/servers/readme.md index 5712fa2635..f7c5656f56 100644 --- a/arm/Microsoft.AnalysisServices/servers/readme.md +++ b/arm/Microsoft.AnalysisServices/servers/readme.md @@ -81,13 +81,13 @@ Tag names and tag values can be provided as needed. A tag can be left without a | Output Name | Type | Description | | :-- | :-- | :-- | -| `analysisServicesName` | string | The name of the analysis service | -| `analysisServicesResourceGroup` | string | The resource group the analysis service was deployed into | -| `analysisServicesResourceId` | string | The resource ID of the analysis service | +| `name` | string | The name of the analysis service | +| `resourceGroupName` | string | The resource group the analysis service was deployed into | +| `resourceId` | string | The resource ID of the analysis service | ## Template references -- [Servers](https://docs.microsoft.com/en-us/azure/templates/Microsoft.AnalysisServices/2017-08-01/servers) +- [Diagnosticsettings](https://docs.microsoft.com/en-us/azure/templates/Microsoft.Insights/2021-05-01-preview/diagnosticSettings) - [Locks](https://docs.microsoft.com/en-us/azure/templates/Microsoft.Authorization/2016-09-01/locks) - [Roleassignments](https://docs.microsoft.com/en-us/azure/templates/Microsoft.Authorization/2020-04-01-preview/roleAssignments) -- [Diagnosticsettings](https://docs.microsoft.com/en-us/azure/templates/Microsoft.Insights/2021-05-01-preview/diagnosticSettings) +- [Servers](https://docs.microsoft.com/en-us/azure/templates/Microsoft.AnalysisServices/2017-08-01/servers) diff --git a/arm/Microsoft.ApiManagement/service/apiVersionSets/readme.md b/arm/Microsoft.ApiManagement/service/apiVersionSets/readme.md index 28f4e3ab5d..e40be383cc 100644 --- a/arm/Microsoft.ApiManagement/service/apiVersionSets/readme.md +++ b/arm/Microsoft.ApiManagement/service/apiVersionSets/readme.md @@ -21,10 +21,10 @@ This module deploys API Management Service APIs Version Set. | Output Name | Type | Description | | :-- | :-- | :-- | -| `apiVersionSetName` | string | The name of the API Version set | -| `apiVersionSetResourceGroup` | string | The resource group the API Version set was deployed into | -| `apiVersionSetResourceId` | string | The resource ID of the API Version set | +| `name` | string | The name of the API Version set | +| `resourceGroupName` | string | The resource group the API Version set was deployed into | +| `resourceId` | string | The resource ID of the API Version set | ## Template references -- [Service/Apiversionsets](https://docs.microsoft.com/en-us/azure/templates/Microsoft.ApiManagement/2020-06-01-preview/service/apiVersionSets) +- [Service/Apiversionsets](https://docs.microsoft.com/en-us/azure/templates/Microsoft.ApiManagement/service/apiVersionSets) diff --git a/arm/Microsoft.ApiManagement/service/apis/policies/readme.md b/arm/Microsoft.ApiManagement/service/apis/policies/readme.md index ac5d624b03..40d5dabed5 100644 --- a/arm/Microsoft.ApiManagement/service/apis/policies/readme.md +++ b/arm/Microsoft.ApiManagement/service/apis/policies/readme.md @@ -23,10 +23,10 @@ This module deploys API Management Service APIs policies. | Output Name | Type | Description | | :-- | :-- | :-- | -| `policyName` | string | The name of the API policy | -| `policyResourceGroup` | string | The resource group the API policy was deployed into | -| `policyResourceId` | string | The resource ID of the API policy | +| `name` | string | The name of the API policy | +| `resourceGroupName` | string | The resource group the API policy was deployed into | +| `resourceId` | string | The resource ID of the API policy | ## Template references -- [Service/Apis/Policies](https://docs.microsoft.com/en-us/azure/templates/Microsoft.ApiManagement/2020-06-01-preview/service/apis/policies) +- [Service/Apis/Policies](https://docs.microsoft.com/en-us/azure/templates/Microsoft.ApiManagement/service/apis/policies) diff --git a/arm/Microsoft.ApiManagement/service/apis/readme.md b/arm/Microsoft.ApiManagement/service/apis/readme.md index 2bdad2dc22..1b70426602 100644 --- a/arm/Microsoft.ApiManagement/service/apis/readme.md +++ b/arm/Microsoft.ApiManagement/service/apis/readme.md @@ -65,11 +65,11 @@ The following resources are required to be able to deploy this resource. | Output Name | Type | Description | | :-- | :-- | :-- | -| `apiName` | string | The name of the API management service API | -| `apiResourceGroup` | string | The resource group the API management service API was deployed to | -| `apiResourceId` | string | The resource ID of the API management service API | +| `name` | string | The name of the API management service API | +| `resourceGroupName` | string | The resource group the API management service API was deployed to | +| `resourceId` | string | The resource ID of the API management service API | ## Template references -- [Service/Apis](https://docs.microsoft.com/en-us/azure/templates/Microsoft.ApiManagement/2020-06-01-preview/service/apis) -- [Service/Apis/Policies](https://docs.microsoft.com/en-us/azure/templates/Microsoft.ApiManagement/2020-06-01-preview/service/apis/policies) +- [Service/Apis](https://docs.microsoft.com/en-us/azure/templates/Microsoft.ApiManagement/service/apis) +- [Service/Apis/Policies](https://docs.microsoft.com/en-us/azure/templates/Microsoft.ApiManagement/service/apis/policies) diff --git a/arm/Microsoft.ApiManagement/service/authorizationServers/readme.md b/arm/Microsoft.ApiManagement/service/authorizationServers/readme.md index 0fd31e7eba..82e7a42152 100644 --- a/arm/Microsoft.ApiManagement/service/authorizationServers/readme.md +++ b/arm/Microsoft.ApiManagement/service/authorizationServers/readme.md @@ -41,10 +41,10 @@ The following resources are required to be able to deploy this resource. | Output Name | Type | Description | | :-- | :-- | :-- | -| `authorizationServerName` | string | The name of the API management service authorization server | -| `authorizationServerResourceGroup` | string | The resource group the API management service authorization server was deployed into | -| `authorizationServerResourceId` | string | The resource ID of the API management service authorization server | +| `name` | string | The name of the API management service authorization server | +| `resourceGroupName` | string | The resource group the API management service authorization server was deployed into | +| `resourceId` | string | The resource ID of the API management service authorization server | ## Template references -- [Service/Authorizationservers](https://docs.microsoft.com/en-us/azure/templates/Microsoft.ApiManagement/2020-06-01-preview/service/authorizationServers) +- [Service/Authorizationservers](https://docs.microsoft.com/en-us/azure/templates/Microsoft.ApiManagement/service/authorizationServers) diff --git a/arm/Microsoft.ApiManagement/service/backends/readme.md b/arm/Microsoft.ApiManagement/service/backends/readme.md index eaa4fa2a6b..84aa979e51 100644 --- a/arm/Microsoft.ApiManagement/service/backends/readme.md +++ b/arm/Microsoft.ApiManagement/service/backends/readme.md @@ -122,10 +122,10 @@ The following resources are required to be able to deploy this resource. | Output Name | Type | Description | | :-- | :-- | :-- | -| `backendName` | string | The name of the API management service backend | -| `backendResourceGroup` | string | The resource group the API management service backend was deployed into | -| `backendResourceId` | string | The resource ID of the API management service backend | +| `name` | string | The name of the API management service backend | +| `resourceGroupName` | string | The resource group the API management service backend was deployed into | +| `resourceId` | string | The resource ID of the API management service backend | ## Template references -- [Service/Backends](https://docs.microsoft.com/en-us/azure/templates/Microsoft.ApiManagement/2020-06-01-preview/service/backends) +- [Service/Backends](https://docs.microsoft.com/en-us/azure/templates/Microsoft.ApiManagement/service/backends) diff --git a/arm/Microsoft.ApiManagement/service/caches/readme.md b/arm/Microsoft.ApiManagement/service/caches/readme.md index e9c380964b..fbcb00e230 100644 --- a/arm/Microsoft.ApiManagement/service/caches/readme.md +++ b/arm/Microsoft.ApiManagement/service/caches/readme.md @@ -30,10 +30,10 @@ The following resources are required to be able to deploy this resource. | Output Name | Type | Description | | :-- | :-- | :-- | -| `cacheResourceGroup` | string | The resource group the API management service cache was deployed into | -| `cacheResourceId` | string | The resource ID of the API management service cache | -| `cacheResourceName` | string | The name of the API management service cache | +| `name` | string | The name of the API management service cache | +| `resourceGroupName` | string | The resource group the API management service cache was deployed into | +| `resourceId` | string | The resource ID of the API management service cache | ## Template references -- [Service/Caches](https://docs.microsoft.com/en-us/azure/templates/Microsoft.ApiManagement/2020-06-01-preview/service/caches) +- [Service/Caches](https://docs.microsoft.com/en-us/azure/templates/Microsoft.ApiManagement/service/caches) diff --git a/arm/Microsoft.ApiManagement/service/identityProviders/readme.md b/arm/Microsoft.ApiManagement/service/identityProviders/readme.md index 77c57af372..da8de2e272 100644 --- a/arm/Microsoft.ApiManagement/service/identityProviders/readme.md +++ b/arm/Microsoft.ApiManagement/service/identityProviders/readme.md @@ -31,10 +31,10 @@ This module deploys API Management Service Identity Provider. | Output Name | Type | Description | | :-- | :-- | :-- | -| `identityProviderName` | string | The name of the API management service identity provider | -| `identityProviderResourceGroup` | string | The resource group the API management service identity provider was deployed into | -| `identityProviderResourceId` | string | The resource ID of the API management service identity provider | +| `name` | string | The name of the API management service identity provider | +| `resourceGroupName` | string | The resource group the API management service identity provider was deployed into | +| `resourceId` | string | The resource ID of the API management service identity provider | ## Template references -- [Service/Identityproviders](https://docs.microsoft.com/en-us/azure/templates/Microsoft.ApiManagement/2020-06-01-preview/service/identityProviders) +- [Service/Identityproviders](https://docs.microsoft.com/en-us/azure/templates/Microsoft.ApiManagement/service/identityProviders) diff --git a/arm/Microsoft.ApiManagement/service/namedValues/readme.md b/arm/Microsoft.ApiManagement/service/namedValues/readme.md index a2ac2606fb..563aab8a53 100644 --- a/arm/Microsoft.ApiManagement/service/namedValues/readme.md +++ b/arm/Microsoft.ApiManagement/service/namedValues/readme.md @@ -42,10 +42,10 @@ The following resources are required to be able to deploy this resource. | Output Name | Type | Description | | :-- | :-- | :-- | -| `namedValueName` | string | The name of the named value | -| `namedValueResourceGroup` | string | The resource group the named value was deployed into | -| `namedValueResourceId` | string | The resource ID of the named value | +| `name` | string | The name of the named value | +| `resourceGroupName` | string | The resource group the named value was deployed into | +| `resourceId` | string | The resource ID of the named value | ## Template references -- [Service/Namedvalues](https://docs.microsoft.com/en-us/azure/templates/Microsoft.ApiManagement/2020-06-01-preview/service/namedValues) +- [Service/Namedvalues](https://docs.microsoft.com/en-us/azure/templates/Microsoft.ApiManagement/service/namedValues) diff --git a/arm/Microsoft.ApiManagement/service/policies/readme.md b/arm/Microsoft.ApiManagement/service/policies/readme.md index 0f0eea93ea..0f0e2df7b8 100644 --- a/arm/Microsoft.ApiManagement/service/policies/readme.md +++ b/arm/Microsoft.ApiManagement/service/policies/readme.md @@ -22,10 +22,10 @@ This module deploys API Management Service Policy. | Output Name | Type | Description | | :-- | :-- | :-- | -| `policyName` | string | The name of the API management service policy | -| `policyResourceGroup` | string | The resource group the API management service policy was deployed into | -| `policyResourceId` | string | The resource ID of the API management service policy | +| `name` | string | The name of the API management service policy | +| `resourceGroupName` | string | The resource group the API management service policy was deployed into | +| `resourceId` | string | The resource ID of the API management service policy | ## Template references -- [Service/Policies](https://docs.microsoft.com/en-us/azure/templates/Microsoft.ApiManagement/2020-06-01-preview/service/policies) +- [Service/Policies](https://docs.microsoft.com/en-us/azure/templates/Microsoft.ApiManagement/service/policies) diff --git a/arm/Microsoft.ApiManagement/service/portalsettings/readme.md b/arm/Microsoft.ApiManagement/service/portalsettings/readme.md index f6fb9eb86e..46220ba7fd 100644 --- a/arm/Microsoft.ApiManagement/service/portalsettings/readme.md +++ b/arm/Microsoft.ApiManagement/service/portalsettings/readme.md @@ -21,9 +21,9 @@ This module deploys API Management Service Portal Setting. | Output Name | Type | Description | | :-- | :-- | :-- | -| `portalSettingsName` | string | The name of the API management service portal setting | -| `portalSettingsResourceGroup` | string | The resource group the API management service portal setting was deployed into | -| `portalSettingsResourceId` | string | The resource ID of the API management service portal setting | +| `name` | string | The name of the API management service portal setting | +| `resourceGroupName` | string | The resource group the API management service portal setting was deployed into | +| `resourceId` | string | The resource ID of the API management service portal setting | ## Template references diff --git a/arm/Microsoft.ApiManagement/service/products/apis/readme.md b/arm/Microsoft.ApiManagement/service/products/apis/readme.md index 23144493f4..83762feb94 100644 --- a/arm/Microsoft.ApiManagement/service/products/apis/readme.md +++ b/arm/Microsoft.ApiManagement/service/products/apis/readme.md @@ -21,10 +21,10 @@ This module deploys API Management Service Product APIs. | Output Name | Type | Description | | :-- | :-- | :-- | -| `apiName` | string | The name of the product API | -| `apiResourceGroup` | string | The resource group the product API was deployed into | -| `apiResourceId` | string | The resource ID of the product API | +| `name` | string | The name of the product API | +| `resourceGroupName` | string | The resource group the product API was deployed into | +| `resourceId` | string | The resource ID of the product API | ## Template references -- [Service/Products/Apis](https://docs.microsoft.com/en-us/azure/templates/Microsoft.ApiManagement/2020-06-01-preview/service/products/apis) +- [Service/Products/Apis](https://docs.microsoft.com/en-us/azure/templates/Microsoft.ApiManagement/service/products/apis) diff --git a/arm/Microsoft.ApiManagement/service/products/groups/readme.md b/arm/Microsoft.ApiManagement/service/products/groups/readme.md index a568fbe3c7..b9d932d7d1 100644 --- a/arm/Microsoft.ApiManagement/service/products/groups/readme.md +++ b/arm/Microsoft.ApiManagement/service/products/groups/readme.md @@ -21,10 +21,10 @@ This module deploys API Management Service Product Groups. | Output Name | Type | Description | | :-- | :-- | :-- | -| `groupName` | string | The name of the product group | -| `groupResourceGroup` | string | The resource group the product group was deployed into | -| `groupResourceId` | string | The resource ID of the product group | +| `name` | string | The name of the product group | +| `resourceGroupName` | string | The resource group the product group was deployed into | +| `resourceId` | string | The resource ID of the product group | ## Template references -- [Service/Products/Groups](https://docs.microsoft.com/en-us/azure/templates/Microsoft.ApiManagement/2020-06-01-preview/service/products/groups) +- [Service/Products/Groups](https://docs.microsoft.com/en-us/azure/templates/Microsoft.ApiManagement/service/products/groups) diff --git a/arm/Microsoft.ApiManagement/service/readme.md b/arm/Microsoft.ApiManagement/service/readme.md index 36768ae46d..2b96fbc0cc 100644 --- a/arm/Microsoft.ApiManagement/service/readme.md +++ b/arm/Microsoft.ApiManagement/service/readme.md @@ -140,9 +140,9 @@ You can specify multiple user assigned identities to a resource by providing add | Output Name | Type | Description | | :-- | :-- | :-- | -| `serviceName` | string | The name of the API management service | -| `serviceResourceGroup` | string | The resource group the API management service was deployed into | -| `serviceResourceId` | string | The resource ID of the API management service | +| `name` | string | The name of the API management service | +| `resourceGroupName` | string | The resource group the API management service was deployed into | +| `resourceId` | string | The resource ID of the API management service | | `systemAssignedPrincipalId` | string | The principal ID of the system assigned identity. | ## Considerations diff --git a/arm/Microsoft.ApiManagement/service/subscriptions/readme.md b/arm/Microsoft.ApiManagement/service/subscriptions/readme.md index eeae901ec6..c46a861c97 100644 --- a/arm/Microsoft.ApiManagement/service/subscriptions/readme.md +++ b/arm/Microsoft.ApiManagement/service/subscriptions/readme.md @@ -32,10 +32,10 @@ The following resources are required to be able to deploy this resource. | Output Name | Type | Description | | :-- | :-- | :-- | -| `subscriptionName` | string | The name of the API management service subscription | -| `subscriptionResourceGroup` | string | The resource group the API management service subscription was deployed into | -| `subscriptionResourceId` | string | The resource ID of the API management service subscription | +| `name` | string | The name of the API management service subscription | +| `resourceGroupName` | string | The resource group the API management service subscription was deployed into | +| `resourceId` | string | The resource ID of the API management service subscription | ## Template references -- [Service/Subscriptions](https://docs.microsoft.com/en-us/azure/templates/Microsoft.ApiManagement/2020-06-01-preview/service/subscriptions) +- [Service/Subscriptions](https://docs.microsoft.com/en-us/azure/templates/Microsoft.ApiManagement/service/subscriptions) From 40943a9cb9b704af136d823fcac35361c855e1af Mon Sep 17 00:00:00 2001 From: Sergio Navar Date: Wed, 12 Jan 2022 10:54:37 -0600 Subject: [PATCH 03/14] Update outputs --- arm/Microsoft.ApiManagement/service/products/deploy.bicep | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/arm/Microsoft.ApiManagement/service/products/deploy.bicep b/arm/Microsoft.ApiManagement/service/products/deploy.bicep index e7008dab2e..653465caa2 100644 --- a/arm/Microsoft.ApiManagement/service/products/deploy.bicep +++ b/arm/Microsoft.ApiManagement/service/products/deploy.bicep @@ -82,7 +82,7 @@ output name string = product.name output resourceGroupName string = resourceGroup().name @description('The Resources IDs of the API management service product APIs') -output productApisResourceIds array = [for productApi in apis: resourceId('Microsoft.ApiManagement/service/products/apis', apiManagementServiceName, name, productApi.name)] +output apisResourceIds array = [for productApi in apis: resourceId('Microsoft.ApiManagement/service/products/apis', apiManagementServiceName, name, productApi.name)] @description('The Resources IDs of the API management service product groups') -output productGroupsResourceIds array = [for productGroup in groups: resourceId('Microsoft.ApiManagement/service/products/groups', apiManagementServiceName, name, productGroup.name)] +output groupsResourceIds array = [for productGroup in groups: resourceId('Microsoft.ApiManagement/service/products/groups', apiManagementServiceName, name, productGroup.name)] From b96073dc4a0d2271c0113cee16f8e5c8048e60e8 Mon Sep 17 00:00:00 2001 From: Sergio Navar Date: Wed, 12 Jan 2022 11:03:26 -0600 Subject: [PATCH 04/14] Update readme.md --- arm/Microsoft.ApiManagement/service/products/readme.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/arm/Microsoft.ApiManagement/service/products/readme.md b/arm/Microsoft.ApiManagement/service/products/readme.md index 3cc6a639ba..a74caad91c 100644 --- a/arm/Microsoft.ApiManagement/service/products/readme.md +++ b/arm/Microsoft.ApiManagement/service/products/readme.md @@ -36,11 +36,11 @@ The following resources are required to be able to deploy this resource. | Output Name | Type | Description | | :-- | :-- | :-- | -| `productApisResourceIds` | array | The Resources IDs of the API management service product APIs | -| `productGroupsResourceIds` | array | The Resources IDs of the API management service product groups | -| `productName` | string | The name of the API management service product | -| `productResourceGroup` | string | The resource group the API management service product was deployed into | -| `productResourceId` | string | The resource ID of the API management service product | +| `apisResourceIds` | array | The Resources IDs of the API management service product APIs | +| `groupsResourceIds` | array | The Resources IDs of the API management service product groups | +| `name` | string | The name of the API management service product | +| `resourceGroupName` | string | The resource group the API management service product was deployed into | +| `resourceId` | string | The resource ID of the API management service product | ## Template references From dec3dc89863c235d97d4dbbff0db1e772a32a49b Mon Sep 17 00:00:00 2001 From: Sergio Navar <47188710+senavar@users.noreply.github.com> Date: Thu, 13 Jan 2022 15:54:41 -0600 Subject: [PATCH 05/14] Update arm/Microsoft.ApiManagement/service/products/deploy.bicep Co-authored-by: Alexander Sehr --- arm/Microsoft.ApiManagement/service/products/deploy.bicep | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arm/Microsoft.ApiManagement/service/products/deploy.bicep b/arm/Microsoft.ApiManagement/service/products/deploy.bicep index 653465caa2..515e5dfa71 100644 --- a/arm/Microsoft.ApiManagement/service/products/deploy.bicep +++ b/arm/Microsoft.ApiManagement/service/products/deploy.bicep @@ -82,7 +82,7 @@ output name string = product.name output resourceGroupName string = resourceGroup().name @description('The Resources IDs of the API management service product APIs') -output apisResourceIds array = [for productApi in apis: resourceId('Microsoft.ApiManagement/service/products/apis', apiManagementServiceName, name, productApi.name)] +output apiResourceIds array = [for productApi in apis: resourceId('Microsoft.ApiManagement/service/products/apis', apiManagementServiceName, name, productApi.name)] @description('The Resources IDs of the API management service product groups') output groupsResourceIds array = [for productGroup in groups: resourceId('Microsoft.ApiManagement/service/products/groups', apiManagementServiceName, name, productGroup.name)] From 26c3e52a910a8083e5c18abeb565341752e1debf Mon Sep 17 00:00:00 2001 From: Sergio Navar <47188710+senavar@users.noreply.github.com> Date: Thu, 13 Jan 2022 15:54:49 -0600 Subject: [PATCH 06/14] Update arm/Microsoft.ApiManagement/service/products/deploy.bicep Co-authored-by: Alexander Sehr --- arm/Microsoft.ApiManagement/service/products/deploy.bicep | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arm/Microsoft.ApiManagement/service/products/deploy.bicep b/arm/Microsoft.ApiManagement/service/products/deploy.bicep index 515e5dfa71..7a09ea6052 100644 --- a/arm/Microsoft.ApiManagement/service/products/deploy.bicep +++ b/arm/Microsoft.ApiManagement/service/products/deploy.bicep @@ -85,4 +85,4 @@ output resourceGroupName string = resourceGroup().name output apiResourceIds array = [for productApi in apis: resourceId('Microsoft.ApiManagement/service/products/apis', apiManagementServiceName, name, productApi.name)] @description('The Resources IDs of the API management service product groups') -output groupsResourceIds array = [for productGroup in groups: resourceId('Microsoft.ApiManagement/service/products/groups', apiManagementServiceName, name, productGroup.name)] +output groupResourceIds array = [for productGroup in groups: resourceId('Microsoft.ApiManagement/service/products/groups', apiManagementServiceName, name, productGroup.name)] From dae2fb28390e37a12dd16195d8d4edc4698923d5 Mon Sep 17 00:00:00 2001 From: Sergio Navar <47188710+senavar@users.noreply.github.com> Date: Thu, 13 Jan 2022 15:54:55 -0600 Subject: [PATCH 07/14] Update arm/Microsoft.ApiManagement/service/products/readme.md Co-authored-by: Alexander Sehr --- arm/Microsoft.ApiManagement/service/products/readme.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arm/Microsoft.ApiManagement/service/products/readme.md b/arm/Microsoft.ApiManagement/service/products/readme.md index a74caad91c..2a367b03d6 100644 --- a/arm/Microsoft.ApiManagement/service/products/readme.md +++ b/arm/Microsoft.ApiManagement/service/products/readme.md @@ -37,7 +37,7 @@ The following resources are required to be able to deploy this resource. | Output Name | Type | Description | | :-- | :-- | :-- | | `apisResourceIds` | array | The Resources IDs of the API management service product APIs | -| `groupsResourceIds` | array | The Resources IDs of the API management service product groups | +| `groupResourceIds` | array | The Resources IDs of the API management service product groups | | `name` | string | The name of the API management service product | | `resourceGroupName` | string | The resource group the API management service product was deployed into | | `resourceId` | string | The resource ID of the API management service product | From 69dc7f05b10fb15944626adc3fcb9686ffade416 Mon Sep 17 00:00:00 2001 From: Sergio Navar <47188710+senavar@users.noreply.github.com> Date: Thu, 13 Jan 2022 15:55:04 -0600 Subject: [PATCH 08/14] Update arm/Microsoft.ApiManagement/service/products/readme.md Co-authored-by: Alexander Sehr --- arm/Microsoft.ApiManagement/service/products/readme.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arm/Microsoft.ApiManagement/service/products/readme.md b/arm/Microsoft.ApiManagement/service/products/readme.md index 2a367b03d6..a54f954a06 100644 --- a/arm/Microsoft.ApiManagement/service/products/readme.md +++ b/arm/Microsoft.ApiManagement/service/products/readme.md @@ -36,7 +36,7 @@ The following resources are required to be able to deploy this resource. | Output Name | Type | Description | | :-- | :-- | :-- | -| `apisResourceIds` | array | The Resources IDs of the API management service product APIs | +| `apiResourceIds` | array | The Resources IDs of the API management service product APIs | | `groupResourceIds` | array | The Resources IDs of the API management service product groups | | `name` | string | The name of the API management service product | | `resourceGroupName` | string | The resource group the API management service product was deployed into | From 31fdc35373f935d9dcc37a92bc2ecdc6ac6e2724 Mon Sep 17 00:00:00 2001 From: Sergio Navar <47188710+senavar@users.noreply.github.com> Date: Thu, 13 Jan 2022 15:57:30 -0600 Subject: [PATCH 09/14] Update arm/Microsoft.ApiManagement/service/.bicep/nested_authorizationServers.bicep Co-authored-by: Erika Gressi <56914614+eriqua@users.noreply.github.com> --- .../service/.bicep/nested_authorizationServers.bicep | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arm/Microsoft.ApiManagement/service/.bicep/nested_authorizationServers.bicep b/arm/Microsoft.ApiManagement/service/.bicep/nested_authorizationServers.bicep index 3171c67848..c6674d0c41 100644 --- a/arm/Microsoft.ApiManagement/service/.bicep/nested_authorizationServers.bicep +++ b/arm/Microsoft.ApiManagement/service/.bicep/nested_authorizationServers.bicep @@ -100,7 +100,7 @@ module authorizationServer '../authorizationServers/deploy.bicep' = { } @description('The name of the API management service authorization server') -output name string = authorizationServer.outputs.authorizationServerName +output name string = authorizationServer.outputs.name @description('The resource ID of the API management service authorization server') output resourceId string = authorizationServer.outputs.authorizationServerResourceId From cff1138fdf96f65c077e4620b2a541b2e1e03d3f Mon Sep 17 00:00:00 2001 From: Sergio Navar <47188710+senavar@users.noreply.github.com> Date: Thu, 13 Jan 2022 15:57:34 -0600 Subject: [PATCH 10/14] Update arm/Microsoft.ApiManagement/service/.bicep/nested_authorizationServers.bicep Co-authored-by: Erika Gressi <56914614+eriqua@users.noreply.github.com> --- .../service/.bicep/nested_authorizationServers.bicep | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arm/Microsoft.ApiManagement/service/.bicep/nested_authorizationServers.bicep b/arm/Microsoft.ApiManagement/service/.bicep/nested_authorizationServers.bicep index c6674d0c41..b20e3cd1a9 100644 --- a/arm/Microsoft.ApiManagement/service/.bicep/nested_authorizationServers.bicep +++ b/arm/Microsoft.ApiManagement/service/.bicep/nested_authorizationServers.bicep @@ -103,7 +103,7 @@ module authorizationServer '../authorizationServers/deploy.bicep' = { output name string = authorizationServer.outputs.name @description('The resource ID of the API management service authorization server') -output resourceId string = authorizationServer.outputs.authorizationServerResourceId +output resourceId string = authorizationServer.outputs.resourceId @description('The resource group the API management service authorization server was deployed into') output resourceGroupName string = authorizationServer.outputs.authorizationServerResourceGroup From 8a2e7c844d79097af523325ceef7ebbdb90741b9 Mon Sep 17 00:00:00 2001 From: Sergio Navar <47188710+senavar@users.noreply.github.com> Date: Thu, 13 Jan 2022 15:57:39 -0600 Subject: [PATCH 11/14] Update arm/Microsoft.ApiManagement/service/.bicep/nested_authorizationServers.bicep Co-authored-by: Erika Gressi <56914614+eriqua@users.noreply.github.com> --- .../service/.bicep/nested_authorizationServers.bicep | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arm/Microsoft.ApiManagement/service/.bicep/nested_authorizationServers.bicep b/arm/Microsoft.ApiManagement/service/.bicep/nested_authorizationServers.bicep index b20e3cd1a9..f8766ec1f6 100644 --- a/arm/Microsoft.ApiManagement/service/.bicep/nested_authorizationServers.bicep +++ b/arm/Microsoft.ApiManagement/service/.bicep/nested_authorizationServers.bicep @@ -106,4 +106,4 @@ output name string = authorizationServer.outputs.name output resourceId string = authorizationServer.outputs.resourceId @description('The resource group the API management service authorization server was deployed into') -output resourceGroupName string = authorizationServer.outputs.authorizationServerResourceGroup +output resourceGroupName string = authorizationServer.outputs.resourceGroupName From 2d22b80285e01035bac4396adf78a63c0e7c270f Mon Sep 17 00:00:00 2001 From: Sergio Navar Date: Fri, 14 Jan 2022 10:37:21 -0600 Subject: [PATCH 12/14] Update readme --- arm/Microsoft.ApiManagement/service/products/readme.md | 1 + arm/Microsoft.ApiManagement/service/readme.md | 3 --- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/arm/Microsoft.ApiManagement/service/products/readme.md b/arm/Microsoft.ApiManagement/service/products/readme.md index 9026f639fb..43f9e8139f 100644 --- a/arm/Microsoft.ApiManagement/service/products/readme.md +++ b/arm/Microsoft.ApiManagement/service/products/readme.md @@ -6,6 +6,7 @@ This module deploys API Management Service Products. | Resource Type | API Version | | :-- | :-- | +| `Microsoft.ApiManagement/service` | 2021-08-01 | | `Microsoft.ApiManagement/service/products` | 2021-08-01 | | `Microsoft.ApiManagement/service/products/apis` | 2021-08-01 | | `Microsoft.ApiManagement/service/products/groups` | 2021-08-01 | diff --git a/arm/Microsoft.ApiManagement/service/readme.md b/arm/Microsoft.ApiManagement/service/readme.md index 24cdb6fca8..9da5ae59ad 100644 --- a/arm/Microsoft.ApiManagement/service/readme.md +++ b/arm/Microsoft.ApiManagement/service/readme.md @@ -8,7 +8,6 @@ This module deploys an API management service. | :-- | :-- | | `Microsoft.ApiManagement/service` | 2021-08-01 | | `Microsoft.ApiManagement/service/apis` | 2021-08-01 | -| `Microsoft.ApiManagement/service/apis/policies` | 2021-08-01 | | `Microsoft.ApiManagement/service/apiVersionSets` | 2021-08-01 | | `Microsoft.ApiManagement/service/authorizationServers` | 2021-08-01 | | `Microsoft.ApiManagement/service/backends` | 2021-08-01 | @@ -18,8 +17,6 @@ This module deploys an API management service. | `Microsoft.ApiManagement/service/policies` | 2021-08-01 | | `Microsoft.ApiManagement/service/portalsettings` | 2021-08-01 | | `Microsoft.ApiManagement/service/products` | 2021-08-01 | -| `Microsoft.ApiManagement/service/products/apis` | 2021-08-01 | -| `Microsoft.ApiManagement/service/products/groups` | 2021-08-01 | | `Microsoft.ApiManagement/service/subscriptions` | 2021-08-01 | | `Microsoft.Authorization/locks` | 2017-04-01 | | `Microsoft.Authorization/roleAssignments` | 2021-04-01-preview | From 38fa144f78812ce3a14720831963bac1235cd43b Mon Sep 17 00:00:00 2001 From: Sergio Navar Date: Fri, 14 Jan 2022 10:42:39 -0600 Subject: [PATCH 13/14] Revert "Update readme" This reverts commit 2d22b80285e01035bac4396adf78a63c0e7c270f. --- arm/Microsoft.ApiManagement/service/products/readme.md | 1 - arm/Microsoft.ApiManagement/service/readme.md | 3 +++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/arm/Microsoft.ApiManagement/service/products/readme.md b/arm/Microsoft.ApiManagement/service/products/readme.md index 43f9e8139f..9026f639fb 100644 --- a/arm/Microsoft.ApiManagement/service/products/readme.md +++ b/arm/Microsoft.ApiManagement/service/products/readme.md @@ -6,7 +6,6 @@ This module deploys API Management Service Products. | Resource Type | API Version | | :-- | :-- | -| `Microsoft.ApiManagement/service` | 2021-08-01 | | `Microsoft.ApiManagement/service/products` | 2021-08-01 | | `Microsoft.ApiManagement/service/products/apis` | 2021-08-01 | | `Microsoft.ApiManagement/service/products/groups` | 2021-08-01 | diff --git a/arm/Microsoft.ApiManagement/service/readme.md b/arm/Microsoft.ApiManagement/service/readme.md index 9da5ae59ad..24cdb6fca8 100644 --- a/arm/Microsoft.ApiManagement/service/readme.md +++ b/arm/Microsoft.ApiManagement/service/readme.md @@ -8,6 +8,7 @@ This module deploys an API management service. | :-- | :-- | | `Microsoft.ApiManagement/service` | 2021-08-01 | | `Microsoft.ApiManagement/service/apis` | 2021-08-01 | +| `Microsoft.ApiManagement/service/apis/policies` | 2021-08-01 | | `Microsoft.ApiManagement/service/apiVersionSets` | 2021-08-01 | | `Microsoft.ApiManagement/service/authorizationServers` | 2021-08-01 | | `Microsoft.ApiManagement/service/backends` | 2021-08-01 | @@ -17,6 +18,8 @@ This module deploys an API management service. | `Microsoft.ApiManagement/service/policies` | 2021-08-01 | | `Microsoft.ApiManagement/service/portalsettings` | 2021-08-01 | | `Microsoft.ApiManagement/service/products` | 2021-08-01 | +| `Microsoft.ApiManagement/service/products/apis` | 2021-08-01 | +| `Microsoft.ApiManagement/service/products/groups` | 2021-08-01 | | `Microsoft.ApiManagement/service/subscriptions` | 2021-08-01 | | `Microsoft.Authorization/locks` | 2017-04-01 | | `Microsoft.Authorization/roleAssignments` | 2021-04-01-preview | From 3a2402cabe062d53e3adf3f6af92e0db4cda7a5f Mon Sep 17 00:00:00 2001 From: MrMCake Date: Sat, 15 Jan 2022 14:17:20 +0100 Subject: [PATCH 14/14] Fixed product outputs --- arm/Microsoft.ApiManagement/service/products/deploy.bicep | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/arm/Microsoft.ApiManagement/service/products/deploy.bicep b/arm/Microsoft.ApiManagement/service/products/deploy.bicep index 7038781db3..6c5fd141af 100644 --- a/arm/Microsoft.ApiManagement/service/products/deploy.bicep +++ b/arm/Microsoft.ApiManagement/service/products/deploy.bicep @@ -54,7 +54,7 @@ resource product 'Microsoft.ApiManagement/service/products@2021-08-01' = { } } -module api 'apis/deploy.bicep' = [for (api, index) in apis: { +module product_apis 'apis/deploy.bicep' = [for (api, index) in apis: { name: '${deployment().name}-Api-${index}' params: { apiManagementServiceName: apiManagementServiceName @@ -63,7 +63,7 @@ module api 'apis/deploy.bicep' = [for (api, index) in apis: { } }] -module group 'groups/deploy.bicep' = [for (group, index) in groups: { +module product_groups 'groups/deploy.bicep' = [for (group, index) in groups: { name: '${deployment().name}-Group-${index}' params: { apiManagementServiceName: apiManagementServiceName @@ -82,7 +82,7 @@ output name string = product.name output resourceGroupName string = resourceGroup().name @description('The Resources IDs of the API management service product APIs') -output apiResourceIds array = [for productApi in apis: resourceId('Microsoft.ApiManagement/service/products/apis', apiManagementServiceName, name, productApi.name)] +output apiResourceIds array = [for index in range(0, length(apis)): product_apis[index].outputs.resourceId] @description('The Resources IDs of the API management service product groups') -output groupResourceIds array = [for productGroup in groups: resourceId('Microsoft.ApiManagement/service/products/groups', apiManagementServiceName, name, productGroup.name)] +output groupResourceIds array = [for index in range(0, length(groups)): product_groups[index].outputs.resourceId]