diff --git a/src/Websites/Websites/help/Add-AzWebAppAccessRestrictionRule.md b/src/Websites/Websites/help/Add-AzWebAppAccessRestrictionRule.md index 1e0aa8e56f1f..5ff4a8a21d84 100644 --- a/src/Websites/Websites/help/Add-AzWebAppAccessRestrictionRule.md +++ b/src/Websites/Websites/help/Add-AzWebAppAccessRestrictionRule.md @@ -7,7 +7,7 @@ schema: 2.0.0 # Add-AzWebAppAccessRestrictionRule ## SYNOPSIS -Adds an Access Restiction rule to an Azure Web App. +Adds an Access Restriction rule to an Azure Web App. ## SYNTAX diff --git a/src/Websites/Websites/help/Add-AzWebAppTrafficRouting.md b/src/Websites/Websites/help/Add-AzWebAppTrafficRouting.md index 78d3b067a934..ee698bb83350 100644 --- a/src/Websites/Websites/help/Add-AzWebAppTrafficRouting.md +++ b/src/Websites/Websites/help/Add-AzWebAppTrafficRouting.md @@ -22,19 +22,19 @@ The **Add-AzWebAppTrafficRouting** cmdlet adds a Routing rule to an Azure Web Ap ## EXAMPLES -### Example 1: Add a routing rule to transfer 15% of production traffice to Stg slot +### Example 1: Add a routing rule to transfer 15% of production traffic to Stg slot ```powershell Add-AzWebAppTrafficRouting -ResourceGroupName "Default-Web-WestUS" -WebAppName "ContosoSite" -RoutingRule @{ActionHostName='XXXX.azurewebsites.net';ReroutePercentage=15;Name='Stg'} ``` -This command adds a routing rule to transfer 15% of production traffice to Stg slot +This command adds a routing rule to transfer 15% of production traffic to Stg slot -### Example 2: Add a routing rule to transfer the production traffice to Stg slot ranges from 50% to 90% in incremental manner. +### Example 2: Add a routing rule to transfer the production traffic to Stg slot ranges from 50% to 90% in incremental manner. ```powershell Add-AzWebAppTrafficRouting -ResourceGroupName "Default-Web-WestUS" -WebAppName "ContosoSite" -RoutingRule @{ActionHostName='XXXX.azurewebsites.net';ReroutePercentage=50;ChangeIntervalInMinutes=1;MinReroutePercentage=50;MaxReroutePercentage=90;Name='Stg';ChangeStep=10} ``` -This command adds a routing rule to transfer the production traffice to Stg slot ranges from 50% to 90% in incremental manner. +This command adds a routing rule to transfer the production traffic to Stg slot ranges from 50% to 90% in incremental manner. ## PARAMETERS diff --git a/src/Websites/Websites/help/Az.Websites.md b/src/Websites/Websites/help/Az.Websites.md index baf6acdcd97c..d722be927cad 100644 --- a/src/Websites/Websites/help/Az.Websites.md +++ b/src/Websites/Websites/help/Az.Websites.md @@ -12,7 +12,7 @@ ARM (Azure Resource Manager) Web App and App Service Plan commands. ## Az.Websites Cmdlets ### [Add-AzWebAppAccessRestrictionRule](Add-AzWebAppAccessRestrictionRule.md) -Adds an Access Restiction rule to an Azure Web App. +Adds an Access Restriction rule to an Azure Web App. ### [Add-AzWebAppTrafficRouting](Add-AzWebAppTrafficRouting.md) Add a routing Rule to the Slot. @@ -333,7 +333,7 @@ Description for Creates a new static site in an existing resource group, or upda Description for Updates a user entry with the listed roles ### [Update-AzWebAppAccessRestrictionConfig](Update-AzWebAppAccessRestrictionConfig.md) -Updates the inheritance of Main site Access Restiction config to SCM Site for an Azure Web App. +Updates the inheritance of Main site Access Restriction config to SCM Site for an Azure Web App. ### [Update-AzWebAppTrafficRouting](Update-AzWebAppTrafficRouting.md) Update a routing Rule to the Slot. diff --git a/src/Websites/Websites/help/Get-AzStaticWebApp.md b/src/Websites/Websites/help/Get-AzStaticWebApp.md index c1650cbcb620..4c58bb9513e1 100644 --- a/src/Websites/Websites/help/Get-AzStaticWebApp.md +++ b/src/Websites/Websites/help/Get-AzStaticWebApp.md @@ -69,7 +69,7 @@ Kind Location Name Type This commands list all static web applications under a resource group. -### Example 3: Get a satic web application by name +### Example 3: Get a static web application by name ```powershell Get-AzStaticWebApp -ResourceGroupName azure-rg-test -Name staticweb-portal04 ``` @@ -80,9 +80,9 @@ Kind Location Name Type Central US staticweb-portal04 Microsoft.Web/staticSites ``` -This commands gets a satic web application by name. +This commands gets a static web application by name. -### Example 4: Get a satic web application by pipline +### Example 4: Get a static web application by pipeline ```powershell New-AzStaticWebApp -ResourceGroupName azure-rg-test -Name staticweb-pwsh01 -Location eastus2 -RepositoryUrl 'https://github.com/username/RepoName' -RepositoryToken 'repoToken123' -Branch 'master' -AppLocation 'Client' -ApiLocation 'Api' -OutputLocation 'wwwroot' -SkuName 'free' | Get-AzStaticWebApp ``` @@ -93,7 +93,7 @@ Kind Location Name Type Central US staticweb-portal04 Microsoft.Web/staticSites ``` -This commands gets a satic web application by pipline. +This commands gets a static web application by pipeline. ## PARAMETERS diff --git a/src/Websites/Websites/help/Get-AzStaticWebAppBuild.md b/src/Websites/Websites/help/Get-AzStaticWebAppBuild.md index 1a9f1fe648db..2ea8403cc641 100644 --- a/src/Websites/Websites/help/Get-AzStaticWebAppBuild.md +++ b/src/Websites/Websites/help/Get-AzStaticWebAppBuild.md @@ -48,7 +48,7 @@ Kind Name Type ``` This command list all builds under a static web app. -Automaticall create a new build in static web app When creating a new pull request for branch. +Automatically create a new build in static web app When creating a new pull request for branch. ### Example 2: Get the details of a static site build ```powershell diff --git a/src/Websites/Websites/help/New-AzStaticWebAppBuildAppSetting.md b/src/Websites/Websites/help/New-AzStaticWebAppBuildAppSetting.md index ef221f11fbc0..7cfb3f1bec34 100644 --- a/src/Websites/Websites/help/New-AzStaticWebAppBuildAppSetting.md +++ b/src/Websites/Websites/help/New-AzStaticWebAppBuildAppSetting.md @@ -45,7 +45,7 @@ This command creates or updates the app settings of a static site build. ### Example 2: Create or updates the app settings of a static site build by pipeline ```powershell -Get-AzStaticWebAppBuildAppSetting -ResourceGroupName resourceGroup -Name taticweb00 -EnvironmentName 'default' | New-AzStaticWebAppBuildAppSetting -AppSetting @{'buildsetting1' = 'someval'; 'buildsetting2' = 'someval2' } +Get-AzStaticWebAppBuildAppSetting -ResourceGroupName resourceGroup -Name staticweb00 -EnvironmentName 'default' | New-AzStaticWebAppBuildAppSetting -AppSetting @{'buildsetting1' = 'someval'; 'buildsetting2' = 'someval2' } ``` ```output diff --git a/src/Websites/Websites/help/Publish-AzWebApp.md b/src/Websites/Websites/help/Publish-AzWebApp.md index 6144687d0bcd..b29494655d1f 100644 --- a/src/Websites/Websites/help/Publish-AzWebApp.md +++ b/src/Websites/Websites/help/Publish-AzWebApp.md @@ -215,7 +215,7 @@ Accept wildcard characters: False ``` ### -PullIdentity -AAD identity used for pull based deployments. 'system' will use the app's system assigned identy. An user assigned identity can be used by providing the client ID. Only available for Windows WebApps. Support for Linux WebApps coming soon. +AAD identity used for pull based deployments. 'system' will use the app's system assigned identity. An user assigned identity can be used by providing the client ID. Only available for Windows WebApps. Support for Linux WebApps coming soon. ```yaml Type: System.String diff --git a/src/Websites/Websites/help/Test-AzStaticWebAppCustomDomain.md b/src/Websites/Websites/help/Test-AzStaticWebAppCustomDomain.md index d685098bd587..e681f4a4eece 100644 --- a/src/Websites/Websites/help/Test-AzStaticWebAppCustomDomain.md +++ b/src/Websites/Websites/help/Test-AzStaticWebAppCustomDomain.md @@ -36,14 +36,14 @@ Description for Validates a particular custom domain can be added to a static si Test-AzStaticWebAppCustomDomain -ResourceGroupName resourceGroup -Name staticweb00 -DomainName 'www01.azpstest.net' ``` -This commnad validates a particular custom domain can be added to a static site +This command validates a particular custom domain can be added to a static site ### Example 2: Validate a particular custom domain can be added to a static site by pipeline ```powershell Get-AzStaticWebAppCustomDomain -ResourceGroupName resourceGroup -Name staticweb00 -DomainName 'www01.azpstest.net' | Get-AzStaticWebAppCustomDomain ``` -This commnad validates a particular custom domain can be added to a static site by pipeline. +This command validates a particular custom domain can be added to a static site by pipeline. ## PARAMETERS diff --git a/src/Websites/Websites/help/Update-AzWebAppAccessRestrictionConfig.md b/src/Websites/Websites/help/Update-AzWebAppAccessRestrictionConfig.md index 730d6ed8cec5..b8390d29825b 100644 --- a/src/Websites/Websites/help/Update-AzWebAppAccessRestrictionConfig.md +++ b/src/Websites/Websites/help/Update-AzWebAppAccessRestrictionConfig.md @@ -7,7 +7,7 @@ schema: 2.0.0 # Update-AzWebAppAccessRestrictionConfig ## SYNOPSIS -Updates the inheritance of Main site Access Restiction config to SCM Site for an Azure Web App. +Updates the inheritance of Main site Access Restriction config to SCM Site for an Azure Web App. ## SYNTAX diff --git a/src/Websites/Websites/help/Update-AzWebAppTrafficRouting.md b/src/Websites/Websites/help/Update-AzWebAppTrafficRouting.md index 61ad46f06be9..0f5f8b2491b6 100644 --- a/src/Websites/Websites/help/Update-AzWebAppTrafficRouting.md +++ b/src/Websites/Websites/help/Update-AzWebAppTrafficRouting.md @@ -22,7 +22,7 @@ The **Update-AzWebAppTrafficRouting** cmdlet updates the routing rule configurat ## EXAMPLES -### Example 1: Update a routing rule to transfer 15% of production traffice to Stg slot +### Example 1: Update a routing rule to transfer 15% of production traffic to Stg slot ```powershell Update-AzWebAppTrafficRouting -ResourceGroupName "Default-Web-WestUS" -WebAppName "ContosoSite" ` -RoutingRule @{ActionHostName='XXXX.azurewebsites.net';ReroutePercentage=15;Name='Stg'} @@ -30,13 +30,13 @@ Update-AzWebAppTrafficRouting -ResourceGroupName "Default-Web-WestUS" -WebAppNam This command updates a routing rule to transfer 15% of production traffic to Stg slot. -### Example 2: Update a routing rule to transfer the production traffice to Stg slot ranges from 50% to 90% in incremental manner. +### Example 2: Update a routing rule to transfer the production traffic to Stg slot ranges from 50% to 90% in incremental manner. ```powershell Update-AzWebAppTrafficRouting -ResourceGroupName "Default-Web-WestUS" -WebAppName "ContosoSite" ` -RoutingRule @{ActionHostName='XXXX.azurewebsites.net';ReroutePercentage=50;ChangeIntervalInMinutes=1;MinReroutePercentage=50;MaxReroutePercentage=90;Name='Stg';ChangeStep=10} ``` -This command Updates a routing rule to transfer the production traffice to Stg slot ranges from 50% to 90% in incremental manner. +This command Updates a routing rule to transfer the production traffic to Stg slot ranges from 50% to 90% in incremental manner. ## PARAMETERS diff --git a/src/Workloads/Workloads/help/New-AzWorkloadsSapVirtualInstance.md b/src/Workloads/Workloads/help/New-AzWorkloadsSapVirtualInstance.md index 4a440d750381..b1f5a05a2dc2 100644 --- a/src/Workloads/Workloads/help/New-AzWorkloadsSapVirtualInstance.md +++ b/src/Workloads/Workloads/help/New-AzWorkloadsSapVirtualInstance.md @@ -89,7 +89,7 @@ Name ResourceGroupName Health Environment ProvisioningState SapProduct State SK1 PowerShell-CLI-TestRG NonProd Succeeded S4HANA RegistrationComplete eastus ``` -In this example, you Install the SAP software on the deployed infrastructure for a three tier distributed Highly Availabile SAP system with Transport directory and customized resource naming. +In this example, you Install the SAP software on the deployed infrastructure for a three tier distributed Highly Available SAP system with Transport directory and customized resource naming. ### Example 5: Register an existing SAP system as a VIS ```powershell @@ -118,7 +118,7 @@ L46 PowerShell-CLI-TestRG NonProd Succeeded S4HANA Regis Use the New-AzWorkloadsSapVirtualInstance cmdlet with the suggested input parameters to register an existing SAP system as a Virtual Instance for SAP solutions resource with a custom Managed Resource Group and Managed Storage Account Name, and specify the Managed Storage Account Network Access Type setting as per your security requirements. Learn More: https://go.microsoft.com/fwlink/?linkid=2256933 -### Example 7: Deploy infrastructure for a three-tier distributed Highly Available (HA) SAP system with Azure Compute Gallary Image +### Example 7: Deploy infrastructure for a three-tier distributed Highly Available (HA) SAP system with Azure Compute Gallery Image ```powershell New-AzWorkloadsSapVirtualInstance -ResourceGroupName 'PowerShell-CLI-TestRG' -Name SK1 -Location eastus -Environment 'NonProd' -SapProduct 'S4HANA' -Configuration .\CreatePayloadHACustomNames.json -IdentityType 'UserAssigned' -ManagedResourceGroupName "acss-mrg1" -UserAssignedIdentity @{'/subscriptions/49d64d54-e966-4c46-a868-1999802b762c/resourcegroups/SAP-E2ETest-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/E2E-RBAC-MSI'= @{}} ``` @@ -129,7 +129,7 @@ Name ResourceGroupName Health Environment ProvisioningState SapProduct State SK1 PowerShell-CLI-TestRG NonProd Succeeded S4HANA SoftwareInstallationPending eastus ``` -In this example, you Deploy infrastructure for a three-tier distributed Highly Available (HA) SAP system with Azure Compute Gallary Image. +In this example, you Deploy infrastructure for a three-tier distributed Highly Available (HA) SAP system with Azure Compute Gallery Image. See sample json payload here: https://go.microsoft.com/fwlink/?linkid=2263420 ## PARAMETERS