exports/Update-SysManMessage.ps1

<#
.Synopsis

.Description

.Link
https://docs.microsoft.com/en-us/powershell/module/sysman.webapi/update-sysmanmessage
#>

function Update-SysManMessage {
[OutputType('SysMan.Powershell.Models.IMessage', 'SysMan.Powershell.Models.IApiErrorMessage')]
[CmdletBinding(DefaultParameterSetName='Patch', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')]
param(
    [Parameter(Mandatory, HelpMessage='The id of the Message')]
    [SysMan.Powershell.Category('Path')]
    [System.Int64]
    ${Id},

    [Parameter(ParameterSetName='Patch', ValueFromPipeline, HelpMessage='The Message class')]
    [SysMan.Powershell.Category('Body')]
    [SysMan.Powershell.Models.IBodyParameterMessagePatchRequestBody]
    ${Cmd},

    [Parameter(ParameterSetName='PatchExpanded', HelpMessage='Only applicable for alarm types. If true, the user is allowed to manually close the alarm. If false, the user cannot close the alarm until it has finished.')]
    [SysMan.Powershell.Category('Body')]
    [System.Boolean]
    ${AllowClose},

    [Parameter(ParameterSetName='PatchExpanded', HelpMessage='The background color in hex format #xxxxxx')]
    [SysMan.Powershell.Category('Body')]
    [System.String]
    ${BackgroundColor},

    [Parameter(ParameterSetName='PatchExpanded', HelpMessage='The text that should be displayed in the banner section of driftinformation. If empty, default behaviour is used.')]
    [SysMan.Powershell.Category('Body')]
    [System.String]
    ${BannerLinkText},

    [Parameter(ParameterSetName='PatchExpanded', HelpMessage='The url that should be displayed in the banner section of driftinformation.')]
    [SysMan.Powershell.Category('Body')]
    [System.String]
    ${BannerLinkUrl},

    [Parameter(ParameterSetName='PatchExpanded', HelpMessage='CreatedBy')]
    [SysMan.Powershell.Category('Body')]
    [System.String]
    ${CreatedBy},

    [Parameter(ParameterSetName='PatchExpanded', HelpMessage='Created Date')]
    [SysMan.Powershell.Category('Body')]
    [System.DateTime]
    ${CreatedDate},

    [Parameter(ParameterSetName='PatchExpanded', HelpMessage='ExpireDate')]
    [SysMan.Powershell.Category('Body')]
    [System.DateTime]
    ${ExpireDate},

    [Parameter(ParameterSetName='PatchExpanded', HelpMessage='The font color hex format #xxxxxx')]
    [SysMan.Powershell.Category('Body')]
    [System.String]
    ${FontColor},

    [Parameter(ParameterSetName='PatchExpanded', HelpMessage='If the message should be hidden or not for the user')]
    [SysMan.Powershell.Category('Body')]
    [System.Boolean]
    ${HideMessage},

    [Parameter(ParameterSetName='PatchExpanded', HelpMessage='ID')]
    [SysMan.Powershell.Category('Body')]
    [System.Int64]
    ${Id1},

    [Parameter(ParameterSetName='PatchExpanded', HelpMessage='Serverity')]
    [SysMan.Powershell.Category('Body')]
    [System.Int32]
    ${Severity},

    [Parameter(ParameterSetName='PatchExpanded', Mandatory, HelpMessage='Text of the message')]
    [SysMan.Powershell.Category('Body')]
    [System.String]
    ${Text},

    [Parameter(ParameterSetName='PatchExpanded', Mandatory, HelpMessage='Title of the message')]
    [SysMan.Powershell.Category('Body')]
    [System.String]
    ${Title},

    [Parameter(ParameterSetName='PatchExpanded', HelpMessage='The Message type')]
    [SysMan.Powershell.Category('Body')]
    [System.Int32]
    ${Type},

    [Parameter(ParameterSetName='PatchExpanded', HelpMessage='If the messege shuld show up with gradiant')]
    [SysMan.Powershell.Category('Body')]
    [System.Boolean]
    ${UseGradient},

    [Parameter(DontShow, HelpMessage='Wait for .NET debugger to attach')]
    [SysMan.Powershell.Category('Runtime')]
    [System.Management.Automation.SwitchParameter]
    ${Break},

    [Parameter(DontShow, HelpMessage='SendAsync Pipeline Steps to be appended to the front of the pipeline')]
    [ValidateNotNull()]
    [SysMan.Powershell.Category('Runtime')]
    [SysMan.Powershell.Runtime.SendAsyncStep[]]
    ${HttpPipelineAppend},

    [Parameter(DontShow, HelpMessage='SendAsync Pipeline Steps to be prepended to the front of the pipeline')]
    [ValidateNotNull()]
    [SysMan.Powershell.Category('Runtime')]
    [SysMan.Powershell.Runtime.SendAsyncStep[]]
    ${HttpPipelinePrepend},

    [Parameter(DontShow, HelpMessage='The URI for the proxy server to use')]
    [SysMan.Powershell.Category('Runtime')]
    [System.Uri]
    ${Proxy},

    [Parameter(DontShow, HelpMessage='Credentials for a proxy server to use for the remote call')]
    [ValidateNotNull()]
    [SysMan.Powershell.Category('Runtime')]
    [System.Management.Automation.PSCredential]
    ${ProxyCredential},

    [Parameter(DontShow, HelpMessage='Use the default credentials for the proxy')]
    [SysMan.Powershell.Category('Runtime')]
    [System.Management.Automation.SwitchParameter]
    ${ProxyUseDefaultCredentials}
)

begin {
    try {
        $outBuffer = $null
        if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) {
            $PSBoundParameters['OutBuffer'] = 1
        }
        $parameterSet = $PsCmdlet.ParameterSetName
        $mapping = @{
            Patch = 'SysMan.WebApi.private\Update-SysManMessage_Patch';
            PatchExpanded = 'SysMan.WebApi.private\Update-SysManMessage_PatchExpanded';
        }
        $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet)
        $scriptCmd = {& $wrappedCmd @PSBoundParameters}
        $steppablePipeline = $scriptCmd.GetSteppablePipeline($myInvocation.CommandOrigin)
        $steppablePipeline.Begin($PSCmdlet)
    } catch {
        throw
    }
}

process {
    try {
        $steppablePipeline.Process($_)
    } catch {
        throw
    }
}

end {
    try {
        $steppablePipeline.End()
    } catch {
        throw
    }
}
}