Public/actions/Get-Monitor.ps1
function Get-Monitor { <# .SYNOPSIS Get active monitors, or monitor status for a domain .DESCRIPTION Additional information is available with the -Help parameter .PARAMETER HELP Output dynamic help information #> [CmdletBinding(DefaultParameterSetName = 'GetV2AccountMonitors')] [OutputType()] param( [Parameter( ParameterSetName = 'DynamicHelp', Mandatory = $true)] [switch] $Help ) DynamicParam { # Endpoint(s) used by function $Endpoints = @('GetV2AccountMonitors', 'GetV2ActionsMonitor') # Create runtime dictionary return (Get-Dictionary $Endpoints -OutVariable Dynamic) } process { if ($Help) { # Output dynamic help Get-DynamicHelp $MyInvocation.MyCommand.Name } else { # Evaluate dynamic input $Param = Get-Param $PSCmdlet.ParameterSetName $Dynamic # Make request Invoke-Endpoint @Param } } } |