Public/Set-AnyStackEventWebhook.ps1

function Set-AnyStackEventWebhook {
    <#
    .SYNOPSIS
        Set-AnyStackEventWebhook - A specialized AnyStack Enterprise tool.
    .DESCRIPTION
        Autogenerated cmdlet for VCF.AutomationOrchestrator.
    #>

    [CmdletBinding(SupportsShouldProcess=$true)]
    param(
        [Parameter(Mandatory=$true)] [string]$Server
    )
    process {
        $ErrorActionPreference = 'Stop'
        Write-Host "[ANYSTACK] Running Set-AnyStackEventWebhook on server $Server" -ForegroundColor Cyan
    }
}