exports/New-NmeAzureFilesAutoscaleConfigModel.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 AzureFilesAutoscaleConfig. .Description Create an in-memory object for AzureFilesAutoscaleConfig. #> function New-NmeAzureFilesAutoscaleConfigModel { [OutputType([NmePowershell.Models.AzureFilesAutoscaleConfig])] [CmdletBinding(PositionalBinding=$false)] param( [Parameter(Mandatory)] [NmePowershell.Category('Body')] [System.Int32] ${BasicMaxQuotaBuffer}, [Parameter(Mandatory)] [NmePowershell.Category('Body')] [System.Int32] ${BasicMaxQuotaLimitGb}, [Parameter(Mandatory)] [NmePowershell.Category('Body')] [System.Int32] ${BasicMinQuotaBuffer}, [Parameter(Mandatory)] [NmePowershell.Category('Body')] [System.Boolean] ${IsEnabled}, [Parameter(Mandatory)] [NmePowershell.Category('Body')] [System.Boolean] ${PreStageIsEnabled}, [Parameter(Mandatory)] [NmePowershell.Category('Body')] [System.Int32] ${ScalingScaleInBy}, [Parameter(Mandatory)] [NmePowershell.Category('Body')] [System.Int32] ${ScalingScaleInInterval}, [Parameter(Mandatory)] [NmePowershell.Category('Body')] [System.Int32] ${ScalingScaleInLowLatency}, [Parameter(Mandatory)] [NmePowershell.Category('Body')] [System.Int32] ${ScalingScaleOutBy}, [Parameter(Mandatory)] [NmePowershell.Category('Body')] [System.Int32] ${ScalingScaleOutHighLatency}, [Parameter(Mandatory)] [NmePowershell.Category('Body')] [System.Int32] ${ScalingScaleOutInterval}, [Parameter(Mandatory)] [NmePowershell.Category('Body')] [System.Int32] ${ScalingTransactionThreshold}, [Parameter(Mandatory)] [NmePowershell.PSArgumentCompleterAttribute("MaxSuccessServerLatency", "AvgSuccessServerLatency")] [NmePowershell.Category('Body')] [System.String] ${ScalingTrigger}, [Parameter(Mandatory)] [NmePowershell.PSArgumentCompleterAttribute("Percent", "SizeGb", "SizeTb")] [NmePowershell.Category('Body')] [System.String] ${Unit}, [Parameter()] [NmePowershell.Category('Body')] [System.Int32] ${PreStageQuotaBuffer}, [Parameter()] [NmePowershell.Category('Body')] [System.String] ${PreStageTimezoneId}, [Parameter()] [NmePowershell.PSArgumentCompleterAttribute("0", "1", "2", "3", "4", "5", "6")] [NmePowershell.Category('Body')] [System.Int32[]] ${PreStageWorkDays} ) 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-NmeAzureFilesAutoscaleConfigModel'; } $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 } } } |