Public/Graph/Set-KritTcmMgBetaIdentityB2XUserFlowPostFederationSignupByRef.ps1
|
<# .SYNOPSIS Krit.TCM wrapper over Microsoft365DSC helper Set-MgBetaIdentityB2XUserFlowPostFederationSignupByRef (category: Graph, module: M365DSCGraphShim). .DESCRIPTION Auto-scaffolded wave .1514 by New-KritTcmFromM365DscHelpers.ps1. Thin delegating passthrough — logic stays in Microsoft365DSC upstream; Krit.TCM provides the friendly namespace + citation registration for HARD RULE 20 discipline. Install-Module Microsoft365DSC -Scope CurrentUser BEFORE calling. .NOTES Wave .1514. Underlying cmdlet: Set-MgBetaIdentityB2XUserFlowPostFederationSignupByRef Category: Graph Module: M365DSCGraphShim Params: 15 #> function Set-KritTcmMgBetaIdentityB2XUserFlowPostFederationSignupByRef { [CmdletBinding()] param( [String] $B2XIdentityUserFlowId, [Object] $InputObject, [Object] $BodyParameter, [String] $ResponseHeadersVariable, [String] $OdataId, [Hashtable] $AdditionalProperties, [String] $OdataType, [SwitchParameter] $Break, [IDictionary] $Headers, [Object[]] $HttpPipelineAppend, [Object[]] $HttpPipelinePrepend, [SwitchParameter] $PassThru, [Uri] $Proxy, [PSCredential] $ProxyCredential, [SwitchParameter] $ProxyUseDefaultCredentials ) if (-not (Get-Command -Name 'Set-MgBetaIdentityB2XUserFlowPostFederationSignupByRef' -ErrorAction SilentlyContinue)) { throw '[KritTcm] Set-MgBetaIdentityB2XUserFlowPostFederationSignupByRef not available — Install-Module Microsoft365DSC -Scope CurrentUser then re-run' } try { & 'Set-MgBetaIdentityB2XUserFlowPostFederationSignupByRef' @PSBoundParameters } catch { Write-Error ('[KritTcm/Set-KritTcmMgBetaIdentityB2XUserFlowPostFederationSignupByRef] ' + 'Set-MgBetaIdentityB2XUserFlowPostFederationSignupByRef' + ' failed: ' + $_.Exception.Message) throw } } |