зеркало из https://github.com/Azure/logicapps.git
37 строки
1.5 KiB
PowerShell
37 строки
1.5 KiB
PowerShell
Param(
|
|
[string]$subscriptionId = "<<subscription id>>",
|
|
[string]$resourceGroup = "<<resource group of logic app>>",
|
|
[string]$logicAppName = "<<name of logic app>>",
|
|
[string]$triggerName = "<<trigger name - usually `manual`>>"
|
|
)
|
|
|
|
Function Get-Folder()
|
|
{
|
|
|
|
|
|
[System.Reflection.Assembly]::LoadWithPartialName("System.windows.forms")
|
|
|
|
$foldername = New-Object System.Windows.Forms.FolderBrowserDialog
|
|
$foldername.rootfolder = "MyComputer"
|
|
|
|
if($foldername.ShowDialog() -eq "OK")
|
|
{
|
|
$folder += $foldername.SelectedPath
|
|
}
|
|
return $folder
|
|
}
|
|
|
|
Login-AzureRmAccount -SubscriptionId $subscriptionId
|
|
$folder = Get-Folder
|
|
$filePath = $folder.GetValue(1) + "\" + $logicAppName + ".swagger.json"
|
|
Invoke-AzureRmResourceAction -ResourceType "Microsoft.Logic/workflows" -ResourceGroupName $resourceGroup -ResourceName $logicAppName -Action listSwagger -ApiVersion "2016-06-01" -Force | ConvertTo-Json -Depth 99 | Out-File $filePath
|
|
$triggerResourceName = $logicAppName + "/$triggerName"
|
|
$callbackUrl = Invoke-AzureRmResourceAction -ResourceType "Microsoft.Logic/workflows/triggers" -ResourceGroupName $resourceGroup -ResourceName $triggerResourceName -Action listCallbackURL -ApiVersion "2016-06-01" -Force
|
|
Write-Output "`n`n`nWrote file to $filePath`n`n"
|
|
$URL = [System.Web.HttpUtility]::ParseQueryString($callbackUrl.value)
|
|
Write-Output $callbackUrl.method $callbackUrl.value
|
|
$sp = $URL.GetValues('sp')
|
|
$sv = $URL.GetValues('sv')
|
|
$sig = $URL.GetValues('sig')
|
|
Write-Output "`n`n sp = $sp `n`n sv = $sv `n`n sig = $sig `n`n api-version = 2016-06-01"
|