custom/autogen-model-cmdlets/New-NmeAzureFilesBasicAutoscaleConfigUpdateModel.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 AzureFilesBasicAutoscaleConfigUpdate. .Description Create an in-memory object for AzureFilesBasicAutoscaleConfigUpdate. .Outputs NmePowershell.Models.AzureFilesBasicAutoscaleConfigUpdate #> function New-NmeAzureFilesBasicAutoscaleConfigUpdateModel { [NmePowershell.ModelCmdletAttribute()] [OutputType('NmePowershell.Models.AzureFilesBasicAutoscaleConfigUpdate')] [CmdletBinding(PositionalBinding=$false)] Param( [Parameter()] [int] $MaxQuotaBuffer, [Parameter()] [int] $MaxQuotaLimitGb, [Parameter()] [int] $MinQuotaBuffer ) process { $Object = [NmePowershell.Models.AzureFilesBasicAutoscaleConfigUpdate]::New() if ($PSBoundParameters.ContainsKey('MaxQuotaBuffer')) { $Object.MaxQuotaBuffer = $MaxQuotaBuffer } if ($PSBoundParameters.ContainsKey('MaxQuotaLimitGb')) { $Object.MaxQuotaLimitGb = $MaxQuotaLimitGb } if ($PSBoundParameters.ContainsKey('MinQuotaBuffer')) { $Object.MinQuotaBuffer = $MinQuotaBuffer } return $Object } } |