custom/autogen-model-cmdlets/New-NmeHostPoolTagsUpdateModel.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 HostPoolTagsUpdate. .Description Create an in-memory object for HostPoolTagsUpdate. .Outputs NmePowershell.Models.HostPoolTagsUpdate #> function New-NmeHostPoolTagsUpdateModel { [NmePowershell.ModelCmdletAttribute()] [OutputType('NmePowershell.Models.HostPoolTagsUpdate')] [CmdletBinding(PositionalBinding=$false)] Param( [Parameter(Mandatory, HelpMessage="Dictionary of <string>.")] [NmePowershell.Models.IHostPoolTagsUpdateTags] $Tags, [Parameter(Mandatory)] [bool] $UpdateObjects ) process { $Object = [NmePowershell.Models.HostPoolTagsUpdate]::New() if ($PSBoundParameters.ContainsKey('Tags')) { $Object.Tags = $Tags } if ($PSBoundParameters.ContainsKey('UpdateObjects')) { $Object.UpdateObjects = $UpdateObjects } return $Object } } |