Public/Graph/Update-KriticalUtcmMgBetaIdentityB2XUserFlowUserAttributeAssignment.ps1
|
<# .SYNOPSIS Kritical.UTCM wrapper over Microsoft365DSC helper Update-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: 20 #> function Update-KriticalUtcmMgBetaIdentityB2XUserFlowUserAttributeAssignment { [CmdletBinding()] param( [String] $B2XIdentityUserFlowId, [String] $IdentityUserFlowAttributeAssignmentId, [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 'Update-MgBetaIdentityB2XUserFlowUserAttributeAssignment' -ErrorAction SilentlyContinue)) { throw '[KriticalUtcm] Update-MgBetaIdentityB2XUserFlowUserAttributeAssignment not available — Install-Module Microsoft365DSC -Scope CurrentUser then re-run' } try { & 'Update-MgBetaIdentityB2XUserFlowUserAttributeAssignment' @PSBoundParameters } catch { Write-Error ('[KriticalUtcm/Update-KriticalUtcmMgBetaIdentityB2XUserFlowUserAttributeAssignment] ' + 'Update-MgBetaIdentityB2XUserFlowUserAttributeAssignment' + ' failed: ' + $_.Exception.Message) throw } } |