exported/New-CertificationSigningInfoObject.ps1
function New-CertificationSigningInfoObject { [CmdletBinding()] param( [Parameter(ParameterSetName='default', HelpMessage='The Town or City where customer''s business is located.')] [string] ${City}, [Parameter(ParameterSetName='default', HelpMessage='Common name of the organization or host server')] [string] ${CommonName}, [Parameter(ParameterSetName='default', HelpMessage='Common name is by default <node_uuid>.nutanix.com, but if a customerwants something instead of nutanix.com they can specify it here.')] [string] ${CommonNameSuffix}, [Parameter(ParameterSetName='default', HelpMessage='Two-letter ISO code for Country where customer''s organization islocated.')] [string] ${CountryCode}, [Parameter(ParameterSetName='default', HelpMessage='Email address of the certificate administrator.')] [string] ${EmailAddress}, [Parameter(ParameterSetName='default', HelpMessage='Name of the customer business.')] [string] ${Organization}, [Parameter(ParameterSetName='default', HelpMessage='The Province, Region, County or State where customer business isis located.')] [string] ${State}) begin { try { $outBuffer = $null if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { $PSBoundParameters['OutBuffer'] = 1 } $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand('Nutanix.private\New-CertificationSigningInfoObject', [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-CertificationSigningInfoObject .ForwardHelpCategory Cmdlet #> } |