exported/New-ExternalConfigurationsSpecObject.ps1

function New-ExternalConfigurationsSpecObject {
[CmdletBinding()]
param(
    [Parameter(ParameterSetName='default', HelpMessage='Citrix Connector details.')]
    [Nutanix.Powershell.Models.ICitrixConnectorConfigDetailsSpec]
    ${CitrixConnectorConfig})

begin
{
    try {
        $outBuffer = $null
        if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer))
        {
            $PSBoundParameters['OutBuffer'] = 1
        }

        $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand('Nutanix.private\New-ExternalConfigurationsSpecObject', [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-ExternalConfigurationsSpecObject
.ForwardHelpCategory Cmdlet

#>


}