Public/Graph/New-KriticalUtcmMgBetaIdentityB2XUserFlowUserAttributeAssignment.ps1
|
<# .SYNOPSIS Kritical.UTCM wrapper over Microsoft365DSC helper New-MgBetaIdentityB2XUserFlowUserAttributeAssignment (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: 19 #> function New-KriticalUtcmMgBetaIdentityB2XUserFlowUserAttributeAssignment { [CmdletBinding()] param( [String] $B2XIdentityUserFlowId, [Object] $InputObject, [Object] $BodyParameter, [String] $ResponseHeadersVariable, [Hashtable] $AdditionalProperties, [String] $DisplayName, [String] $Id, [SwitchParameter] $IsOptional, [SwitchParameter] $RequiresVerification, [Object] $UserAttribute, [Object] $UserAttributeValues, [String] $UserInputType, [SwitchParameter] $Break, [IDictionary] $Headers, [Object[]] $HttpPipelineAppend, [Object[]] $HttpPipelinePrepend, [Uri] $Proxy, [PSCredential] $ProxyCredential, [SwitchParameter] $ProxyUseDefaultCredentials ) if (-not (Get-Command -Name 'New-MgBetaIdentityB2XUserFlowUserAttributeAssignment' -ErrorAction SilentlyContinue)) { throw '[KriticalUtcm] New-MgBetaIdentityB2XUserFlowUserAttributeAssignment not available — Install-Module Microsoft365DSC -Scope CurrentUser then re-run' } try { & 'New-MgBetaIdentityB2XUserFlowUserAttributeAssignment' @PSBoundParameters } catch { Write-Error ('[KriticalUtcm/New-KriticalUtcmMgBetaIdentityB2XUserFlowUserAttributeAssignment] ' + 'New-MgBetaIdentityB2XUserFlowUserAttributeAssignment' + ' failed: ' + $_.Exception.Message) throw } } |