exported/New-SubnetIntentInputObject.ps1
function New-SubnetIntentInputObject { [CmdletBinding()] param( [Parameter(ParameterSetName='default', HelpMessage='HELP MESSAGE MISSING')] [string] ${ApiVersion}, [Parameter(ParameterSetName='default', Mandatory=$true, HelpMessage='The subnet kind metadata')] [Nutanix.Powershell.Models.ISubnetMetadata] ${Metadata}, [Parameter(ParameterSetName='default', Mandatory=$true, HelpMessage='An intentful representation of a subnet spec')] [Nutanix.Powershell.Models.ISubnet] ${Spec}) begin { try { $outBuffer = $null if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { $PSBoundParameters['OutBuffer'] = 1 } $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand('Nutanix.private\New-SubnetIntentInputObject', [System.Management.Automation.CommandTypes]::Cmdlet) $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 } } <# .ForwardHelpTargetName Nutanix.private\New-SubnetIntentInputObject .ForwardHelpCategory Cmdlet #> } |