diff --git a/src/Automation/Automation/help/Get-AzAutomationWebhook.md b/src/Automation/Automation/help/Get-AzAutomationWebhook.md index 82a5d0b4dd07..956d13933e8f 100644 --- a/src/Automation/Automation/help/Get-AzAutomationWebhook.md +++ b/src/Automation/Automation/help/Get-AzAutomationWebhook.md @@ -33,7 +33,8 @@ Get-AzAutomationWebhook -RunbookName [-ResourceGroupName] [-Au ## DESCRIPTION The **Get-AzAutomationWebhook** cmdlet gets webhooks. -To get specific webhooks, specify a webhook name or specify the name of an Azure Automation runbook to get the webhooks connected to it. +To get specific webhooks, specify a webhook name or specify the name of an Azure Automation runbook to get the webhooks connected to it.
+**Note:** The WebhookUri is returned as empty string due to security concerns. Please make sure to save the webhook URL that **New-AzAutomationWebhook** cmdlet returns, because it cannot be retrieved by using **Get-AzAutomationWebhook**. ## EXAMPLES diff --git a/src/Automation/Automation/help/New-AzAutomationSourceControl.md b/src/Automation/Automation/help/New-AzAutomationSourceControl.md index 6679c9e60c55..c5ba604317ae 100644 --- a/src/Automation/Automation/help/New-AzAutomationSourceControl.md +++ b/src/Automation/Automation/help/New-AzAutomationSourceControl.md @@ -34,14 +34,14 @@ PS C:\> $accessToken = ConvertTo-SecureString -String $token -AsPlainText -Force PS C:\> New-AzAutomationSourceControl -ResourceGroupName "rg1" ` -AutomationAccountName "devAccount" ` -Name "VSTSNative" ` - -RepoUrl "https://contoso.visualstudio.com/ContosoProduction/_versionControl" ` + -RepoUrl "https://dev.azure.com///_git/" ` -SourceType "VsoTfvc" ` -FolderPath "/Runbooks" ` -AccessToken $accessToken Name SourceType Branch FolderPath AutoSync PublishRunbook RepoUrl ---- ---------- ------ ---------- -------- -------------- ------- -VSTSNative VsoTfvc /Runbooks True True https://contoso.visualstudio.com/ContosoProduc... +VSTSNative VsoTfvc /Runbooks True True https://dev.azure.com// $accessToken = ConvertTo-SecureString -String $token -AsPlainText -Force PS C:\> New-AzAutomationSourceControl -ResourceGroupName "rg1" ` -AutomationAccountName "devAccount" ` -Name "VSTSGit" ` - -RepoUrl "https://contoso.visualstudio.com/_git/Finance" ` + -RepoUrl "https://dev.azure.com///_git/" ` -SourceType "VsoGit" ` -Branch "Development" ` -FolderPath "/" ` @@ -63,7 +63,7 @@ PS C:\> New-AzAutomationSourceControl -ResourceGroupName "rg1" ` Name SourceType Branch FolderPath AutoSync PublishRunbook RepoUrl ---- ---------- ------ ---------- -------- -------------- ------- -VSTSGit VsoGit Development / True True https://contoso.visualstudio.com/_git/Finan... +VSTSGit VsoGit Development / True True https://dev.azure.com//