Public/generated/Get-KriticalUtcmTeamsDialInConferencingTenantSettings.ps1

# Kritical.PS.UTCM | Microsoft Graph UTCM REST API toolkit
# (c) 2026 Kritical Pty Ltd | https://kritical.net
# Kritical brand banner is rendered at module load via Write-KriticalUtcmBanner.

function Get-KriticalUtcmTeamsDialInConferencingTenantSettings {
<#
.SYNOPSIS
    Kritical.UTCM shim for M365DSC resource TeamsDialInConferencingTenantSettings.

.DESCRIPTION

    Search-replace safe: callers that today invoke
        Get-M365DSCTeamsDialInConferencingTenantSettings -Credential $cred -TenantId $tid
    can rename to
        Get-KriticalUtcmTeamsDialInConferencingTenantSettings -Credential $cred -TenantId $tid
    with ZERO other edits. Parameter shape matches the M365DSC .schema.mof
    exactly. By default -PreferM365DscBehavior is true.

    Actual Graph dispatch is delegated to Invoke-KriticalUtcmM365DscSchemaBridge.
    Bridge maps resource → Graph endpoint per per-resource wave; where mapping
    is not yet shipped, bridge returns an object with Verdict='UNMAPPED'.

.NOTES
    Workload: Teams
    Param count: 20
#>

[CmdletBinding()]
param(
        # Only accepted value is Yes.
[Parameter(Mandatory)] [ValidateSet('Yes')] [string]$IsSingleInstance,
        # Specifies the default value that gets assigned to the 'AllowPSTNOnlyMeetings' setting of users when they are enabled for dial-in conferencing, or when a user's dial-in conferencing provider is set to Microsoft. If set to $true, the 'AllowPSTNOnlyMeetings' setting of the user will also be set to true. If $false, the user setting will be false. The default value for AllowPSTNOnlyMeetingsByDefault is $false.
[bool]$AllowPSTNOnlyMeetingsByDefault,
        # Automatically Migrate User Meetings.
[bool]$AutomaticallyMigrateUserMeetings,
        # Automatically replace ACP Provider.
[bool]$AutomaticallyReplaceAcpProvider,
        # Specifies whether advisory emails will be sent to users when the events listed below occur. Setting the parameter to $true enables the emails to be sent, $false disables the emails. The default is $true.
[bool]$AutomaticallySendEmailsToUsers,
        # Enable Dial out join confirmation.
[bool]$EnableDialOutJoinConfirmation,
        # Specifies if, by default, announcements are made as users enter and exit a conference call. Set to $true to enable notifications, $false to disable notifications. The default is $true.
[bool]$EnableEntryExitNotifications,
        # Specifies whether the name of a user is recorded on entry to the conference. This recording is used during entry and exit notifications. Set to $true to enable name recording, set to $false to bypass name recording. The default is $true.
[bool]$EnableNameRecording,
        # Supported entry and exit announcement type.
[string]$EntryExitAnnouncementsType,
        # This parameter allows tenant administrators to configure masking of PSTN participant phone numbers in the roster view for Microsoft Teams meetings enabled for Audio Conferencing, scheduled within the organization. Possible values are MaskedForExternalUsers, MaskedForAllUsers or NoMasking
[ValidateSet('MaskedForExternalUsers','MaskedForAllUsers','NoMasking')] [string]$MaskPstnNumbersType,
        # Specifies whether service numbers assigned to the tenant should be migrated to the new forest of the tenant when the tenant is migrated cross region. If false, service numbers will be released back to stock once the migration completes. This settings does not apply to ported-in numbers that are always migrated.
[bool]$MigrateServiceNumbersOnCrossForestMove,
        # Specifies the number of digits in the automatically generated PINs. Organizers can enter their PIN to start a meeting they scheduled if they join via phone and are the first person to join. The minimum value is 4, the maximum is 12, and the default is 5.
[int]$PinLength,
        # Specifies if Private Meetings are enabled for the users in this tenant.
[bool]$UseUniqueConferenceIds,
        # Credentials of the Teams Global Admin.
[string]$Credential,
        # Id of the Azure Active Directory application to authenticate with.
[string]$ApplicationId,
        # Name of the Azure Active Directory tenant used for authentication. Format contoso.onmicrosoft.com
[string]$TenantId,
        # Thumbprint of the Azure Active Directory application's authentication certificate to use for authentication.
[string]$CertificateThumbprint,
        # Username can be made up to anything but password will be used for CertificatePassword
[string]$CertificatePassword,
        # Path to certificate used in service principal usually a PFX file.
[string]$CertificatePath,
        # Managed ID being used for authentication.
[bool]$ManagedIdentity
)
    Invoke-KriticalUtcmM365DscSchemaBridge -ResourceName 'TeamsDialInConferencingTenantSettings' -Workload 'Teams' -Verb 'Get' -CallerParams $PSBoundParameters
}