Public/Graph/Invoke-KritTcmGraphShimWriteResource.ps1

<#
.SYNOPSIS
    Krit.TCM wrapper over Microsoft365DSC helper Invoke-M365DSCGraphShimWriteResource
    (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: Invoke-M365DSCGraphShimWriteResource
    Category: Graph
    Module: M365DSCGraphShim
    Params: 4
#>

function Invoke-KritTcmGraphShimWriteResource {
    [CmdletBinding()]
    param(
        [Parameter(Mandatory)] [IDictionary] $BoundParameters,
        [Parameter(Mandatory)] [String] $Uri,
        [Parameter(Mandatory)] [String] $Method,
        [String[]] $ExtraExcludeParams
    )

    if (-not (Get-Command -Name 'Invoke-M365DSCGraphShimWriteResource' -ErrorAction SilentlyContinue)) {
        throw '[KritTcm] Invoke-M365DSCGraphShimWriteResource not available — Install-Module Microsoft365DSC -Scope CurrentUser then re-run'
    }
    try {
        & 'Invoke-M365DSCGraphShimWriteResource' @PSBoundParameters
    } catch {
        Write-Error ('[KritTcm/Invoke-KritTcmGraphShimWriteResource] ' + 'Invoke-M365DSCGraphShimWriteResource' + ' failed: ' + $_.Exception.Message)
        throw
    }
}