This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Import-Module .\Unicorn.psm1 | |
| function Wait-UnicornOnline | |
| { | |
| [CmdletBinding()] | |
| param ( | |
| [Parameter(Mandatory)] | |
| [string]$Uri, | |
| [int]$MaxAttempts = 10 | |
| ) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [CmdletBinding(DefaultParameterSetName = "no-arguments")] | |
| param( | |
| [Parameter(HelpMessage = "Name of the resource group in Azure to target.")] | |
| [string]$ResourceGroupName, | |
| [Parameter(HelpMessage = "Name of the web app in Azure to target.")] | |
| [string]$WebAppName, | |
| [Parameter(HelpMessage = "Path to the WDP to deploy to the target.")] | |
| [string]$WdpPackagePath, |
OlderNewer