DSCResources/cTeamsGuestMessagingConfiguration/cTeamsGuestMessagingConfiguration.schema.psm1
configuration cTeamsGuestMessagingConfiguration { param ( [Parameter()] [hashtable[]] $Items ) <# TeamsGuestMessagingConfiguration [String] #ResourceName { Identity = [string]{ Global } [AccessTokens = [string[]]] [AllowGiphy = [bool]] [AllowImmersiveReader = [bool]] [AllowMemes = [bool]] [AllowStickers = [bool]] [AllowUserChat = [bool]] [AllowUserDeleteChat = [bool]] [AllowUserDeleteMessage = [bool]] [AllowUserEditMessage = [bool]] [ApplicationId = [string]] [CertificateThumbprint = [string]] [Credential = [PSCredential]] [DependsOn = [string[]]] [GiphyRatingType = [string]{ Moderate | NoRestriction | Strict }] [ManagedIdentity = [bool]] [PsDscRunAsCredential = [PSCredential]] [TenantId = [string]] } #> Import-DscResource -ModuleName PSDesiredStateConfiguration Import-DscResource -ModuleName Microsoft365DSC $dscResourceName = 'TeamsGuestMessagingConfiguration' $param = $PSBoundParameters $param.Remove("InstanceName") $dscParameterKeys = 'Identity' -split ', ' foreach ($item in $Items) { $keyValues = foreach ($key in $dscParameterKeys) { $item.$key } $executionName = $keyValues -join '_' $executionName = $executionName -replace "[\s()\\:*-+/{}```"']", '_' (Get-DscSplattedResource -ResourceName $dscResourceName -ExecutionName $executionName -Properties $item -NoInvoke).Invoke($item) } } |