From 7f407c33df4c782f775e3cfdfa36e2330adb3682 Mon Sep 17 00:00:00 2001 From: MrMCake Date: Fri, 9 Sep 2022 10:29:11 +0200 Subject: [PATCH 1/2] Smaller improvements & reduced dependency on CARML folder structure --- utilities/tools/Set-ModuleReadMe.ps1 | 78 ++++++++++++++++------------ 1 file changed, 46 insertions(+), 32 deletions(-) diff --git a/utilities/tools/Set-ModuleReadMe.ps1 b/utilities/tools/Set-ModuleReadMe.ps1 index 25d22f3fff..25923c3d62 100644 --- a/utilities/tools/Set-ModuleReadMe.ps1 +++ b/utilities/tools/Set-ModuleReadMe.ps1 @@ -310,6 +310,12 @@ Add module references (cross-references) to the module's readme .DESCRIPTION Add module references (cross-references) to the module's readme. This includes both local (i.e., file path), as well as remote references (e.g., ACR) +.PARAMETER ModuleRoot +Mandatory. The file path to the module's root + +.PARAMETER FullModuleIdentifier +Mandatory. The full identifier of the module (i.e., ProviderNamespace + ResourceType) + .PARAMETER TemplateFileContent Mandatory. The template file content object to crawl data from @@ -320,13 +326,19 @@ Mandatory. The readme file content array to update Optional. The identifier of the 'outputs' section. Defaults to '## Cross-referenced modules' .EXAMPLE -Set-CrossReferencesSection -TemplateFileContent @{ resource = @{}; ... } -ReadMeFileContent @('# Title', '', '## Section 1', ...) +Set-CrossReferencesSection -ModuleRoot 'C:/Microsoft.KeyVault/vaults' -FullModuleIdentifier 'Microsoft.KeyVault/vaults' -TemplateFileContent @{ resource = @{}; ... } -ReadMeFileContent @('# Title', '', '## Section 1', ...) Update the given readme file's 'Cross-referenced modules' section based on the given template file content #> function Set-CrossReferencesSection { [CmdletBinding(SupportsShouldProcess)] param ( + [Parameter(Mandatory = $true)] + [string] $ModuleRoot, + + [Parameter(Mandatory = $true)] + [string] $FullModuleIdentifier, + [Parameter(Mandatory)] [hashtable] $TemplateFileContent, @@ -339,9 +351,6 @@ function Set-CrossReferencesSection { . (Join-Path (Split-Path $PSScriptRoot -Parent) 'tools' 'Get-CrossReferencedModuleList.ps1') - $moduleRoot = Split-Path $TemplateFilePath -Parent - $resourceTypeIdentifier = $moduleRoot.Replace('\', '/').Split('/modules/')[1].TrimStart('/') - # Process content $SectionContent = [System.Collections.ArrayList]@( 'This section gives you an overview of all local-referenced module files (i.e., other CARML modules that are referenced in this module) and all remote-referenced files (i.e., Bicep modules that are referenced from a Bicep Registry or Template Specs).', @@ -350,7 +359,7 @@ function Set-CrossReferencesSection { '| :-- | :-- |' ) - $dependencies = (Get-CrossReferencedModuleList)[$resourceTypeIdentifier] + $dependencies = (Get-CrossReferencedModuleList)[$FullModuleIdentifier] if ($dependencies.Keys -contains 'localPathReferences' -and $dependencies['localPathReferences']) { foreach ($reference in ($dependencies['localPathReferences'] | Sort-Object)) { @@ -823,15 +832,15 @@ Generate 'Deployment examples' for the ReadMe out of the parameter files current .DESCRIPTION Generate 'Deployment examples' for the ReadMe out of the parameter files currently used to test the template -.PARAMETER TemplateFilePath -Mandatory. The path to the template file +.PARAMETER ModuleRoot +Mandatory. The file path to the module's root + +.PARAMETER FullModuleIdentifier +Mandatory. The full identifier of the module (i.e., ProviderNamespace + ResourceType) .PARAMETER TemplateFileContent Mandatory. The template file content object to crawl data from -.PARAMETER TemplateFilePath -Mandatory. The path to the template file - .PARAMETER ReadMeFileContent Mandatory. The readme file content array to update @@ -845,7 +854,7 @@ Optional. A switch to control whether or not to add a ARM-JSON-Parameter file ex Optional. A switch to control whether or not to add a Bicep deployment example. Defaults to true. .EXAMPLE -Set-DeploymentExamplesSection -TemplateFileContent @{ resource = @{}; ... } -TemplateFilePath 'C:/deploy.bicep' -ReadMeFileContent @('# Title', '', '## Section 1', ...) +Set-DeploymentExamplesSection -ModuleRoot 'C:/Microsoft.KeyVault/vaults' -FullModuleIdentifier 'Microsoft.KeyVault/vaults' -TemplateFileContent @{ resource = @{}; ... } -ReadMeFileContent @('# Title', '', '## Section 1', ...) Update the given readme file's 'Deployment Examples' section based on the given template file content #> @@ -854,7 +863,10 @@ function Set-DeploymentExamplesSection { [CmdletBinding(SupportsShouldProcess)] param ( [Parameter(Mandatory = $true)] - [string] $TemplateFilePath, + [string] $ModuleRoot, + + [Parameter(Mandatory = $true)] + [string] $FullModuleIdentifier, [Parameter(Mandatory)] [hashtable] $TemplateFileContent, @@ -879,19 +891,17 @@ function Set-DeploymentExamplesSection { $SectionContent = [System.Collections.ArrayList]@( 'The following module usage examples are retrieved from the content of the files hosted in the module''s `.test` folder.', ' >**Note**: The name of each example is based on the name of the file from which it is taken.', + '', ' >**Note**: Each example lists all the required parameters first, followed by the rest - each in alphabetical order.', '' ) - $moduleRoot = Split-Path $TemplateFilePath -Parent - $fullIdentifier = $moduleRoot.Replace('\', '/').Split('/modules/')[1].TrimStart('/') - # Get resource type and make first letter upper case. Requires manual handling as ToTitleCase lowercases everything but the first letter - $providerNamespace = ($fullIdentifier.Split('/')[0] -split '\.' | ForEach-Object { $_.Substring(0, 1).ToUpper() + $_.Substring(1) }) -join '.' - $resourceType = $fullIdentifier.Split('/')[1] + $providerNamespace = ($fullModuleIdentifier.Split('/')[0] -split '\.' | ForEach-Object { $_.Substring(0, 1).ToUpper() + $_.Substring(1) }) -join '.' + $resourceType = $fullModuleIdentifier.Split('/')[1] $resourceTypeUpper = $resourceType.Substring(0, 1).ToUpper() + $resourceType.Substring(1) - $resourceTypeIdentifier = "$providerNamespace/$resourceType" + $FullModuleIdentifier = "$providerNamespace/$resourceType" $testFilePaths = Get-ModuleTestFileList -ModulePath $moduleRoot | ForEach-Object { Join-Path $moduleRoot $_ } @@ -948,7 +958,7 @@ function Set-DeploymentExamplesSection { # [3/6] Format header, remove scope property & any empty line $rawBicepExample = $rawBicepExampleString -split '\n' - $rawBicepExample[0] = "module $resourceType './$resourceTypeIdentifier/deploy.bicep' = {" + $rawBicepExample[0] = "module $resourceType './$FullModuleIdentifier/deploy.bicep' = {" $rawBicepExample = $rawBicepExample | Where-Object { $_ -notmatch 'scope: *' } | Where-Object { -not [String]::IsNullOrEmpty($_) } # [4/6] Extract param block @@ -1144,7 +1154,7 @@ function Set-DeploymentExamplesSection { '' '```bicep', $extendedKeyVaultReferences, - "module $resourceType './$resourceTypeIdentifier/deploy.bicep' = {" + "module $resourceType './$FullModuleIdentifier/deploy.bicep' = {" " name: '`${uniqueString(deployment().name)}-$resourceTypeUpper'" ' params: {' $bicepExample.TrimEnd(), @@ -1373,20 +1383,21 @@ function Set-ModuleReadMe { throw "Failed to compile [$TemplateFilePath]" } - $fullResourcePath = (Split-Path $TemplateFilePath -Parent).Replace('\', '/').split('/modules/')[1] + $moduleRoot = Split-Path $TemplateFilePath -Parent + $fullModuleIdentifier = 'Microsoft.{0}' -f $moduleRoot.Replace('\', '/').split('/Microsoft.')[1] # Check readme if (-not (Test-Path $ReadMeFilePath) -or ([String]::IsNullOrEmpty((Get-Content $ReadMeFilePath -Raw)))) { # Create new readme file # Build resource name - $serviceIdentifiers = $fullResourcePath.Replace('Microsoft.', '').Replace('/.', '/').Split('/') + $serviceIdentifiers = $fullModuleIdentifier.Replace('Microsoft.', '').Replace('/.', '/').Split('/') $serviceIdentifiers = $serviceIdentifiers | ForEach-Object { $_.substring(0, 1).toupper() + $_.substring(1) } $serviceIdentifiers = $serviceIdentifiers | ForEach-Object { $_ -creplace '(?<=\w)([A-Z])', '$1' } $assumedResourceName = $serviceIdentifiers -join ' ' $initialContent = @( - "# $assumedResourceName ``[$fullResourcePath]``", + "# $assumedResourceName ``[$fullModuleIdentifier]``", '', "This module deploys $assumedResourceName." '// TODO: Replace Resource and fill in description', @@ -1408,14 +1419,14 @@ function Set-ModuleReadMe { } # Update title - if ($TemplateFilePath.Replace('\', '/') -like '*/modules/*') { + if ($TemplateFilePath.Replace('\', '/') -like '*/deploy.*') { - if ($readMeFileContent[0] -notlike "*``[$fullResourcePath]``") { + if ($readMeFileContent[0] -notlike "*``[$fullModuleIdentifier]``") { # Cut outdated $readMeFileContent[0] = $readMeFileContent[0].Split('`[')[0] # Add latest - $readMeFileContent[0] = '{0} `[{1}]`' -f $readMeFileContent[0], $fullResourcePath + $readMeFileContent[0] = '{0} `[{1}]`' -f $readMeFileContent[0], $fullModuleIdentifier } # Remove excess whitespace $readMeFileContent[0] = $readMeFileContent[0] -replace '\s+', ' ' @@ -1456,20 +1467,23 @@ function Set-ModuleReadMe { # Handle [CrossReferences] section # ======================== $inputObject = @{ - ReadMeFileContent = $readMeFileContent - TemplateFileContent = $templateFileContent + ModuleRoot = $ModuleRoot + FullModuleIdentifier = $fullModuleIdentifier + ReadMeFileContent = $readMeFileContent + TemplateFileContent = $templateFileContent } $readMeFileContent = Set-CrossReferencesSection @inputObject } - $isTopLevelModule = $TemplateFilePath.Replace('\', '/').Split('/modules/')[1].Split('/').Count -eq 3 # //deploy.* + $isTopLevelModule = $fullModuleIdentifier.Split('/').Count -eq 2 # / if ($SectionsToRefresh -contains 'Deployment examples' -and $isTopLevelModule) { # Handle [Deployment examples] section # =================================== $inputObject = @{ - ReadMeFileContent = $readMeFileContent - TemplateFilePath = $TemplateFilePath - TemplateFileContent = $templateFileContent + ModuleRoot = $ModuleRoot + FullModuleIdentifier = $fullModuleIdentifier + ReadMeFileContent = $readMeFileContent + TemplateFileContent = $templateFileContent } $readMeFileContent = Set-DeploymentExamplesSection @inputObject } From f1b2298abc240dda80a4a17d2b3d2008457df9e8 Mon Sep 17 00:00:00 2001 From: MrMCake Date: Fri, 9 Sep 2022 10:46:31 +0200 Subject: [PATCH 2/2] Refreshed readmes --- modules/Microsoft.AAD/DomainServices/readme.md | 1 + modules/Microsoft.AnalysisServices/servers/readme.md | 1 + modules/Microsoft.ApiManagement/service/readme.md | 1 + modules/Microsoft.AppConfiguration/configurationStores/readme.md | 1 + modules/Microsoft.Authorization/locks/readme.md | 1 + modules/Microsoft.Authorization/policyAssignments/readme.md | 1 + modules/Microsoft.Authorization/policyDefinitions/readme.md | 1 + modules/Microsoft.Authorization/policyExemptions/readme.md | 1 + modules/Microsoft.Authorization/policySetDefinitions/readme.md | 1 + modules/Microsoft.Authorization/roleAssignments/readme.md | 1 + modules/Microsoft.Authorization/roleDefinitions/readme.md | 1 + modules/Microsoft.Automation/automationAccounts/readme.md | 1 + modules/Microsoft.Batch/batchAccounts/readme.md | 1 + modules/Microsoft.Cache/redis/readme.md | 1 + modules/Microsoft.CognitiveServices/accounts/readme.md | 1 + modules/Microsoft.Compute/availabilitySets/readme.md | 1 + modules/Microsoft.Compute/diskEncryptionSets/readme.md | 1 + modules/Microsoft.Compute/disks/readme.md | 1 + modules/Microsoft.Compute/galleries/readme.md | 1 + modules/Microsoft.Compute/images/readme.md | 1 + modules/Microsoft.Compute/proximityPlacementGroups/readme.md | 1 + modules/Microsoft.Compute/virtualMachineScaleSets/readme.md | 1 + modules/Microsoft.Compute/virtualMachines/readme.md | 1 + modules/Microsoft.Consumption/budgets/readme.md | 1 + modules/Microsoft.ContainerInstance/containerGroups/readme.md | 1 + modules/Microsoft.ContainerRegistry/registries/readme.md | 1 + modules/Microsoft.ContainerService/managedClusters/readme.md | 1 + modules/Microsoft.DBforPostgreSQL/flexibleServers/readme.md | 1 + modules/Microsoft.DataFactory/factories/readme.md | 1 + modules/Microsoft.DataProtection/backupVaults/readme.md | 1 + modules/Microsoft.Databricks/workspaces/readme.md | 1 + .../Microsoft.DesktopVirtualization/applicationgroups/readme.md | 1 + modules/Microsoft.DesktopVirtualization/hostpools/readme.md | 1 + modules/Microsoft.DesktopVirtualization/scalingplans/readme.md | 1 + modules/Microsoft.DesktopVirtualization/workspaces/readme.md | 1 + modules/Microsoft.DocumentDB/databaseAccounts/readme.md | 1 + modules/Microsoft.EventGrid/systemTopics/readme.md | 1 + modules/Microsoft.EventGrid/topics/readme.md | 1 + modules/Microsoft.EventHub/namespaces/readme.md | 1 + modules/Microsoft.HealthBot/healthBots/readme.md | 1 + modules/Microsoft.Insights/actionGroups/readme.md | 1 + modules/Microsoft.Insights/activityLogAlerts/readme.md | 1 + modules/Microsoft.Insights/components/readme.md | 1 + modules/Microsoft.Insights/diagnosticSettings/readme.md | 1 + modules/Microsoft.Insights/metricAlerts/readme.md | 1 + modules/Microsoft.Insights/privateLinkScopes/readme.md | 1 + modules/Microsoft.Insights/scheduledQueryRules/readme.md | 1 + modules/Microsoft.KeyVault/vaults/readme.md | 1 + modules/Microsoft.KubernetesConfiguration/extensions/readme.md | 1 + .../fluxConfigurations/readme.md | 1 + modules/Microsoft.Logic/workflows/readme.md | 1 + modules/Microsoft.MachineLearningServices/workspaces/readme.md | 1 + .../Microsoft.ManagedIdentity/userAssignedIdentities/readme.md | 1 + .../Microsoft.ManagedServices/registrationDefinitions/readme.md | 1 + modules/Microsoft.Management/managementGroups/readme.md | 1 + modules/Microsoft.NetApp/netAppAccounts/readme.md | 1 + modules/Microsoft.Network/applicationGateways/readme.md | 1 + modules/Microsoft.Network/applicationSecurityGroups/readme.md | 1 + modules/Microsoft.Network/azureFirewalls/readme.md | 1 + modules/Microsoft.Network/bastionHosts/readme.md | 1 + modules/Microsoft.Network/connections/readme.md | 1 + modules/Microsoft.Network/ddosProtectionPlans/readme.md | 1 + modules/Microsoft.Network/expressRouteCircuits/readme.md | 1 + modules/Microsoft.Network/firewallPolicies/readme.md | 1 + modules/Microsoft.Network/frontDoors/readme.md | 1 + modules/Microsoft.Network/ipGroups/readme.md | 1 + modules/Microsoft.Network/loadBalancers/readme.md | 1 + modules/Microsoft.Network/localNetworkGateways/readme.md | 1 + modules/Microsoft.Network/natGateways/readme.md | 1 + modules/Microsoft.Network/networkInterfaces/readme.md | 1 + modules/Microsoft.Network/networkSecurityGroups/readme.md | 1 + modules/Microsoft.Network/networkWatchers/readme.md | 1 + modules/Microsoft.Network/privateDnsZones/readme.md | 1 + modules/Microsoft.Network/privateEndpoints/readme.md | 1 + modules/Microsoft.Network/privateLinkServices/readme.md | 1 + modules/Microsoft.Network/publicIPAddresses/readme.md | 1 + modules/Microsoft.Network/publicIPPrefixes/readme.md | 1 + modules/Microsoft.Network/routeTables/readme.md | 1 + modules/Microsoft.Network/trafficmanagerprofiles/readme.md | 1 + modules/Microsoft.Network/virtualHubs/readme.md | 1 + modules/Microsoft.Network/virtualNetworkGateways/readme.md | 1 + modules/Microsoft.Network/virtualNetworks/readme.md | 1 + modules/Microsoft.Network/virtualWans/readme.md | 1 + modules/Microsoft.Network/vpnGateways/readme.md | 1 + modules/Microsoft.Network/vpnSites/readme.md | 1 + modules/Microsoft.OperationalInsights/workspaces/readme.md | 1 + modules/Microsoft.OperationsManagement/solutions/readme.md | 1 + modules/Microsoft.PowerBIDedicated/capacities/readme.md | 1 + modules/Microsoft.RecoveryServices/vaults/readme.md | 1 + modules/Microsoft.Resources/deploymentScripts/readme.md | 1 + modules/Microsoft.Resources/resourceGroups/readme.md | 1 + modules/Microsoft.Resources/tags/readme.md | 1 + modules/Microsoft.Security/azureSecurityCenter/readme.md | 1 + modules/Microsoft.ServiceBus/namespaces/readme.md | 1 + modules/Microsoft.ServiceFabric/clusters/readme.md | 1 + modules/Microsoft.SignalRService/webPubSub/readme.md | 1 + modules/Microsoft.Sql/managedInstances/readme.md | 1 + modules/Microsoft.Sql/servers/readme.md | 1 + modules/Microsoft.Storage/storageAccounts/readme.md | 1 + modules/Microsoft.Synapse/privateLinkHubs/readme.md | 1 + modules/Microsoft.Synapse/workspaces/readme.md | 1 + modules/Microsoft.VirtualMachineImages/imageTemplates/readme.md | 1 + modules/Microsoft.Web/connections/readme.md | 1 + modules/Microsoft.Web/hostingEnvironments/readme.md | 1 + modules/Microsoft.Web/serverfarms/readme.md | 1 + modules/Microsoft.Web/sites/readme.md | 1 + modules/Microsoft.Web/staticSites/readme.md | 1 + 107 files changed, 107 insertions(+) diff --git a/modules/Microsoft.AAD/DomainServices/readme.md b/modules/Microsoft.AAD/DomainServices/readme.md index 049f4b6c69..45a51b9a13 100644 --- a/modules/Microsoft.AAD/DomainServices/readme.md +++ b/modules/Microsoft.AAD/DomainServices/readme.md @@ -214,6 +214,7 @@ _None_ The following module usage examples are retrieved from the content of the files hosted in the module's `.test` folder. >**Note**: The name of each example is based on the name of the file from which it is taken. + >**Note**: Each example lists all the required parameters first, followed by the rest - each in alphabetical order.

