Two new cmdlets appeared in Skype for Business Online PowerShell module. They are related with upcoming integration with Azure Communication Services.
There's no existing documentation for these cmdlets so we only can guess, what it's supposed to be doing. My guess is that it's for controlling integration with Azure Communication Services, currently in preview.
Integration of Teams with ACS will allow us to join apps created with ACS to Teams meetings. You'll have options to join IM-only or with calling functionalities (voice and video). It might provide a way to integrate different communication platforms with Teams meetings.
PS> Get-CsTeamsAcsFederationConfiguration
Identity : Global
AllowedAcsResources : {}
BlockedAcsResources : {}
EnableAcsUsers : True
AllowAllAcsResources : True
Parameters available for Set-CsTeamsAcsFederationConfiguration
are as follows. The name is followed by accepted data type and my guess of its meaning:
Set-*Configuration
cmdletsTrue
, which means all the resources will be allowedUsage of PSListModifier
type means that to add/remove values from the list we'll have to use the following syntax:
# Add to the list of allowed resources
-AllowedAcsResources @{Add="ResourceA","ResourceB","ResourceC"}
# Remove from the list of allowed resources
-AllowedAcsResources @{Remove="ResourceD"}
# And so on
Other optional parameters: