Public/Graph/Set-KriticalUtcmMgBetaIdentityB2XUserFlowPostAttributeCollectionByRef.ps1
|
<# .SYNOPSIS Kritical.UTCM wrapper over Microsoft365DSC helper Set-MgBetaIdentityB2XUserFlowPostAttributeCollectionByRef (category: Graph, module: M365DSCGraphShim). .DESCRIPTION Thin delegating passthrough — logic stays in Microsoft365DSC upstream; Kritical.UTCM provides the friendly namespace + citation registration. Install-Module Microsoft365DSC -Scope CurrentUser BEFORE calling. .NOTES Category: Graph Module: M365DSCGraphShim Params: 15 #> function Set-KriticalUtcmMgBetaIdentityB2XUserFlowPostAttributeCollectionByRef { [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-MgBetaIdentityB2XUserFlowPostAttributeCollectionByRef' -ErrorAction SilentlyContinue)) { throw '[KriticalUtcm] Set-MgBetaIdentityB2XUserFlowPostAttributeCollectionByRef not available — Install-Module Microsoft365DSC -Scope CurrentUser then re-run' } try { & 'Set-MgBetaIdentityB2XUserFlowPostAttributeCollectionByRef' @PSBoundParameters } catch { Write-Error ('[KriticalUtcm/Set-KriticalUtcmMgBetaIdentityB2XUserFlowPostAttributeCollectionByRef] ' + 'Set-MgBetaIdentityB2XUserFlowPostAttributeCollectionByRef' + ' failed: ' + $_.Exception.Message) throw } } |