4 TeamsPstnUsage
Nik Charlebois редактировал(а) эту страницу 2021-10-06 06:17:59 -04:00

# TeamsPstnUsage

Parameters

Parameter Attribute DataType Description Allowed Values
Usage Key String An online PSTN usage (such as Local or Long Distance) that can be used in conjunction with voice routes and voice routing policies.
Ensure Write String Present ensures the policyexists, absent ensures it is removed. Present, Absent
Credential Required PSCredential Credentials of the Teams Global Admin

TeamsPstnUsage

This resource configures a Teams PSTN Usage.

Examples

Example 1

This example adds a new Teams PSTN Usage.

Configuration Example
{
    param(
        [Parameter(Mandatory = $true)]
        [PSCredential]
        $credsGlobalAdmin
    )
    Import-DscResource -ModuleName Microsoft365DSC

    node localhost
    {
        TeamsPstnUsage PstnUsage
        {
            Usage              = 'Long Distance'
            Ensure             = 'Present'
            Credential         = $credsGlobalAdmin
        }
    }
}