Example 1: Parameters

diff --git a/modules/Microsoft.AnalysisServices/servers/readme.md b/modules/Microsoft.AnalysisServices/servers/readme.md index b79e4877cb..92765a4a4c 100644 --- a/modules/Microsoft.AnalysisServices/servers/readme.md +++ b/modules/Microsoft.AnalysisServices/servers/readme.md @@ -164,6 +164,7 @@ _None_ The following module usage examples are retrieved from the content of the files hosted in the module's `.test` folder. >**Note**: The name of each example is based on the name of the file from which it is taken. + >**Note**: Each example lists all the required parameters first, followed by the rest - each in alphabetical order.

Example 1: Max

diff --git a/modules/Microsoft.ApiManagement/service/readme.md b/modules/Microsoft.ApiManagement/service/readme.md index 073c8a59a2..5c5bdd9dfc 100644 --- a/modules/Microsoft.ApiManagement/service/readme.md +++ b/modules/Microsoft.ApiManagement/service/readme.md @@ -279,6 +279,7 @@ This section gives you an overview of all local-referenced module files (i.e., o The following module usage examples are retrieved from the content of the files hosted in the module's `.test` folder. >**Note**: The name of each example is based on the name of the file from which it is taken. + >**Note**: Each example lists all the required parameters first, followed by the rest - each in alphabetical order.

Example 1: Max

diff --git a/modules/Microsoft.AppConfiguration/configurationStores/readme.md b/modules/Microsoft.AppConfiguration/configurationStores/readme.md index 7c6609668e..17bc132904 100644 --- a/modules/Microsoft.AppConfiguration/configurationStores/readme.md +++ b/modules/Microsoft.AppConfiguration/configurationStores/readme.md @@ -293,6 +293,7 @@ This section gives you an overview of all local-referenced module files (i.e., o The following module usage examples are retrieved from the content of the files hosted in the module's `.test` folder. >**Note**: The name of each example is based on the name of the file from which it is taken. + >**Note**: Each example lists all the required parameters first, followed by the rest - each in alphabetical order.

Example 1: Min

diff --git a/modules/Microsoft.Authorization/locks/readme.md b/modules/Microsoft.Authorization/locks/readme.md index b610a0b81f..a6e0adea95 100644 --- a/modules/Microsoft.Authorization/locks/readme.md +++ b/modules/Microsoft.Authorization/locks/readme.md @@ -49,6 +49,7 @@ _None_ The following module usage examples are retrieved from the content of the files hosted in the module's `.test` folder. >**Note**: The name of each example is based on the name of the file from which it is taken. + >**Note**: Each example lists all the required parameters first, followed by the rest - each in alphabetical order.

Example 1: Rg

diff --git a/modules/Microsoft.Authorization/policyAssignments/readme.md b/modules/Microsoft.Authorization/policyAssignments/readme.md index b2ea0d4295..4c8c9bd55f 100644 --- a/modules/Microsoft.Authorization/policyAssignments/readme.md +++ b/modules/Microsoft.Authorization/policyAssignments/readme.md @@ -175,6 +175,7 @@ _None_ The following module usage examples are retrieved from the content of the files hosted in the module's `.test` folder. >**Note**: The name of each example is based on the name of the file from which it is taken. + >**Note**: Each example lists all the required parameters first, followed by the rest - each in alphabetical order.

Example 1: Mg Min

diff --git a/modules/Microsoft.Authorization/policyDefinitions/readme.md b/modules/Microsoft.Authorization/policyDefinitions/readme.md index 37eff3f492..260c2bc38d 100644 --- a/modules/Microsoft.Authorization/policyDefinitions/readme.md +++ b/modules/Microsoft.Authorization/policyDefinitions/readme.md @@ -133,6 +133,7 @@ _None_ The following module usage examples are retrieved from the content of the files hosted in the module's `.test` folder. >**Note**: The name of each example is based on the name of the file from which it is taken. + >**Note**: Each example lists all the required parameters first, followed by the rest - each in alphabetical order.

Example 1: Mg Min

diff --git a/modules/Microsoft.Authorization/policyExemptions/readme.md b/modules/Microsoft.Authorization/policyExemptions/readme.md index caa777691a..4b73e8ddd6 100644 --- a/modules/Microsoft.Authorization/policyExemptions/readme.md +++ b/modules/Microsoft.Authorization/policyExemptions/readme.md @@ -156,6 +156,7 @@ _None_ The following module usage examples are retrieved from the content of the files hosted in the module's `.test` folder. >**Note**: The name of each example is based on the name of the file from which it is taken. + >**Note**: Each example lists all the required parameters first, followed by the rest - each in alphabetical order.

Example 1: Mg Min

diff --git a/modules/Microsoft.Authorization/policySetDefinitions/readme.md b/modules/Microsoft.Authorization/policySetDefinitions/readme.md index cb59af37bf..1afe6bbac9 100644 --- a/modules/Microsoft.Authorization/policySetDefinitions/readme.md +++ b/modules/Microsoft.Authorization/policySetDefinitions/readme.md @@ -139,6 +139,7 @@ _None_ The following module usage examples are retrieved from the content of the files hosted in the module's `.test` folder. >**Note**: The name of each example is based on the name of the file from which it is taken. + >**Note**: Each example lists all the required parameters first, followed by the rest - each in alphabetical order.

Example 1: Mg Min

diff --git a/modules/Microsoft.Authorization/roleAssignments/readme.md b/modules/Microsoft.Authorization/roleAssignments/readme.md index 8688047321..0caeec8267 100644 --- a/modules/Microsoft.Authorization/roleAssignments/readme.md +++ b/modules/Microsoft.Authorization/roleAssignments/readme.md @@ -174,6 +174,7 @@ _None_ The following module usage examples are retrieved from the content of the files hosted in the module's `.test` folder. >**Note**: The name of each example is based on the name of the file from which it is taken. + >**Note**: Each example lists all the required parameters first, followed by the rest - each in alphabetical order.

Example 1: Mg Min

diff --git a/modules/Microsoft.Authorization/roleDefinitions/readme.md b/modules/Microsoft.Authorization/roleDefinitions/readme.md index de2f7f1b58..6b55fbdd11 100644 --- a/modules/Microsoft.Authorization/roleDefinitions/readme.md +++ b/modules/Microsoft.Authorization/roleDefinitions/readme.md @@ -178,6 +178,7 @@ _None_ The following module usage examples are retrieved from the content of the files hosted in the module's `.test` folder. >**Note**: The name of each example is based on the name of the file from which it is taken. + >**Note**: Each example lists all the required parameters first, followed by the rest - each in alphabetical order.

Example 1: Mg Min

diff --git a/modules/Microsoft.Automation/automationAccounts/readme.md b/modules/Microsoft.Automation/automationAccounts/readme.md index e65ab84550..f046d69838 100644 --- a/modules/Microsoft.Automation/automationAccounts/readme.md +++ b/modules/Microsoft.Automation/automationAccounts/readme.md @@ -363,6 +363,7 @@ This section gives you an overview of all local-referenced module files (i.e., o The following module usage examples are retrieved from the content of the files hosted in the module's `.test` folder. >**Note**: The name of each example is based on the name of the file from which it is taken. + >**Note**: Each example lists all the required parameters first, followed by the rest - each in alphabetical order.

Example 1: Encr

diff --git a/modules/Microsoft.Batch/batchAccounts/readme.md b/modules/Microsoft.Batch/batchAccounts/readme.md index 0553a0988a..f2e521f25d 100644 --- a/modules/Microsoft.Batch/batchAccounts/readme.md +++ b/modules/Microsoft.Batch/batchAccounts/readme.md @@ -238,6 +238,7 @@ This section gives you an overview of all local-referenced module files (i.e., o The following module usage examples are retrieved from the content of the files hosted in the module's `.test` folder. >**Note**: The name of each example is based on the name of the file from which it is taken. + >**Note**: Each example lists all the required parameters first, followed by the rest - each in alphabetical order.

Example 1: Encr

diff --git a/modules/Microsoft.Cache/redis/readme.md b/modules/Microsoft.Cache/redis/readme.md index a53341c477..d285a51473 100644 --- a/modules/Microsoft.Cache/redis/readme.md +++ b/modules/Microsoft.Cache/redis/readme.md @@ -333,6 +333,7 @@ This section gives you an overview of all local-referenced module files (i.e., o The following module usage examples are retrieved from the content of the files hosted in the module's `.test` folder. >**Note**: The name of each example is based on the name of the file from which it is taken. + >**Note**: Each example lists all the required parameters first, followed by the rest - each in alphabetical order.

Example 1: Min

diff --git a/modules/Microsoft.CognitiveServices/accounts/readme.md b/modules/Microsoft.CognitiveServices/accounts/readme.md index 7415b0ffb4..17d574befb 100644 --- a/modules/Microsoft.CognitiveServices/accounts/readme.md +++ b/modules/Microsoft.CognitiveServices/accounts/readme.md @@ -419,6 +419,7 @@ This section gives you an overview of all local-referenced module files (i.e., o The following module usage examples are retrieved from the content of the files hosted in the module's `.test` folder. >**Note**: The name of each example is based on the name of the file from which it is taken. + >**Note**: Each example lists all the required parameters first, followed by the rest - each in alphabetical order.

Example 1: Encr

diff --git a/modules/Microsoft.Compute/availabilitySets/readme.md b/modules/Microsoft.Compute/availabilitySets/readme.md index 80964a96ab..57d35f2c3c 100644 --- a/modules/Microsoft.Compute/availabilitySets/readme.md +++ b/modules/Microsoft.Compute/availabilitySets/readme.md @@ -156,6 +156,7 @@ _None_ The following module usage examples are retrieved from the content of the files hosted in the module's `.test` folder. >**Note**: The name of each example is based on the name of the file from which it is taken. + >**Note**: Each example lists all the required parameters first, followed by the rest - each in alphabetical order.

Example 1: Min

diff --git a/modules/Microsoft.Compute/diskEncryptionSets/readme.md b/modules/Microsoft.Compute/diskEncryptionSets/readme.md index 53638c0d1c..09934b257e 100644 --- a/modules/Microsoft.Compute/diskEncryptionSets/readme.md +++ b/modules/Microsoft.Compute/diskEncryptionSets/readme.md @@ -162,6 +162,7 @@ This section gives you an overview of all local-referenced module files (i.e., o The following module usage examples are retrieved from the content of the files hosted in the module's `.test` folder. >**Note**: The name of each example is based on the name of the file from which it is taken. + >**Note**: Each example lists all the required parameters first, followed by the rest - each in alphabetical order.

Example 1: Parameters

diff --git a/modules/Microsoft.Compute/disks/readme.md b/modules/Microsoft.Compute/disks/readme.md index e30d550c14..d5c3698639 100644 --- a/modules/Microsoft.Compute/disks/readme.md +++ b/modules/Microsoft.Compute/disks/readme.md @@ -172,6 +172,7 @@ _None_ The following module usage examples are retrieved from the content of the files hosted in the module's `.test` folder. >**Note**: The name of each example is based on the name of the file from which it is taken. + >**Note**: Each example lists all the required parameters first, followed by the rest - each in alphabetical order.

Example 1: Image

diff --git a/modules/Microsoft.Compute/galleries/readme.md b/modules/Microsoft.Compute/galleries/readme.md index 114cb04bcd..9aadc157b6 100644 --- a/modules/Microsoft.Compute/galleries/readme.md +++ b/modules/Microsoft.Compute/galleries/readme.md @@ -155,6 +155,7 @@ _None_ The following module usage examples are retrieved from the content of the files hosted in the module's `.test` folder. >**Note**: The name of each example is based on the name of the file from which it is taken. + >**Note**: Each example lists all the required parameters first, followed by the rest - each in alphabetical order.

Example 1: Images

diff --git a/modules/Microsoft.Compute/images/readme.md b/modules/Microsoft.Compute/images/readme.md index a7b6b96829..c2af93ba73 100644 --- a/modules/Microsoft.Compute/images/readme.md +++ b/modules/Microsoft.Compute/images/readme.md @@ -156,6 +156,7 @@ _None_ The following module usage examples are retrieved from the content of the files hosted in the module's `.test` folder. >**Note**: The name of each example is based on the name of the file from which it is taken. + >**Note**: Each example lists all the required parameters first, followed by the rest - each in alphabetical order.

Example 1: Parameters

diff --git a/modules/Microsoft.Compute/proximityPlacementGroups/readme.md b/modules/Microsoft.Compute/proximityPlacementGroups/readme.md index a7d0e7cade..32d429e4a6 100644 --- a/modules/Microsoft.Compute/proximityPlacementGroups/readme.md +++ b/modules/Microsoft.Compute/proximityPlacementGroups/readme.md @@ -153,6 +153,7 @@ _None_ The following module usage examples are retrieved from the content of the files hosted in the module's `.test` folder. >**Note**: The name of each example is based on the name of the file from which it is taken. + >**Note**: Each example lists all the required parameters first, followed by the rest - each in alphabetical order.

Example 1: Parameters

diff --git a/modules/Microsoft.Compute/virtualMachineScaleSets/readme.md b/modules/Microsoft.Compute/virtualMachineScaleSets/readme.md index 3d74bce1c0..3e417c38a4 100644 --- a/modules/Microsoft.Compute/virtualMachineScaleSets/readme.md +++ b/modules/Microsoft.Compute/virtualMachineScaleSets/readme.md @@ -882,6 +882,7 @@ _None_ The following module usage examples are retrieved from the content of the files hosted in the module's `.test` folder. >**Note**: The name of each example is based on the name of the file from which it is taken. + >**Note**: Each example lists all the required parameters first, followed by the rest - each in alphabetical order.

Example 1: Linux Min

diff --git a/modules/Microsoft.Compute/virtualMachines/readme.md b/modules/Microsoft.Compute/virtualMachines/readme.md index dea90d9402..9482cc5d03 100644 --- a/modules/Microsoft.Compute/virtualMachines/readme.md +++ b/modules/Microsoft.Compute/virtualMachines/readme.md @@ -1013,6 +1013,7 @@ This section gives you an overview of all local-referenced module files (i.e., o The following module usage examples are retrieved from the content of the files hosted in the module's `.test` folder. >**Note**: The name of each example is based on the name of the file from which it is taken. + >**Note**: Each example lists all the required parameters first, followed by the rest - each in alphabetical order.

Example 1: Linux Autmg

diff --git a/modules/Microsoft.Consumption/budgets/readme.md b/modules/Microsoft.Consumption/budgets/readme.md index 0ca622a464..f88ecb0008 100644 --- a/modules/Microsoft.Consumption/budgets/readme.md +++ b/modules/Microsoft.Consumption/budgets/readme.md @@ -55,6 +55,7 @@ _None_ The following module usage examples are retrieved from the content of the files hosted in the module's `.test` folder. >**Note**: The name of each example is based on the name of the file from which it is taken. + >**Note**: Each example lists all the required parameters first, followed by the rest - each in alphabetical order.

Example 1: Parameters

diff --git a/modules/Microsoft.ContainerInstance/containerGroups/readme.md b/modules/Microsoft.ContainerInstance/containerGroups/readme.md index 3059fba8ea..9e8cd7b33a 100644 --- a/modules/Microsoft.ContainerInstance/containerGroups/readme.md +++ b/modules/Microsoft.ContainerInstance/containerGroups/readme.md @@ -177,6 +177,7 @@ _None_ The following module usage examples are retrieved from the content of the files hosted in the module's `.test` folder. >**Note**: The name of each example is based on the name of the file from which it is taken. + >**Note**: Each example lists all the required parameters first, followed by the rest - each in alphabetical order.

Example 1: Parameters

diff --git a/modules/Microsoft.ContainerRegistry/registries/readme.md b/modules/Microsoft.ContainerRegistry/registries/readme.md index cb6e7e913d..b6b4ecea9c 100644 --- a/modules/Microsoft.ContainerRegistry/registries/readme.md +++ b/modules/Microsoft.ContainerRegistry/registries/readme.md @@ -346,6 +346,7 @@ This section gives you an overview of all local-referenced module files (i.e., o The following module usage examples are retrieved from the content of the files hosted in the module's `.test` folder. >**Note**: The name of each example is based on the name of the file from which it is taken. + >**Note**: Each example lists all the required parameters first, followed by the rest - each in alphabetical order.

Example 1: Encr

diff --git a/modules/Microsoft.ContainerService/managedClusters/readme.md b/modules/Microsoft.ContainerService/managedClusters/readme.md index e5fe00fd84..d28571ca7c 100644 --- a/modules/Microsoft.ContainerService/managedClusters/readme.md +++ b/modules/Microsoft.ContainerService/managedClusters/readme.md @@ -367,6 +367,7 @@ _None_ The following module usage examples are retrieved from the content of the files hosted in the module's `.test` folder. >**Note**: The name of each example is based on the name of the file from which it is taken. + >**Note**: Each example lists all the required parameters first, followed by the rest - each in alphabetical order.

Example 1: Azure

diff --git a/modules/Microsoft.DBforPostgreSQL/flexibleServers/readme.md b/modules/Microsoft.DBforPostgreSQL/flexibleServers/readme.md index c1b85273de..5ce32076ac 100644 --- a/modules/Microsoft.DBforPostgreSQL/flexibleServers/readme.md +++ b/modules/Microsoft.DBforPostgreSQL/flexibleServers/readme.md @@ -326,6 +326,7 @@ _None_ The following module usage examples are retrieved from the content of the files hosted in the module's `.test` folder. >**Note**: The name of each example is based on the name of the file from which it is taken. + >**Note**: Each example lists all the required parameters first, followed by the rest - each in alphabetical order.

Example 1: Min

diff --git a/modules/Microsoft.DataFactory/factories/readme.md b/modules/Microsoft.DataFactory/factories/readme.md index 0525ef41a7..0714be790f 100644 --- a/modules/Microsoft.DataFactory/factories/readme.md +++ b/modules/Microsoft.DataFactory/factories/readme.md @@ -351,6 +351,7 @@ This section gives you an overview of all local-referenced module files (i.e., o The following module usage examples are retrieved from the content of the files hosted in the module's `.test` folder. >**Note**: The name of each example is based on the name of the file from which it is taken. + >**Note**: Each example lists all the required parameters first, followed by the rest - each in alphabetical order.

Example 1: Min

diff --git a/modules/Microsoft.DataProtection/backupVaults/readme.md b/modules/Microsoft.DataProtection/backupVaults/readme.md index 5388797ee5..7d562e8ff0 100644 --- a/modules/Microsoft.DataProtection/backupVaults/readme.md +++ b/modules/Microsoft.DataProtection/backupVaults/readme.md @@ -339,6 +339,7 @@ _None_ The following module usage examples are retrieved from the content of the files hosted in the module's `.test` folder. >**Note**: The name of each example is based on the name of the file from which it is taken. + >**Note**: Each example lists all the required parameters first, followed by the rest - each in alphabetical order.

Example 1: Min

diff --git a/modules/Microsoft.Databricks/workspaces/readme.md b/modules/Microsoft.Databricks/workspaces/readme.md index 4f3d2386dd..cec0ba1761 100644 --- a/modules/Microsoft.Databricks/workspaces/readme.md +++ b/modules/Microsoft.Databricks/workspaces/readme.md @@ -226,6 +226,7 @@ _None_ The following module usage examples are retrieved from the content of the files hosted in the module's `.test` folder. >**Note**: The name of each example is based on the name of the file from which it is taken. + >**Note**: Each example lists all the required parameters first, followed by the rest - each in alphabetical order.

Example 1: Parameters

diff --git a/modules/Microsoft.DesktopVirtualization/applicationgroups/readme.md b/modules/Microsoft.DesktopVirtualization/applicationgroups/readme.md index fc75fd3a85..b1fe6a0f0c 100644 --- a/modules/Microsoft.DesktopVirtualization/applicationgroups/readme.md +++ b/modules/Microsoft.DesktopVirtualization/applicationgroups/readme.md @@ -166,6 +166,7 @@ _None_ The following module usage examples are retrieved from the content of the files hosted in the module's `.test` folder. >**Note**: The name of each example is based on the name of the file from which it is taken. + >**Note**: Each example lists all the required parameters first, followed by the rest - each in alphabetical order.

Example 1: Min

diff --git a/modules/Microsoft.DesktopVirtualization/hostpools/readme.md b/modules/Microsoft.DesktopVirtualization/hostpools/readme.md index 780e708ef4..eb05bc87f8 100644 --- a/modules/Microsoft.DesktopVirtualization/hostpools/readme.md +++ b/modules/Microsoft.DesktopVirtualization/hostpools/readme.md @@ -262,6 +262,7 @@ _None_ The following module usage examples are retrieved from the content of the files hosted in the module's `.test` folder. >**Note**: The name of each example is based on the name of the file from which it is taken. + >**Note**: Each example lists all the required parameters first, followed by the rest - each in alphabetical order.

Example 1: Parameters

diff --git a/modules/Microsoft.DesktopVirtualization/scalingplans/readme.md b/modules/Microsoft.DesktopVirtualization/scalingplans/readme.md index c53a0160ab..b05a57f1c5 100644 --- a/modules/Microsoft.DesktopVirtualization/scalingplans/readme.md +++ b/modules/Microsoft.DesktopVirtualization/scalingplans/readme.md @@ -264,6 +264,7 @@ _None_ The following module usage examples are retrieved from the content of the files hosted in the module's `.test` folder. >**Note**: The name of each example is based on the name of the file from which it is taken. + >**Note**: Each example lists all the required parameters first, followed by the rest - each in alphabetical order.

Example 1: Min

diff --git a/modules/Microsoft.DesktopVirtualization/workspaces/readme.md b/modules/Microsoft.DesktopVirtualization/workspaces/readme.md index 6bdf767b58..35d2006816 100644 --- a/modules/Microsoft.DesktopVirtualization/workspaces/readme.md +++ b/modules/Microsoft.DesktopVirtualization/workspaces/readme.md @@ -163,6 +163,7 @@ _None_ The following module usage examples are retrieved from the content of the files hosted in the module's `.test` folder. >**Note**: The name of each example is based on the name of the file from which it is taken. + >**Note**: Each example lists all the required parameters first, followed by the rest - each in alphabetical order.

Example 1: Parameters

diff --git a/modules/Microsoft.DocumentDB/databaseAccounts/readme.md b/modules/Microsoft.DocumentDB/databaseAccounts/readme.md index 3df6c7c398..b9cb5c9f2c 100644 --- a/modules/Microsoft.DocumentDB/databaseAccounts/readme.md +++ b/modules/Microsoft.DocumentDB/databaseAccounts/readme.md @@ -539,6 +539,7 @@ _None_ The following module usage examples are retrieved from the content of the files hosted in the module's `.test` folder. >**Note**: The name of each example is based on the name of the file from which it is taken. + >**Note**: Each example lists all the required parameters first, followed by the rest - each in alphabetical order.

Example 1: Gremlindb

diff --git a/modules/Microsoft.EventGrid/systemTopics/readme.md b/modules/Microsoft.EventGrid/systemTopics/readme.md index 2465fbca2f..d930961a1c 100644 --- a/modules/Microsoft.EventGrid/systemTopics/readme.md +++ b/modules/Microsoft.EventGrid/systemTopics/readme.md @@ -276,6 +276,7 @@ _None_ The following module usage examples are retrieved from the content of the files hosted in the module's `.test` folder. >**Note**: The name of each example is based on the name of the file from which it is taken. + >**Note**: Each example lists all the required parameters first, followed by the rest - each in alphabetical order.

Example 1: Min

diff --git a/modules/Microsoft.EventGrid/topics/readme.md b/modules/Microsoft.EventGrid/topics/readme.md index c344de4ddc..55d9436705 100644 --- a/modules/Microsoft.EventGrid/topics/readme.md +++ b/modules/Microsoft.EventGrid/topics/readme.md @@ -251,6 +251,7 @@ This section gives you an overview of all local-referenced module files (i.e., o The following module usage examples are retrieved from the content of the files hosted in the module's `.test` folder. >**Note**: The name of each example is based on the name of the file from which it is taken. + >**Note**: Each example lists all the required parameters first, followed by the rest - each in alphabetical order.

Example 1: Parameters

diff --git a/modules/Microsoft.EventHub/namespaces/readme.md b/modules/Microsoft.EventHub/namespaces/readme.md index 76bf2b11b6..f81cc90454 100644 --- a/modules/Microsoft.EventHub/namespaces/readme.md +++ b/modules/Microsoft.EventHub/namespaces/readme.md @@ -296,6 +296,7 @@ This section gives you an overview of all local-referenced module files (i.e., o The following module usage examples are retrieved from the content of the files hosted in the module's `.test` folder. >**Note**: The name of each example is based on the name of the file from which it is taken. + >**Note**: Each example lists all the required parameters first, followed by the rest - each in alphabetical order.

Example 1: Min

diff --git a/modules/Microsoft.HealthBot/healthBots/readme.md b/modules/Microsoft.HealthBot/healthBots/readme.md index 0499ba9afc..b6321201fd 100644 --- a/modules/Microsoft.HealthBot/healthBots/readme.md +++ b/modules/Microsoft.HealthBot/healthBots/readme.md @@ -153,6 +153,7 @@ _None_ The following module usage examples are retrieved from the content of the files hosted in the module's `.test` folder. >**Note**: The name of each example is based on the name of the file from which it is taken. + >**Note**: Each example lists all the required parameters first, followed by the rest - each in alphabetical order.

Example 1: Parameters

diff --git a/modules/Microsoft.Insights/actionGroups/readme.md b/modules/Microsoft.Insights/actionGroups/readme.md index 55c72c9448..21b0ddd97f 100644 --- a/modules/Microsoft.Insights/actionGroups/readme.md +++ b/modules/Microsoft.Insights/actionGroups/readme.md @@ -239,6 +239,7 @@ _None_ The following module usage examples are retrieved from the content of the files hosted in the module's `.test` folder. >**Note**: The name of each example is based on the name of the file from which it is taken. + >**Note**: Each example lists all the required parameters first, followed by the rest - each in alphabetical order.

Example 1: Parameters

diff --git a/modules/Microsoft.Insights/activityLogAlerts/readme.md b/modules/Microsoft.Insights/activityLogAlerts/readme.md index 353606a5f7..718d660d24 100644 --- a/modules/Microsoft.Insights/activityLogAlerts/readme.md +++ b/modules/Microsoft.Insights/activityLogAlerts/readme.md @@ -401,6 +401,7 @@ _None_ The following module usage examples are retrieved from the content of the files hosted in the module's `.test` folder. >**Note**: The name of each example is based on the name of the file from which it is taken. + >**Note**: Each example lists all the required parameters first, followed by the rest - each in alphabetical order.

Example 1: Parameters

diff --git a/modules/Microsoft.Insights/components/readme.md b/modules/Microsoft.Insights/components/readme.md index 62908032cc..6677bca0c8 100644 --- a/modules/Microsoft.Insights/components/readme.md +++ b/modules/Microsoft.Insights/components/readme.md @@ -157,6 +157,7 @@ _None_ The following module usage examples are retrieved from the content of the files hosted in the module's `.test` folder. >**Note**: The name of each example is based on the name of the file from which it is taken. + >**Note**: Each example lists all the required parameters first, followed by the rest - each in alphabetical order.

Example 1: Parameters

diff --git a/modules/Microsoft.Insights/diagnosticSettings/readme.md b/modules/Microsoft.Insights/diagnosticSettings/readme.md index 9083bf7657..5ec7eb3251 100644 --- a/modules/Microsoft.Insights/diagnosticSettings/readme.md +++ b/modules/Microsoft.Insights/diagnosticSettings/readme.md @@ -48,6 +48,7 @@ _None_ The following module usage examples are retrieved from the content of the files hosted in the module's `.test` folder. >**Note**: The name of each example is based on the name of the file from which it is taken. + >**Note**: Each example lists all the required parameters first, followed by the rest - each in alphabetical order.

Example 1: Parameters

diff --git a/modules/Microsoft.Insights/metricAlerts/readme.md b/modules/Microsoft.Insights/metricAlerts/readme.md index 1babe9a783..48ec87d13e 100644 --- a/modules/Microsoft.Insights/metricAlerts/readme.md +++ b/modules/Microsoft.Insights/metricAlerts/readme.md @@ -382,6 +382,7 @@ _None_ The following module usage examples are retrieved from the content of the files hosted in the module's `.test` folder. >**Note**: The name of each example is based on the name of the file from which it is taken. + >**Note**: Each example lists all the required parameters first, followed by the rest - each in alphabetical order.

Example 1: Parameters

diff --git a/modules/Microsoft.Insights/privateLinkScopes/readme.md b/modules/Microsoft.Insights/privateLinkScopes/readme.md index f40509bc22..d5294c412c 100644 --- a/modules/Microsoft.Insights/privateLinkScopes/readme.md +++ b/modules/Microsoft.Insights/privateLinkScopes/readme.md @@ -242,6 +242,7 @@ This section gives you an overview of all local-referenced module files (i.e., o The following module usage examples are retrieved from the content of the files hosted in the module's `.test` folder. >**Note**: The name of each example is based on the name of the file from which it is taken. + >**Note**: Each example lists all the required parameters first, followed by the rest - each in alphabetical order.

Example 1: Min

diff --git a/modules/Microsoft.Insights/scheduledQueryRules/readme.md b/modules/Microsoft.Insights/scheduledQueryRules/readme.md index 070f506f2c..e61facec11 100644 --- a/modules/Microsoft.Insights/scheduledQueryRules/readme.md +++ b/modules/Microsoft.Insights/scheduledQueryRules/readme.md @@ -164,6 +164,7 @@ _None_ The following module usage examples are retrieved from the content of the files hosted in the module's `.test` folder. >**Note**: The name of each example is based on the name of the file from which it is taken. + >**Note**: Each example lists all the required parameters first, followed by the rest - each in alphabetical order.

Example 1: Parameters

diff --git a/modules/Microsoft.KeyVault/vaults/readme.md b/modules/Microsoft.KeyVault/vaults/readme.md index a9496808dc..6436f35e9a 100644 --- a/modules/Microsoft.KeyVault/vaults/readme.md +++ b/modules/Microsoft.KeyVault/vaults/readme.md @@ -394,6 +394,7 @@ This section gives you an overview of all local-referenced module files (i.e., o The following module usage examples are retrieved from the content of the files hosted in the module's `.test` folder. >**Note**: The name of each example is based on the name of the file from which it is taken. + >**Note**: Each example lists all the required parameters first, followed by the rest - each in alphabetical order.

Example 1: Min

diff --git a/modules/Microsoft.KubernetesConfiguration/extensions/readme.md b/modules/Microsoft.KubernetesConfiguration/extensions/readme.md index 8b84e05193..46c3302e95 100644 --- a/modules/Microsoft.KubernetesConfiguration/extensions/readme.md +++ b/modules/Microsoft.KubernetesConfiguration/extensions/readme.md @@ -72,6 +72,7 @@ _None_ The following module usage examples are retrieved from the content of the files hosted in the module's `.test` folder. >**Note**: The name of each example is based on the name of the file from which it is taken. + >**Note**: Each example lists all the required parameters first, followed by the rest - each in alphabetical order.

Example 1: Min

diff --git a/modules/Microsoft.KubernetesConfiguration/fluxConfigurations/readme.md b/modules/Microsoft.KubernetesConfiguration/fluxConfigurations/readme.md index abddfcbe23..ad3b68f34f 100644 --- a/modules/Microsoft.KubernetesConfiguration/fluxConfigurations/readme.md +++ b/modules/Microsoft.KubernetesConfiguration/fluxConfigurations/readme.md @@ -74,6 +74,7 @@ _None_ The following module usage examples are retrieved from the content of the files hosted in the module's `.test` folder. >**Note**: The name of each example is based on the name of the file from which it is taken. + >**Note**: Each example lists all the required parameters first, followed by the rest - each in alphabetical order.

Example 1: Min

diff --git a/modules/Microsoft.Logic/workflows/readme.md b/modules/Microsoft.Logic/workflows/readme.md index 5eb4a80931..d692197e13 100644 --- a/modules/Microsoft.Logic/workflows/readme.md +++ b/modules/Microsoft.Logic/workflows/readme.md @@ -319,6 +319,7 @@ _None_ The following module usage examples are retrieved from the content of the files hosted in the module's `.test` folder. >**Note**: The name of each example is based on the name of the file from which it is taken. + >**Note**: Each example lists all the required parameters first, followed by the rest - each in alphabetical order.

Example 1: Parameters

diff --git a/modules/Microsoft.MachineLearningServices/workspaces/readme.md b/modules/Microsoft.MachineLearningServices/workspaces/readme.md index 22f01bed53..f08a51b6c2 100644 --- a/modules/Microsoft.MachineLearningServices/workspaces/readme.md +++ b/modules/Microsoft.MachineLearningServices/workspaces/readme.md @@ -413,6 +413,7 @@ This section gives you an overview of all local-referenced module files (i.e., o The following module usage examples are retrieved from the content of the files hosted in the module's `.test` folder. >**Note**: The name of each example is based on the name of the file from which it is taken. + >**Note**: Each example lists all the required parameters first, followed by the rest - each in alphabetical order.

Example 1: Encr

diff --git a/modules/Microsoft.ManagedIdentity/userAssignedIdentities/readme.md b/modules/Microsoft.ManagedIdentity/userAssignedIdentities/readme.md index 59d3ada31f..cd2c769292 100644 --- a/modules/Microsoft.ManagedIdentity/userAssignedIdentities/readme.md +++ b/modules/Microsoft.ManagedIdentity/userAssignedIdentities/readme.md @@ -149,6 +149,7 @@ _None_ The following module usage examples are retrieved from the content of the files hosted in the module's `.test` folder. >**Note**: The name of each example is based on the name of the file from which it is taken. + >**Note**: Each example lists all the required parameters first, followed by the rest - each in alphabetical order.

Example 1: Parameters

diff --git a/modules/Microsoft.ManagedServices/registrationDefinitions/readme.md b/modules/Microsoft.ManagedServices/registrationDefinitions/readme.md index a5e1adda4b..93f7080a60 100644 --- a/modules/Microsoft.ManagedServices/registrationDefinitions/readme.md +++ b/modules/Microsoft.ManagedServices/registrationDefinitions/readme.md @@ -172,6 +172,7 @@ _None_ The following module usage examples are retrieved from the content of the files hosted in the module's `.test` folder. >**Note**: The name of each example is based on the name of the file from which it is taken. + >**Note**: Each example lists all the required parameters first, followed by the rest - each in alphabetical order.

Example 1: Parameters

diff --git a/modules/Microsoft.Management/managementGroups/readme.md b/modules/Microsoft.Management/managementGroups/readme.md index 5287ad5c07..258b1bcf95 100644 --- a/modules/Microsoft.Management/managementGroups/readme.md +++ b/modules/Microsoft.Management/managementGroups/readme.md @@ -130,6 +130,7 @@ _None_ The following module usage examples are retrieved from the content of the files hosted in the module's `.test` folder. >**Note**: The name of each example is based on the name of the file from which it is taken. + >**Note**: Each example lists all the required parameters first, followed by the rest - each in alphabetical order.

Example 1: Parameters

diff --git a/modules/Microsoft.NetApp/netAppAccounts/readme.md b/modules/Microsoft.NetApp/netAppAccounts/readme.md index c54462f119..b7aa25295b 100644 --- a/modules/Microsoft.NetApp/netAppAccounts/readme.md +++ b/modules/Microsoft.NetApp/netAppAccounts/readme.md @@ -161,6 +161,7 @@ _None_ The following module usage examples are retrieved from the content of the files hosted in the module's `.test` folder. >**Note**: The name of each example is based on the name of the file from which it is taken. + >**Note**: Each example lists all the required parameters first, followed by the rest - each in alphabetical order.

Example 1: Min

diff --git a/modules/Microsoft.Network/applicationGateways/readme.md b/modules/Microsoft.Network/applicationGateways/readme.md index 41f64ed24f..2633db05dd 100644 --- a/modules/Microsoft.Network/applicationGateways/readme.md +++ b/modules/Microsoft.Network/applicationGateways/readme.md @@ -229,6 +229,7 @@ _None_ The following module usage examples are retrieved from the content of the files hosted in the module's `.test` folder. >**Note**: The name of each example is based on the name of the file from which it is taken. + >**Note**: Each example lists all the required parameters first, followed by the rest - each in alphabetical order.

Example 1: Parameters

diff --git a/modules/Microsoft.Network/applicationSecurityGroups/readme.md b/modules/Microsoft.Network/applicationSecurityGroups/readme.md index 4ed29d22e6..66b053aa02 100644 --- a/modules/Microsoft.Network/applicationSecurityGroups/readme.md +++ b/modules/Microsoft.Network/applicationSecurityGroups/readme.md @@ -152,6 +152,7 @@ _None_ The following module usage examples are retrieved from the content of the files hosted in the module's `.test` folder. >**Note**: The name of each example is based on the name of the file from which it is taken. + >**Note**: Each example lists all the required parameters first, followed by the rest - each in alphabetical order.

Example 1: Parameters

diff --git a/modules/Microsoft.Network/azureFirewalls/readme.md b/modules/Microsoft.Network/azureFirewalls/readme.md index fed3392837..deb2c768d0 100644 --- a/modules/Microsoft.Network/azureFirewalls/readme.md +++ b/modules/Microsoft.Network/azureFirewalls/readme.md @@ -310,6 +310,7 @@ This section gives you an overview of all local-referenced module files (i.e., o The following module usage examples are retrieved from the content of the files hosted in the module's `.test` folder. >**Note**: The name of each example is based on the name of the file from which it is taken. + >**Note**: Each example lists all the required parameters first, followed by the rest - each in alphabetical order.

Example 1: Addpip

diff --git a/modules/Microsoft.Network/bastionHosts/readme.md b/modules/Microsoft.Network/bastionHosts/readme.md index 18e5308d1f..854f8cc84b 100644 --- a/modules/Microsoft.Network/bastionHosts/readme.md +++ b/modules/Microsoft.Network/bastionHosts/readme.md @@ -297,6 +297,7 @@ This section gives you an overview of all local-referenced module files (i.e., o The following module usage examples are retrieved from the content of the files hosted in the module's `.test` folder. >**Note**: The name of each example is based on the name of the file from which it is taken. + >**Note**: Each example lists all the required parameters first, followed by the rest - each in alphabetical order.

Example 1: Custompip

diff --git a/modules/Microsoft.Network/connections/readme.md b/modules/Microsoft.Network/connections/readme.md index 4d3349d5c2..910668127d 100644 --- a/modules/Microsoft.Network/connections/readme.md +++ b/modules/Microsoft.Network/connections/readme.md @@ -311,6 +311,7 @@ _None_ The following module usage examples are retrieved from the content of the files hosted in the module's `.test` folder. >**Note**: The name of each example is based on the name of the file from which it is taken. + >**Note**: Each example lists all the required parameters first, followed by the rest - each in alphabetical order.

Example 1: Vnet2vnet

diff --git a/modules/Microsoft.Network/ddosProtectionPlans/readme.md b/modules/Microsoft.Network/ddosProtectionPlans/readme.md index c867b98dbc..55fe2f2f01 100644 --- a/modules/Microsoft.Network/ddosProtectionPlans/readme.md +++ b/modules/Microsoft.Network/ddosProtectionPlans/readme.md @@ -152,6 +152,7 @@ _None_ The following module usage examples are retrieved from the content of the files hosted in the module's `.test` folder. >**Note**: The name of each example is based on the name of the file from which it is taken. + >**Note**: Each example lists all the required parameters first, followed by the rest - each in alphabetical order.

Example 1: Parameters

diff --git a/modules/Microsoft.Network/expressRouteCircuits/readme.md b/modules/Microsoft.Network/expressRouteCircuits/readme.md index 9639a9d7ad..201f243334 100644 --- a/modules/Microsoft.Network/expressRouteCircuits/readme.md +++ b/modules/Microsoft.Network/expressRouteCircuits/readme.md @@ -174,6 +174,7 @@ _None_ The following module usage examples are retrieved from the content of the files hosted in the module's `.test` folder. >**Note**: The name of each example is based on the name of the file from which it is taken. + >**Note**: Each example lists all the required parameters first, followed by the rest - each in alphabetical order.

Example 1: Parameters

diff --git a/modules/Microsoft.Network/firewallPolicies/readme.md b/modules/Microsoft.Network/firewallPolicies/readme.md index e9220e7654..1d9b1c7e04 100644 --- a/modules/Microsoft.Network/firewallPolicies/readme.md +++ b/modules/Microsoft.Network/firewallPolicies/readme.md @@ -143,6 +143,7 @@ _None_ The following module usage examples are retrieved from the content of the files hosted in the module's `.test` folder. >**Note**: The name of each example is based on the name of the file from which it is taken. + >**Note**: Each example lists all the required parameters first, followed by the rest - each in alphabetical order.

Example 1: Min

diff --git a/modules/Microsoft.Network/frontDoors/readme.md b/modules/Microsoft.Network/frontDoors/readme.md index f708f60a9b..05d36d46f4 100644 --- a/modules/Microsoft.Network/frontDoors/readme.md +++ b/modules/Microsoft.Network/frontDoors/readme.md @@ -169,6 +169,7 @@ _None_ The following module usage examples are retrieved from the content of the files hosted in the module's `.test` folder. >**Note**: The name of each example is based on the name of the file from which it is taken. + >**Note**: Each example lists all the required parameters first, followed by the rest - each in alphabetical order.

Example 1: Parameters

diff --git a/modules/Microsoft.Network/ipGroups/readme.md b/modules/Microsoft.Network/ipGroups/readme.md index 8d46cde4d7..799e5c7e15 100644 --- a/modules/Microsoft.Network/ipGroups/readme.md +++ b/modules/Microsoft.Network/ipGroups/readme.md @@ -153,6 +153,7 @@ _None_ The following module usage examples are retrieved from the content of the files hosted in the module's `.test` folder. >**Note**: The name of each example is based on the name of the file from which it is taken. + >**Note**: Each example lists all the required parameters first, followed by the rest - each in alphabetical order.

Example 1: Parameters

diff --git a/modules/Microsoft.Network/loadBalancers/readme.md b/modules/Microsoft.Network/loadBalancers/readme.md index 9acea3fb0a..1556a0cadd 100644 --- a/modules/Microsoft.Network/loadBalancers/readme.md +++ b/modules/Microsoft.Network/loadBalancers/readme.md @@ -466,6 +466,7 @@ _None_ The following module usage examples are retrieved from the content of the files hosted in the module's `.test` folder. >**Note**: The name of each example is based on the name of the file from which it is taken. + >**Note**: Each example lists all the required parameters first, followed by the rest - each in alphabetical order.

Example 1: Internal

diff --git a/modules/Microsoft.Network/localNetworkGateways/readme.md b/modules/Microsoft.Network/localNetworkGateways/readme.md index efcb77b66d..6a078ec77e 100644 --- a/modules/Microsoft.Network/localNetworkGateways/readme.md +++ b/modules/Microsoft.Network/localNetworkGateways/readme.md @@ -158,6 +158,7 @@ _None_ The following module usage examples are retrieved from the content of the files hosted in the module's `.test` folder. >**Note**: The name of each example is based on the name of the file from which it is taken. + >**Note**: Each example lists all the required parameters first, followed by the rest - each in alphabetical order.

Example 1: Parameters

diff --git a/modules/Microsoft.Network/natGateways/readme.md b/modules/Microsoft.Network/natGateways/readme.md index 0c075a5d60..c91215ddd6 100644 --- a/modules/Microsoft.Network/natGateways/readme.md +++ b/modules/Microsoft.Network/natGateways/readme.md @@ -170,6 +170,7 @@ _None_ The following module usage examples are retrieved from the content of the files hosted in the module's `.test` folder. >**Note**: The name of each example is based on the name of the file from which it is taken. + >**Note**: Each example lists all the required parameters first, followed by the rest - each in alphabetical order.

Example 1: Parameters

diff --git a/modules/Microsoft.Network/networkInterfaces/readme.md b/modules/Microsoft.Network/networkInterfaces/readme.md index 703476cc15..d8c675db66 100644 --- a/modules/Microsoft.Network/networkInterfaces/readme.md +++ b/modules/Microsoft.Network/networkInterfaces/readme.md @@ -186,6 +186,7 @@ _None_ The following module usage examples are retrieved from the content of the files hosted in the module's `.test` folder. >**Note**: The name of each example is based on the name of the file from which it is taken. + >**Note**: Each example lists all the required parameters first, followed by the rest - each in alphabetical order.

Example 1: Min

diff --git a/modules/Microsoft.Network/networkSecurityGroups/readme.md b/modules/Microsoft.Network/networkSecurityGroups/readme.md index e65327e397..fd8c232d9a 100644 --- a/modules/Microsoft.Network/networkSecurityGroups/readme.md +++ b/modules/Microsoft.Network/networkSecurityGroups/readme.md @@ -162,6 +162,7 @@ _None_ The following module usage examples are retrieved from the content of the files hosted in the module's `.test` folder. >**Note**: The name of each example is based on the name of the file from which it is taken. + >**Note**: Each example lists all the required parameters first, followed by the rest - each in alphabetical order.

Example 1: Min

diff --git a/modules/Microsoft.Network/networkWatchers/readme.md b/modules/Microsoft.Network/networkWatchers/readme.md index 32bd7eedd5..545438af93 100644 --- a/modules/Microsoft.Network/networkWatchers/readme.md +++ b/modules/Microsoft.Network/networkWatchers/readme.md @@ -153,6 +153,7 @@ _None_ The following module usage examples are retrieved from the content of the files hosted in the module's `.test` folder. >**Note**: The name of each example is based on the name of the file from which it is taken. + >**Note**: Each example lists all the required parameters first, followed by the rest - each in alphabetical order.

Example 1: Min

diff --git a/modules/Microsoft.Network/privateDnsZones/readme.md b/modules/Microsoft.Network/privateDnsZones/readme.md index 6e19db5c96..7c90f9d89c 100644 --- a/modules/Microsoft.Network/privateDnsZones/readme.md +++ b/modules/Microsoft.Network/privateDnsZones/readme.md @@ -170,6 +170,7 @@ _None_ The following module usage examples are retrieved from the content of the files hosted in the module's `.test` folder. >**Note**: The name of each example is based on the name of the file from which it is taken. + >**Note**: Each example lists all the required parameters first, followed by the rest - each in alphabetical order.

Example 1: Min

diff --git a/modules/Microsoft.Network/privateEndpoints/readme.md b/modules/Microsoft.Network/privateEndpoints/readme.md index 4436d00a14..16798e0db2 100644 --- a/modules/Microsoft.Network/privateEndpoints/readme.md +++ b/modules/Microsoft.Network/privateEndpoints/readme.md @@ -169,6 +169,7 @@ _None_ The following module usage examples are retrieved from the content of the files hosted in the module's `.test` folder. >**Note**: The name of each example is based on the name of the file from which it is taken. + >**Note**: Each example lists all the required parameters first, followed by the rest - each in alphabetical order.

Example 1: Min

diff --git a/modules/Microsoft.Network/privateLinkServices/readme.md b/modules/Microsoft.Network/privateLinkServices/readme.md index ed6cf0c53b..81136df2d7 100644 --- a/modules/Microsoft.Network/privateLinkServices/readme.md +++ b/modules/Microsoft.Network/privateLinkServices/readme.md @@ -428,6 +428,7 @@ _None_ The following module usage examples are retrieved from the content of the files hosted in the module's `.test` folder. >**Note**: The name of each example is based on the name of the file from which it is taken. + >**Note**: Each example lists all the required parameters first, followed by the rest - each in alphabetical order.

Example 1: Min

diff --git a/modules/Microsoft.Network/publicIPAddresses/readme.md b/modules/Microsoft.Network/publicIPAddresses/readme.md index 08f9156bdd..3d9e49df16 100644 --- a/modules/Microsoft.Network/publicIPAddresses/readme.md +++ b/modules/Microsoft.Network/publicIPAddresses/readme.md @@ -166,6 +166,7 @@ _None_ The following module usage examples are retrieved from the content of the files hosted in the module's `.test` folder. >**Note**: The name of each example is based on the name of the file from which it is taken. + >**Note**: Each example lists all the required parameters first, followed by the rest - each in alphabetical order.

Example 1: Parameters

diff --git a/modules/Microsoft.Network/publicIPPrefixes/readme.md b/modules/Microsoft.Network/publicIPPrefixes/readme.md index 9c220c793e..1545c706c5 100644 --- a/modules/Microsoft.Network/publicIPPrefixes/readme.md +++ b/modules/Microsoft.Network/publicIPPrefixes/readme.md @@ -153,6 +153,7 @@ _None_ The following module usage examples are retrieved from the content of the files hosted in the module's `.test` folder. >**Note**: The name of each example is based on the name of the file from which it is taken. + >**Note**: Each example lists all the required parameters first, followed by the rest - each in alphabetical order.

Example 1: Parameters

diff --git a/modules/Microsoft.Network/routeTables/readme.md b/modules/Microsoft.Network/routeTables/readme.md index 9c5095d348..f5ca069bb3 100644 --- a/modules/Microsoft.Network/routeTables/readme.md +++ b/modules/Microsoft.Network/routeTables/readme.md @@ -243,6 +243,7 @@ _None_ The following module usage examples are retrieved from the content of the files hosted in the module's `.test` folder. >**Note**: The name of each example is based on the name of the file from which it is taken. + >**Note**: Each example lists all the required parameters first, followed by the rest - each in alphabetical order.

Example 1: Parameters

diff --git a/modules/Microsoft.Network/trafficmanagerprofiles/readme.md b/modules/Microsoft.Network/trafficmanagerprofiles/readme.md index 5b4fefb75c..93ab65d388 100644 --- a/modules/Microsoft.Network/trafficmanagerprofiles/readme.md +++ b/modules/Microsoft.Network/trafficmanagerprofiles/readme.md @@ -257,6 +257,7 @@ _None_ The following module usage examples are retrieved from the content of the files hosted in the module's `.test` folder. >**Note**: The name of each example is based on the name of the file from which it is taken. + >**Note**: Each example lists all the required parameters first, followed by the rest - each in alphabetical order.

Example 1: Parameters

diff --git a/modules/Microsoft.Network/virtualHubs/readme.md b/modules/Microsoft.Network/virtualHubs/readme.md index 7a0908a1d4..b6caea64aa 100644 --- a/modules/Microsoft.Network/virtualHubs/readme.md +++ b/modules/Microsoft.Network/virtualHubs/readme.md @@ -110,6 +110,7 @@ _None_ The following module usage examples are retrieved from the content of the files hosted in the module's `.test` folder. >**Note**: The name of each example is based on the name of the file from which it is taken. + >**Note**: Each example lists all the required parameters first, followed by the rest - each in alphabetical order.

Example 1: Min

diff --git a/modules/Microsoft.Network/virtualNetworkGateways/readme.md b/modules/Microsoft.Network/virtualNetworkGateways/readme.md index ab09991c5c..7d631c96f7 100644 --- a/modules/Microsoft.Network/virtualNetworkGateways/readme.md +++ b/modules/Microsoft.Network/virtualNetworkGateways/readme.md @@ -247,6 +247,7 @@ _None_ The following module usage examples are retrieved from the content of the files hosted in the module's `.test` folder. >**Note**: The name of each example is based on the name of the file from which it is taken. + >**Note**: Each example lists all the required parameters first, followed by the rest - each in alphabetical order.

Example 1: Expressroute

diff --git a/modules/Microsoft.Network/virtualNetworks/readme.md b/modules/Microsoft.Network/virtualNetworks/readme.md index 11acf83a4c..7ede05719c 100644 --- a/modules/Microsoft.Network/virtualNetworks/readme.md +++ b/modules/Microsoft.Network/virtualNetworks/readme.md @@ -355,6 +355,7 @@ _None_ The following module usage examples are retrieved from the content of the files hosted in the module's `.test` folder. >**Note**: The name of each example is based on the name of the file from which it is taken. + >**Note**: Each example lists all the required parameters first, followed by the rest - each in alphabetical order.

Example 1: Min

diff --git a/modules/Microsoft.Network/virtualWans/readme.md b/modules/Microsoft.Network/virtualWans/readme.md index bb7e2a71f5..bc125b6098 100644 --- a/modules/Microsoft.Network/virtualWans/readme.md +++ b/modules/Microsoft.Network/virtualWans/readme.md @@ -156,6 +156,7 @@ _None_ The following module usage examples are retrieved from the content of the files hosted in the module's `.test` folder. >**Note**: The name of each example is based on the name of the file from which it is taken. + >**Note**: Each example lists all the required parameters first, followed by the rest - each in alphabetical order.

Example 1: Min

diff --git a/modules/Microsoft.Network/vpnGateways/readme.md b/modules/Microsoft.Network/vpnGateways/readme.md index f750e97607..3827325c9c 100644 --- a/modules/Microsoft.Network/vpnGateways/readme.md +++ b/modules/Microsoft.Network/vpnGateways/readme.md @@ -177,6 +177,7 @@ _None_ The following module usage examples are retrieved from the content of the files hosted in the module's `.test` folder. >**Note**: The name of each example is based on the name of the file from which it is taken. + >**Note**: Each example lists all the required parameters first, followed by the rest - each in alphabetical order.

Example 1: Min

diff --git a/modules/Microsoft.Network/vpnSites/readme.md b/modules/Microsoft.Network/vpnSites/readme.md index 5ebe3043ba..327ddb9d27 100644 --- a/modules/Microsoft.Network/vpnSites/readme.md +++ b/modules/Microsoft.Network/vpnSites/readme.md @@ -325,6 +325,7 @@ _None_ The following module usage examples are retrieved from the content of the files hosted in the module's `.test` folder. >**Note**: The name of each example is based on the name of the file from which it is taken. + >**Note**: Each example lists all the required parameters first, followed by the rest - each in alphabetical order.

Example 1: Min

diff --git a/modules/Microsoft.OperationalInsights/workspaces/readme.md b/modules/Microsoft.OperationalInsights/workspaces/readme.md index 084f916095..824f94c41d 100644 --- a/modules/Microsoft.OperationalInsights/workspaces/readme.md +++ b/modules/Microsoft.OperationalInsights/workspaces/readme.md @@ -458,6 +458,7 @@ This section gives you an overview of all local-referenced module files (i.e., o The following module usage examples are retrieved from the content of the files hosted in the module's `.test` folder. >**Note**: The name of each example is based on the name of the file from which it is taken. + >**Note**: Each example lists all the required parameters first, followed by the rest - each in alphabetical order.

Example 1: Min

diff --git a/modules/Microsoft.OperationsManagement/solutions/readme.md b/modules/Microsoft.OperationsManagement/solutions/readme.md index 62b680892b..e53e89e962 100644 --- a/modules/Microsoft.OperationsManagement/solutions/readme.md +++ b/modules/Microsoft.OperationsManagement/solutions/readme.md @@ -50,6 +50,7 @@ _None_ The following module usage examples are retrieved from the content of the files hosted in the module's `.test` folder. >**Note**: The name of each example is based on the name of the file from which it is taken. + >**Note**: Each example lists all the required parameters first, followed by the rest - each in alphabetical order.

Example 1: Min

diff --git a/modules/Microsoft.PowerBIDedicated/capacities/readme.md b/modules/Microsoft.PowerBIDedicated/capacities/readme.md index 87684a52cc..e5bb8332d5 100644 --- a/modules/Microsoft.PowerBIDedicated/capacities/readme.md +++ b/modules/Microsoft.PowerBIDedicated/capacities/readme.md @@ -156,6 +156,7 @@ _None_ The following module usage examples are retrieved from the content of the files hosted in the module's `.test` folder. >**Note**: The name of each example is based on the name of the file from which it is taken. + >**Note**: Each example lists all the required parameters first, followed by the rest - each in alphabetical order.

Example 1: Min

diff --git a/modules/Microsoft.RecoveryServices/vaults/readme.md b/modules/Microsoft.RecoveryServices/vaults/readme.md index d81e03f241..74acae9b88 100644 --- a/modules/Microsoft.RecoveryServices/vaults/readme.md +++ b/modules/Microsoft.RecoveryServices/vaults/readme.md @@ -908,6 +908,7 @@ This section gives you an overview of all local-referenced module files (i.e., o The following module usage examples are retrieved from the content of the files hosted in the module's `.test` folder. >**Note**: The name of each example is based on the name of the file from which it is taken. + >**Note**: Each example lists all the required parameters first, followed by the rest - each in alphabetical order.

Example 1: Dr

diff --git a/modules/Microsoft.Resources/deploymentScripts/readme.md b/modules/Microsoft.Resources/deploymentScripts/readme.md index 6b3c73b158..7cbfef9c6e 100644 --- a/modules/Microsoft.Resources/deploymentScripts/readme.md +++ b/modules/Microsoft.Resources/deploymentScripts/readme.md @@ -148,6 +148,7 @@ _None_ The following module usage examples are retrieved from the content of the files hosted in the module's `.test` folder. >**Note**: The name of each example is based on the name of the file from which it is taken. + >**Note**: Each example lists all the required parameters first, followed by the rest - each in alphabetical order.

Example 1: Cli

diff --git a/modules/Microsoft.Resources/resourceGroups/readme.md b/modules/Microsoft.Resources/resourceGroups/readme.md index aeb1ce90cd..a49b5ec31f 100644 --- a/modules/Microsoft.Resources/resourceGroups/readme.md +++ b/modules/Microsoft.Resources/resourceGroups/readme.md @@ -160,6 +160,7 @@ This section gives you an overview of all local-referenced module files (i.e., o The following module usage examples are retrieved from the content of the files hosted in the module's `.test` folder. >**Note**: The name of each example is based on the name of the file from which it is taken. + >**Note**: Each example lists all the required parameters first, followed by the rest - each in alphabetical order.

Example 1: Parameters

diff --git a/modules/Microsoft.Resources/tags/readme.md b/modules/Microsoft.Resources/tags/readme.md index 80e8955510..cc35a94093 100644 --- a/modules/Microsoft.Resources/tags/readme.md +++ b/modules/Microsoft.Resources/tags/readme.md @@ -86,6 +86,7 @@ _None_ The following module usage examples are retrieved from the content of the files hosted in the module's `.test` folder. >**Note**: The name of each example is based on the name of the file from which it is taken. + >**Note**: Each example lists all the required parameters first, followed by the rest - each in alphabetical order.

Example 1: Min

diff --git a/modules/Microsoft.Security/azureSecurityCenter/readme.md b/modules/Microsoft.Security/azureSecurityCenter/readme.md index fd9760e8c8..ad45c55dd9 100644 --- a/modules/Microsoft.Security/azureSecurityCenter/readme.md +++ b/modules/Microsoft.Security/azureSecurityCenter/readme.md @@ -103,6 +103,7 @@ _None_ The following module usage examples are retrieved from the content of the files hosted in the module's `.test` folder. >**Note**: The name of each example is based on the name of the file from which it is taken. + >**Note**: Each example lists all the required parameters first, followed by the rest - each in alphabetical order.

Example 1: Parameters

diff --git a/modules/Microsoft.ServiceBus/namespaces/readme.md b/modules/Microsoft.ServiceBus/namespaces/readme.md index 3672deb4c5..1befa46bfd 100644 --- a/modules/Microsoft.ServiceBus/namespaces/readme.md +++ b/modules/Microsoft.ServiceBus/namespaces/readme.md @@ -342,6 +342,7 @@ This section gives you an overview of all local-referenced module files (i.e., o The following module usage examples are retrieved from the content of the files hosted in the module's `.test` folder. >**Note**: The name of each example is based on the name of the file from which it is taken. + >**Note**: Each example lists all the required parameters first, followed by the rest - each in alphabetical order.

Example 1: Min

diff --git a/modules/Microsoft.ServiceFabric/clusters/readme.md b/modules/Microsoft.ServiceFabric/clusters/readme.md index 95f5db31c8..c5df17ecc4 100644 --- a/modules/Microsoft.ServiceFabric/clusters/readme.md +++ b/modules/Microsoft.ServiceFabric/clusters/readme.md @@ -235,6 +235,7 @@ _None_ The following module usage examples are retrieved from the content of the files hosted in the module's `.test` folder. >**Note**: The name of each example is based on the name of the file from which it is taken. + >**Note**: Each example lists all the required parameters first, followed by the rest - each in alphabetical order.

Example 1: Cert

diff --git a/modules/Microsoft.SignalRService/webPubSub/readme.md b/modules/Microsoft.SignalRService/webPubSub/readme.md index 0de24ff10e..3fb2852c74 100644 --- a/modules/Microsoft.SignalRService/webPubSub/readme.md +++ b/modules/Microsoft.SignalRService/webPubSub/readme.md @@ -358,6 +358,7 @@ This section gives you an overview of all local-referenced module files (i.e., o The following module usage examples are retrieved from the content of the files hosted in the module's `.test` folder. >**Note**: The name of each example is based on the name of the file from which it is taken. + >**Note**: Each example lists all the required parameters first, followed by the rest - each in alphabetical order.

Example 1: Min

diff --git a/modules/Microsoft.Sql/managedInstances/readme.md b/modules/Microsoft.Sql/managedInstances/readme.md index 74415e9c29..11731a935e 100644 --- a/modules/Microsoft.Sql/managedInstances/readme.md +++ b/modules/Microsoft.Sql/managedInstances/readme.md @@ -281,6 +281,7 @@ _None_ The following module usage examples are retrieved from the content of the files hosted in the module's `.test` folder. >**Note**: The name of each example is based on the name of the file from which it is taken. + >**Note**: Each example lists all the required parameters first, followed by the rest - each in alphabetical order.

Example 1: Min

diff --git a/modules/Microsoft.Sql/servers/readme.md b/modules/Microsoft.Sql/servers/readme.md index 5dcf607db2..74f5d30fd4 100644 --- a/modules/Microsoft.Sql/servers/readme.md +++ b/modules/Microsoft.Sql/servers/readme.md @@ -336,6 +336,7 @@ This section gives you an overview of all local-referenced module files (i.e., o The following module usage examples are retrieved from the content of the files hosted in the module's `.test` folder. >**Note**: The name of each example is based on the name of the file from which it is taken. + >**Note**: Each example lists all the required parameters first, followed by the rest - each in alphabetical order.

Example 1: Admin

diff --git a/modules/Microsoft.Storage/storageAccounts/readme.md b/modules/Microsoft.Storage/storageAccounts/readme.md index 24dee9d76d..2cc21ce5a6 100644 --- a/modules/Microsoft.Storage/storageAccounts/readme.md +++ b/modules/Microsoft.Storage/storageAccounts/readme.md @@ -378,6 +378,7 @@ This section gives you an overview of all local-referenced module files (i.e., o The following module usage examples are retrieved from the content of the files hosted in the module's `.test` folder. >**Note**: The name of each example is based on the name of the file from which it is taken. + >**Note**: Each example lists all the required parameters first, followed by the rest - each in alphabetical order.

Example 1: Encr

diff --git a/modules/Microsoft.Synapse/privateLinkHubs/readme.md b/modules/Microsoft.Synapse/privateLinkHubs/readme.md index 03bef81d78..230b92d320 100644 --- a/modules/Microsoft.Synapse/privateLinkHubs/readme.md +++ b/modules/Microsoft.Synapse/privateLinkHubs/readme.md @@ -240,6 +240,7 @@ This section gives you an overview of all local-referenced module files (i.e., o The following module usage examples are retrieved from the content of the files hosted in the module's `.test` folder. >**Note**: The name of each example is based on the name of the file from which it is taken. + >**Note**: Each example lists all the required parameters first, followed by the rest - each in alphabetical order.

Example 1: Min

diff --git a/modules/Microsoft.Synapse/workspaces/readme.md b/modules/Microsoft.Synapse/workspaces/readme.md index f6565561db..885cf66d92 100644 --- a/modules/Microsoft.Synapse/workspaces/readme.md +++ b/modules/Microsoft.Synapse/workspaces/readme.md @@ -305,6 +305,7 @@ This section gives you an overview of all local-referenced module files (i.e., o The following module usage examples are retrieved from the content of the files hosted in the module's `.test` folder. >**Note**: The name of each example is based on the name of the file from which it is taken. + >**Note**: Each example lists all the required parameters first, followed by the rest - each in alphabetical order.

Example 1: Encryptionwsai

diff --git a/modules/Microsoft.VirtualMachineImages/imageTemplates/readme.md b/modules/Microsoft.VirtualMachineImages/imageTemplates/readme.md index 02ddf30f37..de58360caf 100644 --- a/modules/Microsoft.VirtualMachineImages/imageTemplates/readme.md +++ b/modules/Microsoft.VirtualMachineImages/imageTemplates/readme.md @@ -268,6 +268,7 @@ _None_ The following module usage examples are retrieved from the content of the files hosted in the module's `.test` folder. >**Note**: The name of each example is based on the name of the file from which it is taken. + >**Note**: Each example lists all the required parameters first, followed by the rest - each in alphabetical order.

Example 1: Parameters

diff --git a/modules/Microsoft.Web/connections/readme.md b/modules/Microsoft.Web/connections/readme.md index 134d49c612..9a25bff7e4 100644 --- a/modules/Microsoft.Web/connections/readme.md +++ b/modules/Microsoft.Web/connections/readme.md @@ -160,6 +160,7 @@ _None_ The following module usage examples are retrieved from the content of the files hosted in the module's `.test` folder. >**Note**: The name of each example is based on the name of the file from which it is taken. + >**Note**: Each example lists all the required parameters first, followed by the rest - each in alphabetical order.

Example 1: Parameters

diff --git a/modules/Microsoft.Web/hostingEnvironments/readme.md b/modules/Microsoft.Web/hostingEnvironments/readme.md index 570eccafcd..f5fd364d40 100644 --- a/modules/Microsoft.Web/hostingEnvironments/readme.md +++ b/modules/Microsoft.Web/hostingEnvironments/readme.md @@ -206,6 +206,7 @@ _None_ The following module usage examples are retrieved from the content of the files hosted in the module's `.test` folder. >**Note**: The name of each example is based on the name of the file from which it is taken. + >**Note**: Each example lists all the required parameters first, followed by the rest - each in alphabetical order.

Example 1: Asev2

diff --git a/modules/Microsoft.Web/serverfarms/readme.md b/modules/Microsoft.Web/serverfarms/readme.md index c910e0f89f..ffad984d4a 100644 --- a/modules/Microsoft.Web/serverfarms/readme.md +++ b/modules/Microsoft.Web/serverfarms/readme.md @@ -206,6 +206,7 @@ _None_ The following module usage examples are retrieved from the content of the files hosted in the module's `.test` folder. >**Note**: The name of each example is based on the name of the file from which it is taken. + >**Note**: Each example lists all the required parameters first, followed by the rest - each in alphabetical order.

Example 1: Parameters

diff --git a/modules/Microsoft.Web/sites/readme.md b/modules/Microsoft.Web/sites/readme.md index 41d2aa4b5e..74c0619215 100644 --- a/modules/Microsoft.Web/sites/readme.md +++ b/modules/Microsoft.Web/sites/readme.md @@ -408,6 +408,7 @@ This section gives you an overview of all local-referenced module files (i.e., o The following module usage examples are retrieved from the content of the files hosted in the module's `.test` folder. >**Note**: The name of each example is based on the name of the file from which it is taken. + >**Note**: Each example lists all the required parameters first, followed by the rest - each in alphabetical order.

Example 1: Fa Min

diff --git a/modules/Microsoft.Web/staticSites/readme.md b/modules/Microsoft.Web/staticSites/readme.md index 5c15b19611..5771019808 100644 --- a/modules/Microsoft.Web/staticSites/readme.md +++ b/modules/Microsoft.Web/staticSites/readme.md @@ -287,6 +287,7 @@ This section gives you an overview of all local-referenced module files (i.e., o The following module usage examples are retrieved from the content of the files hosted in the module's `.test` folder. >**Note**: The name of each example is based on the name of the file from which it is taken. + >**Note**: Each example lists all the required parameters first, followed by the rest - each in alphabetical order.

Example 1: Min