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