exports/New-NmeRunbookScriptedActionScheduleModel.ps1


# ----------------------------------------------------------------------------------
# Code generated by Microsoft (R) AutoRest Code Generator (autorest: 3.10.8, generator: @autorest/powershell@4.0.752)
# Changes may cause incorrect behavior and will be lost if the code is regenerated.
# ----------------------------------------------------------------------------------

<#
.Synopsis
Create an in-memory object for RunbookScriptedActionSchedule.
.Description
Create an in-memory object for RunbookScriptedActionSchedule.

#>

function New-NmeRunbookScriptedActionScheduleModel {
[OutputType([NmePowershell.Models.RunbookScriptedActionSchedule])]
[CmdletBinding(PositionalBinding=$false)]
param(
    [Parameter(Mandatory)]
    [NmePowershell.Category('Body')]
    [System.Int32]
    ${ConfigMinutesToWait},

    [Parameter(Mandatory)]
    [NmePowershell.Category('Body')]
    [NmePowershell.Models.IRunbookScriptedActionRunParamsBindings]
    # Dictionary of <ScriptedActionParamBinding>.
    ${ConfigParamsBindings},

    [Parameter(Mandatory)]
    [NmePowershell.Category('Body')]
    [System.String]
    ${ConfigSubscriptionId},

    [Parameter(Mandatory)]
    [NmePowershell.PSArgumentCompleterAttribute("Once", "Daily", "Weekly", "Monthly", "Hourly", "PatchTuesday")]
    [NmePowershell.Category('Body')]
    [System.String]
    ${ScheduleRecurrenceType},

    [Parameter(Mandatory)]
    [NmePowershell.Category('Body')]
    [System.DateTime]
    ${ScheduleStartDate},

    [Parameter(Mandatory)]
    [NmePowershell.Category('Body')]
    [System.Int32]
    ${ScheduleStartHour},

    [Parameter(Mandatory)]
    [NmePowershell.Category('Body')]
    [System.Int32]
    ${ScheduleStartMinutes},

    [Parameter(Mandatory)]
    [NmePowershell.Category('Body')]
    [System.String]
    ${ScheduleTimeZoneId},

    [Parameter()]
    [NmePowershell.Category('Body')]
    [System.Int32]
    ${ConfigAdConfigId},

    [Parameter()]
    [NmePowershell.PSArgumentCompleterAttribute("0", "1", "2", "3", "4", "5", "6")]
    [NmePowershell.Category('Body')]
    [System.Int32]
    ${ScheduleDayOfWeek},

    [Parameter()]
    [NmePowershell.PSArgumentCompleterAttribute("First", "Second", "Third", "Fourth", "Last")]
    [NmePowershell.Category('Body')]
    [System.String]
    ${ScheduleDayOfWeekNumber},

    [Parameter()]
    [NmePowershell.Category('Body')]
    [System.String]
    ${ScheduleDescription},

    [Parameter()]
    [NmePowershell.Category('Body')]
    [System.String]
    ${ScheduleName},

    [Parameter()]
    [NmePowershell.Category('Body')]
    [System.Int32]
    ${ScheduleOffsetInDays}
)

begin {
    try {
        $outBuffer = $null
        if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) {
            $PSBoundParameters['OutBuffer'] = 1
        }
        $parameterSet = $PSCmdlet.ParameterSetName
        
        $testPlayback = $false
        $PSBoundParameters['HttpPipelinePrepend'] | Foreach-Object { if ($_) { $testPlayback = $testPlayback -or ('NmePowershell.Runtime.PipelineMock' -eq $_.Target.GetType().FullName -and 'Playback' -eq $_.Target.Mode) } }

        $mapping = @{
            __AllParameterSets = 'NerdioManagerPowerShell.custom\New-NmeRunbookScriptedActionScheduleModel';
        }
        $cmdInfo = Get-Command -Name $mapping[$parameterSet]
        [NmePowershell.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet)
        [NmePowershell.Runtime.MessageAttributeHelper]::ProcessPreviewMessageAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet)
        $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet)
        if ($wrappedCmd -eq $null) {
            $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Function)
        }
        $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
    }
} 
}